Merge pull request #600 from dacampsss/patch-1

improved pt_br + a bit more i18n
This commit is contained in:
Drew Weymouth
2025-04-11 08:20:57 -07:00
committed by GitHub
3 changed files with 20 additions and 5 deletions
+5
View File
@@ -38,6 +38,7 @@
"Autoselect device": "Autoselect device",
"Back": "Back",
"Bit rate": "Bit rate",
"Bold font": "Bold font",
"BPM": "BPM",
"Broadcast": "Broadcast",
"Cancel": "Cancel",
@@ -105,6 +106,7 @@
"Is favorite": "Is favorite",
"Is not favorite": "Is not favorite",
"Language": "Language",
"Larger": "Larger",
"Last played": "Last played",
"Live": "Live",
"Locally": "Locally",
@@ -123,6 +125,8 @@
"Name (A-Z)": "Name (A-Z)",
"Next": "Next",
"Nickname": "Nickname",
"Normal": "Normal",
"Normal font": "Normal font",
"Now Playing": "Now Playing",
"No new version found": "No new version found",
"No radio stations available": "No radio stations available",
@@ -197,6 +201,7 @@
"Skip duplicate tracks": "Skip duplicate tracks",
"Skip SSL certificate verification": "Skip SSL certificate verification",
"Skip this version": "Skip this version",
"Smaller": "Smaller",
"Sort": "Sort",
"Soundtrack": "Soundtrack",
"Spoken Word": "Spoken Word",
+12 -2
View File
@@ -33,10 +33,12 @@
"Audio Drama": "Áudio Drama",
"Audiobook": "Audiolivro",
"Authentication failed": "A autenticação falhou",
"Automatically check for updates": "Procurar atualizações automaticamente",
"Auto": "Auto",
"Autoselect device": "Selecionar dispositivo automaticamente",
"Back": "Voltar",
"Bit rate": "Taxa de bits",
"Bold font": "Fonte em negrito",
"BPM": "BPM",
"Broadcast": "Transmissão",
"Cancel": "Cancelar",
@@ -61,6 +63,7 @@
"Demo": "Demo",
"_Description": "Descrição",
"Disable server transcoding": "Desabilitar transcodificação no servidor",
"Disable automatic DPI adjustment": "Desabilitar ajuste automático de DPI",
"Disc number": "Número do disco",
"Discography": "Discografia",
"discs": "discos",
@@ -77,7 +80,8 @@
"Enter": "Enter",
"EP": "EP",
"Equalizer": "Equalizador",
"Exclusive mode": "Modo exclusive",
"Error": "Erro",
"Exclusive mode": "Modo exclusivo",
"Favorites": "Favoritos",
"Field Recording": "Gravação de campo",
"File path": "Caminho para o arquivo",
@@ -101,6 +105,7 @@
"Is favorite": "É favorito",
"Is not favorite": "Não é favorito",
"Language": "Linguagem",
"Larger": "Grande",
"Last played": "Tocados recentemente",
"Live": "Ao Vivo",
"Locally": "Localmente",
@@ -108,16 +113,20 @@
"Login to Server": "Iniciar sessão no servidor",
"Lyrics": "Letras",
"Lyrics not available": "Letras indisponíveis",
"Maximum image cache size": "Tamanho máximo do cachê de imagens",
"Menu": "Menu",
"min": "min",
"minutes of track have been played": "minutos da faixa foram tocados",
"Mixtape": "Mixtape",
"Mode": "Modo",
"Mute": "Mudo",
"My Server": "Meu Servidor",
"Name": "Nome",
"Name (A-Z)": "Nome (A-Z)",
"Next": "Próximo",
"Nickname": "Apelido",
"Normal": "Regular",
"Normal font": "Fonte regular",
"Now Playing": "Tocando agora",
"No new version found": "Nenhuma versão nova encontrada",
"No radio stations available": "Nenhuma estação de rádio disponível",
@@ -139,7 +148,7 @@
"Play next": "Reproduzir próximo",
"Play Queue": "Reproduzir fila",
"Play random": "Reproduzir aleatoriamente",
"Playback": "Playback",
"Playback": "Reprodução",
"Playing": "Tocando",
"Playlist": "Lista de reprodução",
"Playlists": "Listas de reprodução",
@@ -191,6 +200,7 @@
"Skip duplicate tracks": "Pular faixas duplicadas",
"Skip SSL certificate verification": "Pular verificação do certificado SSL",
"Skip this version": "Pular esta versão",
"Smaller": "Pequena",
"Soundtrack": "Trilha Sonora",
"Spoken Word": "Palavra Falada",
"Startup page": "Página ao iniciar",
+3 -3
View File
@@ -501,7 +501,7 @@ func (s *SettingsDialog) createAppearanceTab(window fyne.Window) *container.TabI
s.doChooseTTFFile(window, boldFontEntry)
})
uiScaleRadio := widget.NewRadioGroup([]string{"Smaller", "Normal", "Larger"}, func(choice string) {
uiScaleRadio := widget.NewRadioGroup([]string{lang.L("Smaller"), lang.L("Normal"), lang.L("Larger")}, func(choice string) {
s.config.Application.UIScaleSize = choice
s.setRestartRequired()
})
@@ -531,8 +531,8 @@ func (s *SettingsDialog) createAppearanceTab(window fyne.Window) *container.TabI
s.newSectionSeparator(),
widget.NewRichText(&widget.TextSegment{Text: lang.L("Application font"), Style: util.BoldRichTextStyle}),
container.New(layout.NewFormLayout(),
widget.NewLabel("Normal font"), container.NewBorder(nil, nil, nil, normalFontBrowse, normalFontEntry),
widget.NewLabel("Bold font"), container.NewBorder(nil, nil, nil, boldFontBrowse, boldFontEntry),
widget.NewLabel(lang.L("Normal font")), container.NewBorder(nil, nil, nil, normalFontBrowse, normalFontEntry),
widget.NewLabel(lang.L("Bold font")), container.NewBorder(nil, nil, nil, boldFontBrowse, boldFontEntry),
),
))
}