Merge branch 'main' into feature/new-playlist-btn

This commit is contained in:
Drew Weymouth
2025-09-27 07:50:02 -07:00
committed by GitHub
60 changed files with 324 additions and 196 deletions
+25
View File
@@ -132,6 +132,7 @@
"My Server": "My Server",
"Name": "Name",
"Name (A-Z)": "Name (A-Z)",
"never": "never",
"New Playlist": "New Playlist",
"Next": "Next",
"Nickname": "Nickname",
@@ -213,8 +214,10 @@
"Singles": "Singles",
"Size": "Size",
"Skip duplicate tracks": "Skip duplicate tracks",
"Skip one-star tracks": "Skip one-star tracks",
"Skip SSL certificate verification": "Skip SSL certificate verification",
"Skip this version": "Skip this version",
"Skip tracks with keyword": "Skip tracks with keyword",
"Smaller": "Smaller",
"Sort": "Sort",
"Soundtrack": "Soundtrack",
@@ -254,6 +257,7 @@
"version": "version",
"Visualizations": "Visualizations",
"Volume": "Volume",
"When enqueuing random": "When enqueuing random",
"wrong URL": "wrong URL",
"wrong username/password": "wrong username/password",
"Year": "Year",
@@ -289,5 +293,26 @@
"playlist.addedtracks": {
"one": "Added one track to playlist",
"other": "Added {{.trackCount}} tracks to playlist"
},
"x_minutes_ago": {
"one": "a minute ago",
"other": "{{.minutes}} minutes ago"
},
"x_hours_ago": {
"one": "an hour ago",
"other": "{{.hours}} hours ago"
},
"x_days_ago": {
"one": "a day ago",
"other": "{{.days}} days ago"
},
"x_months_ago": {
"one": "a month ago",
"other": "{{.months}} months ago"
},
"x_years_ago": {
"one": "a year ago",
"other": "{{.years}} years ago"
}
}
+22
View File
@@ -114,6 +114,7 @@
"My Server": "Mi servidor",
"Name": "Nombre",
"Name (A-Z)": "Nombre (A-Z)",
"never": "nunca",
"New Playlist": "Crear Nueva",
"Next": "Siguiente",
"Nickname": "Apodo",
@@ -255,5 +256,26 @@
"playlist.addedtracks": {
"one": "Se ha añadido una pista a la lista de reproducción",
"other": "Se han añadido {{.trackCount}} pistas a la lista de reproducción"
},
"x_minutes_ago": {
"one": "hace un minuto",
"other": "hace {{.minutes}} minutos"
},
"x_hours_ago": {
"one": "hace una hora",
"other": "hace {{.hours}} horas"
},
"x_days_ago": {
"one": "hace un día",
"other": "hace {{.days}} días"
},
"x_months_ago": {
"one": "hace un mes",
"other": "hace {{.months}} meses"
},
"x_years_ago": {
"one": "hace un año",
"other": "hace {{.years}} años"
}
}
+15 -15
View File
@@ -1,15 +1,15 @@
package wintaskbarthumbs
import _ "embed"
//go:embed media_pause.png
var MediaPausePNG []byte
//go:embed media_play.png
var MediaPlayPNG []byte
//go:embed media_seek_next.png
var MediaSeekNextPNG []byte
//go:embed media_seek_previous.png
var MediaSeekPreviousPNG []byte
package wintaskbarthumbs
import _ "embed"
//go:embed media_pause.png
var MediaPausePNG []byte
//go:embed media_play.png
var MediaPlayPNG []byte
//go:embed media_seek_next.png
var MediaSeekNextPNG []byte
//go:embed media_seek_previous.png
var MediaSeekPreviousPNG []byte