-
-
Notifications
You must be signed in to change notification settings - Fork 633
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating pt-BR translation (merged #158)
- Loading branch information
1 parent
fc26664
commit f0d05dd
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"command.activateIcons": "Material Icons: Ativar tema de ícones", | ||
"command.toggleIconPacks": "Material Icons: Configurar pacote de ícones", | ||
"command.changeFolderTheme": "Material Icons: Alterar tema das pastas", | ||
"command.changeFolderColor": "Material Icons: Alterar cor das pastas", | ||
"command.restoreDefaultConfig": "Material Icons: Restaurar configuração padrão", | ||
"command.hidesExplorerArrows": "Material Icons: Ocultar as setas ao lado das pastas", | ||
"configuration.files.associations": "Definir ícones para associações de arquivos customizadas.", | ||
"configuration.folders.associations": "Definir ícones para associações de pastas customizadas.", | ||
"configuration.showWelcomeMessage": "Mostrar mensagem de bem-vindo após a primeira instalação.", | ||
"configuration.showUpdateMessage": "Mostrar mensagem de atualização após cada atualização.", | ||
"configuration.activeIconPack": "Selecione um pacote de ícones que habilitam ícones específicos.", | ||
"configuration.folders.icons": "Definir o tipo de ícones de pasta.", | ||
"configuration.folders.theme": "Definir o tipo dos ícones das pastas.", | ||
"configuration.folders.color": "Alterar a cor dos ícones das pastas.", | ||
"configuration.hidesExplorerArrows": "Ocultar as setas ao lado das pastas no explorador de arquivos." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { Translation } from '../models'; | ||
|
||
export const translation: Translation = { | ||
'themeInstalled': 'O Material Icon Theme foi instalado.', | ||
'howToActivate': 'Como ativar os ícones', | ||
'activate': 'Ativar', | ||
'activated': 'O Material Icon Theme está ativo.', | ||
'neverShowAgain': 'Não mostrar novamente', | ||
'themeUpdated': 'O Material Icon Theme foi atualizado.', | ||
'readChangelog': 'Ler changelog', | ||
'iconPacks': { | ||
'selectPack': 'Selecione um pacote de ícones', | ||
'description': 'Selecionar o pacote de ícones \'%0\'', | ||
'disabled': 'Desabilitar pacotes de ícones', | ||
}, | ||
'folders': { | ||
'toggleIcons': 'Escolha um tema para as pastas', | ||
'color': 'Escolha uma cor para as pastas', | ||
'hexCode': 'Insira um código de cor hexadecimal', | ||
'wrongHexCode': 'Código de cor hexadecimal inválido!', | ||
'disabled': 'Nenhum ícone de pasta', | ||
'theme': { | ||
'description': 'Selecionar o tema para pastas \'%0\'' | ||
} | ||
}, | ||
'toggleSwitch': { | ||
'on': 'ON', | ||
'off': 'OFF' | ||
}, | ||
'hidesExplorerArrows': { | ||
'toggleArrows': 'Alternar setas do explorador de arquivos', | ||
'enableArrows': 'Exibir setas do explorador de arquivos', | ||
'disableArrows': 'Ocultar setas do explorador de arquivos' | ||
}, | ||
'confirmReload': 'Você precisa reiniciar o VS Code para ativar a mudança de ícones.', | ||
'reload': 'Reiniciar', | ||
'outdatedVersion': 'Você precisa atualizar o VS Code para usar esse comando.', | ||
'updateVSCode': 'Atualizar VS Code' | ||
}; |