This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from HDInnovations/feature-lang-pt-BR
[FEATURE] pt-BR Multilingual Support
- Loading branch information
Showing
1 changed file
with
152 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,152 @@ | ||
<?php | ||
|
||
|
||
return [ | ||
|
||
/** | ||
* General | ||
*/ | ||
'general' => [ | ||
'home' => 'Início', | ||
'good' => 'bom', | ||
'neutral' => 'neutro', | ||
'critical' => 'crítico', | ||
'warning' => 'aviso', | ||
'migrations' => 'migrações', | ||
'length' => 'comprimento', | ||
'tables' => 'tabelas', | ||
], | ||
|
||
/** | ||
* Elements/PrequelError.vue | ||
*/ | ||
'error_page' => [ | ||
'oops' => 'Oops...', | ||
'tried_connecting' => 'tentou conectar através de', | ||
'example_connection' => 'conexao://usuario@servidor:porta/bancodedados', | ||
'no_suggestions' => 'Prequel não pode sugerir nenhuma correção.', | ||
'disabled' => 'Prequel foi desabilitado.', | ||
], | ||
|
||
/** | ||
* Elements/SwitchMode.vue | ||
*/ | ||
'switch_mode' => [ | ||
'browse' => [ | ||
'title' => 'Modo de navegação', | ||
'text' => 'Navegar', | ||
], | ||
'manage' => [ | ||
'title' => 'Modo administrativo', | ||
'text' => 'Administrar', | ||
], | ||
], | ||
|
||
/** | ||
* Header/Header.vue | ||
*/ | ||
'header' => [ | ||
'column' => 'Coluna...', | ||
'value' => 'Valor...', | ||
'records' => 'registros', | ||
'buttons' => [ | ||
'dark_mode' => 'Modo escuro', | ||
'readability' => 'Legibilidade', | ||
'side_bar' => 'Barra Lateral', | ||
'get' => [ | ||
'title' => 'Executar Consulta (ENTER)', | ||
'text' => 'Pegar', | ||
], | ||
'reset' => [ | ||
'title' => 'Resetar consulta (ESC)', | ||
'text' => 'Resetar', | ||
], | ||
], | ||
], | ||
|
||
/** | ||
* MainContent/Table/Table.vue | ||
*/ | ||
'table' => [ | ||
'quick_actions' => 'Ações rápidas', | ||
'inspect_row' => 'Inspecionar linha', | ||
'item_empty' => 'Este item está vazio', | ||
'nothing' => 'Nada aqui', | ||
], | ||
|
||
/** | ||
* MainContent/Table/TableEmpty.vue | ||
*/ | ||
'table_empty' => [ | ||
'no_results' => 'Esta consulta não retornou nenhum resultado', | ||
'col_key' => 'Coluna chave', | ||
'col_field' => 'Campo da coluna', | ||
'col_def' => 'Coluna padrão', | ||
'col_type' => 'Tipo de coluna', | ||
'not_set' => 'Não definido', | ||
], | ||
|
||
/** | ||
* MainContent/Table/TableStatus.vue | ||
*/ | ||
'table_status' => [ | ||
'loading_data' => 'Carregando dados da tabela...', | ||
'error_occurred' => 'Houve um erro ao carregar esta tabela. Veja o seguinte:', | ||
'could_not_resolve' => 'Não foi possível resolver o erro', | ||
'prequel_suggestions' => 'Prequel sugere olhar os seguinte pontos', | ||
], | ||
|
||
/** | ||
* SideBar/SideBarWrapper.vue | ||
*/ | ||
'side_bar' => [ | ||
'look_for_table' => 'Procure a tabela...', | ||
], | ||
|
||
/** | ||
* SideBar/TableMenu.vue | ||
*/ | ||
'table_menu' => [ | ||
'empty_table' => 'Este banco de dados não contém nenhuma tabela', | ||
], | ||
|
||
/** | ||
* MainContent/ManageDatabase | ||
*/ | ||
'dashboard' => [ | ||
'overview' => 'Visão geral', | ||
'settings' => 'Ajustes', | ||
'could_not_retrieve' => 'Não foi possível recuperar isto...', | ||
'migrations' => [ | ||
'run_migrations' => 'Executar :número migração(ões)', | ||
'no_run_migrations' => 'Sem migrações pendentes', | ||
'reset_migrations' => 'Resetar :número migração(ões)', | ||
'no_reset_migrations' => 'Não existem migrações', | ||
], | ||
'avg_query_speed' => [ | ||
'header' => 'Média de consultas por segundo', | ||
'unit' => 'consultas por segundo', | ||
], | ||
'active_threads' => [ | ||
'header' => 'Threads ativos', | ||
'unit' => 'threads', | ||
], | ||
'open_tables' => [ | ||
'header' => 'Tabelas abertas', | ||
'unit' => 'tabelas', | ||
], | ||
'uptime_hours' => [ | ||
'header' => 'Tempo ativo em horas', | ||
'unit' => 'horas', | ||
], | ||
'uptime_minutes' => [ | ||
'header' => 'Tempo ativo em minutos', | ||
'unit' => 'minutos', | ||
], | ||
'uptime_seconds' => [ | ||
'header' => 'Tempo ativo em segundos', | ||
'unit' => 'segundos', | ||
], | ||
], | ||
|
||
]; |