🌐 feat(i18n): add translations for media controls

This commit is contained in:
retrozinndev
2025-10-01 22:26:37 -03:00
parent 3c919c9bc9
commit c4eb2a84ef
14 changed files with 128 additions and 122 deletions
+15 -1
View File
@@ -20,7 +20,21 @@ export default {
connect: "Connect",
disconnect: "Disconnect",
copy_to_clipboard: "Copy to clipboard",
media: {
play: "Play",
pause: "Pause",
next: "Next",
previous: "Previous",
loop: "Loop",
no_loop: "No loop",
song_loop: "Loop song",
shuffle_order: "Shuffle",
follow_order: "Follow order",
no_artist: "No artist",
no_title: "No title"
},
control_center: {
tiles: {
enabled: "Enabled",
@@ -88,4 +102,4 @@ export default {
ask_popup: {
title: "Question"
}
} as i18nStruct;
} satisfies i18nStruct;
+15 -1
View File
@@ -20,7 +20,21 @@ export default {
apps: "Aplicativos",
clear: "Limpar",
copy_to_clipboard: "Copiar para a Área de Transferência",
media: {
next: "Próxima faixa",
pause: "Pausar",
play: "Tocar",
previous: "Faixa anterior",
loop: "Repetir",
no_loop: "Não repetir",
song_loop: "Repetir faixa",
follow_order: "Seguir ordem",
shuffle_order: "Ordem aleatória",
no_title: "Sem título",
no_artist: "Sem artista"
},
control_center: {
tiles: {
enabled: "Ligado",
@@ -88,4 +102,4 @@ export default {
ask_popup: {
title: "Pergunta"
}
} as i18nStruct;
} satisfies i18nStruct;
+16 -2
View File
@@ -17,9 +17,23 @@ export type i18nStruct = {
disconnect: string,
connect: string,
apps: string;
clear: string;
apps: string,
clear: string,
copy_to_clipboard: string,
media: {
loop: string,
song_loop: string,
no_loop: string,
shuffle_order: string,
follow_order: string,
pause: string,
play: string,
next: string,
previous: string,
no_artist: string,
no_title: string
},
control_center: {
tiles: {
enabled: string,