Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #69 from HDInnovations/feature-lang-pt-BR
Browse files Browse the repository at this point in the history
[FEATURE] pt-BR Multilingual Support
  • Loading branch information
Quinten authored Aug 5, 2019
2 parents 07d29c0 + 3c40863 commit 4e53215
Showing 1 changed file with 152 additions and 0 deletions.
152 changes: 152 additions & 0 deletions resources/lang/pt-BR/lang.php
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',
],
],

];

0 comments on commit 4e53215

Please sign in to comment.