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 #138 from rivman/feature-lang-fr
Browse files Browse the repository at this point in the history
Feature lang fr
  • Loading branch information
Quinten authored Jul 5, 2021
2 parents b265ff1 + 0876d1f commit 0c2476a
Show file tree
Hide file tree
Showing 2 changed files with 178 additions and 2 deletions.
164 changes: 164 additions & 0 deletions resources/lang/fr/lang.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<?php

return [

/*
* General
*/
'general' => [
'home' => 'Accueil',
'good' => 'bon',
'neutral' => 'neutre',
'critical' => 'critique',
'warning' => 'avertissement',
'migrations' => 'MigrationAction',
'length' => 'Longueur',
'tables' => 'tables',
],

/**
* components/Pages/PrequelError.vue
*/
'error_page' => [
'oops' => 'Oups...',
'tried_connecting' => 'J\'ai essayé de me connecter',
'example_connection' => 'driver://utilisateur@host:port/database',
'no_suggestions' => 'Prequel n\'a pas pu suggérer de correctifs.',
'disabled' => 'Prequel a été désactivé.',
],

/**
* components/Elements/SwitchMode.vue
*/
'switch_mode' => [
'browse' => [
'title' => 'Mode navigation',
'text' => 'Parcourir',
],
'manage' => [
'title' => 'Mode gestion',
'text' => 'Gestion',
],
],

/**
* components/Header/Header.vue
*/
'header' => [
'column' => 'Colonne...',
'value' => 'Valeur...',
'records' => 'enregistrements',
'buttons' => [
'dark_mode' => 'Sombre',
'readability' => 'Lisibilité',
'side_bar' => 'Barre latérale',
'refresh' => 'Rafraîchir',
'get' => [
'title' => 'Exécuter requête (ENTRER)',
'text' => 'Récupérer',
],
'reset' => [
'title' => 'Réinitialiser requête (ESC)',
'text' => 'Réinitialiser',
],
],
],

/**
* components/MainContent/BrowseMode/Table/Table.vue
*/
'table' => [
'quick_actions' => 'Actions rapides',
'inspect_row' => 'Inspecter la ligne',
'item_empty' => 'Rien ici',
'nothing' => 'Rien',
],

/**
* components/MainContent/BrowseMode/Table/TableEmpty.vue
*/
'table_empty' => [
'no_results' => 'Cette requête n\'a donné aucun résultat',
'col_key' => 'Clé Colonne',
'col_field' => 'Champ Colonne',
'col_def' => 'Défaut pour Colonne',
'col_type' => 'Type Colonne',
'not_set' => 'Pas défini',
],

/**
* components/MainContent/BrowseMode/Table/TableStatus.vue
*/
'table_status' => [
'loading_data' => 'Chargement données ... ',
'error_occurred' => 'Une erreur s\'est produite lors du chargement de cette table. Détails : ',
'could_not_resolve' => 'Impossible de résoudre l\'erreur',
'prequel_suggestions' => 'Prequel suggère d\'examiner les points suivants',
],

/**
* components/SideBar/SideBarWrapper.vue
*/
'side_bar' => [
'look_for_table' => 'Recherche tableau...',
],

/**
* components/SideBar/Menu/TableMenu.vue
*/
'table_menu' => [
'empty_table' => 'Cette base de données ne contient aucune table',
],

/**
* components/Dashboard/Dashboard.vue
*/
'dashboard' => [
'overview' => 'Aperçu',
'settings' => 'Réglages',
'could_not_retrieve' => 'Récupération impossible',
'migrations' => [
'run_migrations' => 'Exécuter :number migration(s)',
'no_run_migrations' => 'Aucune migration en attente ',
'reset_migrations' => 'Réinitialiser :number migration(s)',
'no_reset_migrations' => 'Aucune migration existante',
],
'avg_query_speed' => [
'header' => 'Moyenne Requêtes/sec.',
'unit' => 'requêtes par seconde',
],
'active_threads' => [
'header' => 'Processus actifs',
'unit' => 'processus',
],
'open_tables' => [
'header' => 'Tableaux ouverts ',
'unit' => 'tableaux',
],
'uptime_hours' => [
'header' => 'Disponibilité en heures ',
'unit' => 'heures',
],
'uptime_minutes' => [
'header' => 'Disponibilité en minutes',
'unit' => 'minutes',
],
'uptime_seconds' => [
'header' => 'Disponibilité en secondes',
'unit' => 'secondes',
],
],

/**
* components/MainContent/ManageMode/ManageTable.vue
*/
'table_management' => [
'insert_new_row' => 'Insérer nouvelle ligne',
'view_structure' => 'Afficher la structure',
'run_sql' => 'Exécuter SQL',
'import' => 'Importer',
'export' => 'Exportation',
'log' => 'Historique',
'settings' => 'Réglages',
],
];
16 changes: 14 additions & 2 deletions resources/lang/pt-BR/lang.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


return [

/**
Expand Down Expand Up @@ -53,6 +52,7 @@
'dark_mode' => 'Modo escuro',
'readability' => 'Legibilidade',
'side_bar' => 'Barra Lateral',
'refresh' => 'Recarregar',
'get' => [
'title' => 'Executar Consulta (ENTER)',
'text' => 'Pegar',
Expand Down Expand Up @@ -149,4 +149,16 @@
],
],

];
/**
* components/MainContent/ManageMode/ManageTable.vue
*/
'table_management' => [
'insert_new_row' => 'Inserir Nova Linha',
'view_structure' => 'Ver Estrutura',
'run_sql' => 'Executar SQL',
'import' => 'Importar',
'export' => 'Exportar',
'log' => 'Log',
'settings' => 'Configurações',
],
];

0 comments on commit 0c2476a

Please sign in to comment.