Update translations

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@641 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2009-06-01 21:29:18 +00:00
parent 6bb1401d2a
commit eebf5dced2
11 changed files with 230 additions and 253 deletions

View file

@ -2,7 +2,7 @@
error_reporting(E_ALL & ~E_NOTICE); error_reporting(E_ALL & ~E_NOTICE);
if ($_SERVER["argc"] > 1) { if ($_SERVER["argc"] > 1) {
$_COOKIE["lang"] = $_SERVER["argv"][1]; $_COOKIE["lang"] = $_SERVER["argv"][1];
include dirname(__FILE__) . "/lang.inc.php"; include dirname(__FILE__) . "/include/lang.inc.php";
if ($_SERVER["argc"] != 2 || !isset($langs[$_COOKIE["lang"]])) { if ($_SERVER["argc"] != 2 || !isset($langs[$_COOKIE["lang"]])) {
echo "Usage: php _lang.php [lang]\nPurpose: Update lang/*.inc.php from source code messages.\n"; echo "Usage: php _lang.php [lang]\nPurpose: Update lang/*.inc.php from source code messages.\n";
exit(1); exit(1);
@ -10,14 +10,14 @@ if ($_SERVER["argc"] > 1) {
} }
$messages_all = array(); $messages_all = array();
foreach (glob(dirname(__FILE__) . "/*.php") as $filename) { foreach (array_merge(glob(dirname(__FILE__) . "/*.php"), glob(dirname(__FILE__) . "/include/*.php")) as $filename) {
$file = file_get_contents($filename); $file = file_get_contents($filename);
if (preg_match_all("~lang\\(('(?:[^\\\\']+|\\\\.)*')([),])~", $file, $matches)) { if (preg_match_all("~lang\\(('(?:[^\\\\']+|\\\\.)*')([),])~", $file, $matches)) {
$messages_all += array_combine($matches[1], $matches[2]); $messages_all += array_combine($matches[1], $matches[2]);
} }
} }
foreach (($_COOKIE["lang"] ? array(dirname(__FILE__) . "/lang/$_COOKIE[lang].inc.php") : glob(dirname(__FILE__) . "/lang/*.inc.php")) as $filename) { foreach (glob(dirname(__FILE__) . "/lang/" . ($_COOKIE["lang"] ? $_COOKIE["lang"] : "*") . ".inc.php") as $filename) {
$messages = $messages_all; $messages = $messages_all;
preg_match_all("~^(\\s*)(?:// )?(('(?:[^\\\\']+|\\\\.)*') => .*[^,\n]),?~m", file_get_contents($filename), $matches, PREG_SET_ORDER); preg_match_all("~^(\\s*)(?:// )?(('(?:[^\\\\']+|\\\\.)*') => .*[^,\n]),?~m", file_get_contents($filename), $matches, PREG_SET_ORDER);
$s = ""; $s = "";
@ -32,7 +32,7 @@ foreach (($_COOKIE["lang"] ? array(dirname(__FILE__) . "/lang/$_COOKIE[lang].inc
foreach($messages as $idf => $val) { foreach($messages as $idf => $val) {
if ($val == "," && strpos($idf, "%d")) { if ($val == "," && strpos($idf, "%d")) {
$s .= "\t$idf => array(),\n"; $s .= "\t$idf => array(),\n";
} elseif ($filename != "lang/en.inc.php") { } elseif (basename($filename) != "en.inc.php") {
$s .= "\t$idf => null,\n"; $s .= "\t$idf => null,\n";
} }
} }

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Session proměnné musí být povolené.', 'Sessions must be enabled.' => 'Session proměnné musí být povolené.',
'Session expired, please login again.' => 'Session vypršela, přihlašte se prosím znovu.', 'Session expired, please login again.' => 'Session vypršela, přihlašte se prosím znovu.',
'Text length' => 'Délka textů', 'Text length' => 'Délka textů',
'Syntax highlighting' => 'Zvýrazňování syntaxe',
'Foreign key has been dropped.' => 'Cizí klíč byl odstraněn.', 'Foreign key has been dropped.' => 'Cizí klíč byl odstraněn.',
'Foreign key has been altered.' => 'Cizí klíč byl změněn.', 'Foreign key has been altered.' => 'Cizí klíč byl změněn.',
'Foreign key has been created.' => 'Cizí klíč byl vytvořen.', 'Foreign key has been created.' => 'Cizí klíč byl vytvořen.',
@ -163,9 +162,7 @@ $translations = array(
'Format' => 'Formát', 'Format' => 'Formát',
'SQL' => 'SQL', 'SQL' => 'SQL',
'CSV' => 'CSV', 'CSV' => 'CSV',
'skip' => 'přeskočit',
'Tables' => 'Tabulky', 'Tables' => 'Tabulky',
'Structure' => 'Struktura',
'Data' => 'Data', 'Data' => 'Data',
'Event has been dropped.' => 'Událost byla odstraněna.', 'Event has been dropped.' => 'Událost byla odstraněna.',
'Event has been altered.' => 'Událost byla změněna.', 'Event has been altered.' => 'Událost byla změněna.',
@ -217,6 +214,4 @@ $translations = array(
'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Byl překročen maximální povolený počet polí. Zvyšte prosím %s a %s.', 'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Byl překročen maximální povolený počet polí. Zvyšte prosím %s a %s.',
'(anywhere)' => '(kdekoliv)', '(anywhere)' => '(kdekoliv)',
'%.3f s' => '%.3f s', '%.3f s' => '%.3f s',
'phpMinAdmin version: %s' => 'Verze phpMinAdmin: %s',
'current version' => 'aktuální verze',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Sitzungen müssen aktiviert sein.', 'Sessions must be enabled.' => 'Sitzungen müssen aktiviert sein.',
'Session expired, please login again.' => 'Sitzungsdauer abgelaufen, bitte erneut anmelden.', 'Session expired, please login again.' => 'Sitzungsdauer abgelaufen, bitte erneut anmelden.',
'Text length' => 'Textlänge', 'Text length' => 'Textlänge',
'Syntax highlighting' => 'Syntax highlighting',
'Foreign key has been dropped.' => 'Fremdschlüssel entfernt.', 'Foreign key has been dropped.' => 'Fremdschlüssel entfernt.',
'Foreign key has been altered.' => 'Fremdschlüssel geändert.', 'Foreign key has been altered.' => 'Fremdschlüssel geändert.',
'Foreign key has been created.' => 'Fremdschlüssel erstellt.', 'Foreign key has been created.' => 'Fremdschlüssel erstellt.',
@ -163,9 +162,7 @@ $translations = array(
'Format' => 'Format', 'Format' => 'Format',
'SQL' => 'SQL', 'SQL' => 'SQL',
'CSV' => 'CSV', 'CSV' => 'CSV',
'skip' => 'ignorieren',
'Tables' => 'Tabellen', 'Tables' => 'Tabellen',
'Structure' => 'Struktur',
'Data' => 'Daten', 'Data' => 'Daten',
'Event has been dropped.' => 'Ereignis entfernt.', 'Event has been dropped.' => 'Ereignis entfernt.',
'Event has been altered.' => 'Ereignis geändert.', 'Event has been altered.' => 'Ereignis geändert.',
@ -216,4 +213,5 @@ $translations = array(
'Import' => 'Importieren', 'Import' => 'Importieren',
'Stop on error' => 'Bei Fehler anhaltan', 'Stop on error' => 'Bei Fehler anhaltan',
'Select table' => 'Tabelle auswählen', 'Select table' => 'Tabelle auswählen',
'%.3f s' => '%.3f s',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Deben estar habilitadas las sesiones.', 'Sessions must be enabled.' => 'Deben estar habilitadas las sesiones.',
'Session expired, please login again.' => 'Sesion expirada, favor loguéese de nuevo.', 'Session expired, please login again.' => 'Sesion expirada, favor loguéese de nuevo.',
'Text length' => 'Longitud de texto', 'Text length' => 'Longitud de texto',
'Syntax highlighting' => 'Destacar Sintaxis',
'Foreign key has been dropped.' => 'Clave foránea eliminada.', 'Foreign key has been dropped.' => 'Clave foránea eliminada.',
'Foreign key has been altered.' => 'Clave foránea modificada.', 'Foreign key has been altered.' => 'Clave foránea modificada.',
'Foreign key has been created.' => 'Clave foránea creada.', 'Foreign key has been created.' => 'Clave foránea creada.',
@ -163,9 +162,7 @@ $translations = array(
'Format' => 'Formato', 'Format' => 'Formato',
'SQL' => 'SQL', 'SQL' => 'SQL',
'CSV' => 'CSV', 'CSV' => 'CSV',
'skip' => 'ignorar',
'Tables' => 'Tablas', 'Tables' => 'Tablas',
'Structure' => 'Estructura',
'Data' => 'Datos', 'Data' => 'Datos',
'Event has been dropped.' => 'Evento eliminado.', 'Event has been dropped.' => 'Evento eliminado.',
'Event has been altered.' => 'Evento modificado.', 'Event has been altered.' => 'Evento modificado.',
@ -216,4 +213,5 @@ $translations = array(
'Import' => 'Importar', 'Import' => 'Importar',
'Stop on error' => 'Parar en caso de error', 'Stop on error' => 'Parar en caso de error',
'Select table' => 'Seleccionar tabla', 'Select table' => 'Seleccionar tabla',
'%.3f s' => '%.3f s',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Sessioonid peavad olema lubatud.', 'Sessions must be enabled.' => 'Sessioonid peavad olema lubatud.',
'Session expired, please login again.' => 'Sessioon on aegunud, palun logige uuesti sisse.', 'Session expired, please login again.' => 'Sessioon on aegunud, palun logige uuesti sisse.',
'Text length' => 'Teksti pikkus', 'Text length' => 'Teksti pikkus',
'Syntax highlighting' => 'Värvi süntaks',
'Foreign key has been dropped.' => 'Võõrvõti on edukalt kustutatud.', 'Foreign key has been dropped.' => 'Võõrvõti on edukalt kustutatud.',
'Foreign key has been altered.' => 'Võõrvõtme andmed on edukalt muudetud.', 'Foreign key has been altered.' => 'Võõrvõtme andmed on edukalt muudetud.',
'Foreign key has been created.' => 'Võõrvõri on edukalt loodud.', 'Foreign key has been created.' => 'Võõrvõri on edukalt loodud.',
@ -155,9 +154,7 @@ $translations = array(
'Move up' => 'Liiguta ülespoole', 'Move up' => 'Liiguta ülespoole',
'Move down' => 'Liiguta allapoole', 'Move down' => 'Liiguta allapoole',
'Export' => 'Ekspordi', 'Export' => 'Ekspordi',
'skip' => 'ignoreeri',
'Tables' => 'Tabelid', 'Tables' => 'Tabelid',
'Structure' => 'Struktuur',
'Data' => 'Andmed', 'Data' => 'Andmed',
'Output' => 'Väljund', 'Output' => 'Väljund',
'open' => 'näita brauseris', 'open' => 'näita brauseris',
@ -216,4 +213,5 @@ $translations = array(
'Import' => 'Impordi', 'Import' => 'Impordi',
'Stop on error' => 'Peatuda vea esinemisel', 'Stop on error' => 'Peatuda vea esinemisel',
'Select table' => 'Vali tabel', 'Select table' => 'Vali tabel',
'%.3f s' => '%.3f s',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Veuillez activer les sessions.', 'Sessions must be enabled.' => 'Veuillez activer les sessions.',
'Session expired, please login again.' => 'Session expirée, veuillez vous enregistrer à nouveau.', 'Session expired, please login again.' => 'Session expirée, veuillez vous enregistrer à nouveau.',
'Text length' => 'Longueur du texte', 'Text length' => 'Longueur du texte',
'Syntax highlighting' => 'Coloration syntaxique',
'Foreign key has been dropped.' => 'Clé externe effacée.', 'Foreign key has been dropped.' => 'Clé externe effacée.',
'Foreign key has been altered.' => 'Clé externe modifiée.', 'Foreign key has been altered.' => 'Clé externe modifiée.',
'Foreign key has been created.' => 'Clé externe créée.', 'Foreign key has been created.' => 'Clé externe créée.',
@ -155,9 +154,7 @@ $translations = array(
'Move up' => 'Déplacer vers le haut', 'Move up' => 'Déplacer vers le haut',
'Move down' => 'Déplacer vers le bas', 'Move down' => 'Déplacer vers le bas',
'Export' => 'Exporter', 'Export' => 'Exporter',
'skip' => 'sauter',
'Tables' => 'Tables', 'Tables' => 'Tables',
'Structure' => 'Structure',
'Data' => 'Donnée', 'Data' => 'Donnée',
'Output' => 'Sortie', 'Output' => 'Sortie',
'open' => 'ouvrir', 'open' => 'ouvrir',
@ -216,4 +213,5 @@ $translations = array(
'Import' => 'Importer', 'Import' => 'Importer',
'Stop on error' => 'Arrêt sur erreur', 'Stop on error' => 'Arrêt sur erreur',
'Select table' => 'Selectionner la table', 'Select table' => 'Selectionner la table',
'%.3f s' => '%.3f s',
); );

View file

@ -1,219 +1,217 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Autenticazione', 'Login' => 'Autenticazione',
'phpMinAdmin' => 'phpMinAdmin', 'phpMinAdmin' => 'phpMinAdmin',
'Logout successful.' => 'Uscita effettuata con successo.', 'Logout successful.' => 'Uscita effettuata con successo.',
'Invalid credentials.' => 'Credenziali non valide.', 'Invalid credentials.' => 'Credenziali non valide.',
'Server' => 'Server', 'Server' => 'Server',
'Username' => 'Utente', 'Username' => 'Utente',
'Password' => 'Password', 'Password' => 'Password',
'Select database' => 'Seleziona database', 'Select database' => 'Seleziona database',
'Invalid database.' => 'Database non valido.', 'Invalid database.' => 'Database non valido.',
'Create new database' => 'Crea nuovo database', 'Create new database' => 'Crea nuovo database',
'Table has been dropped.' => 'Tabella eliminata.', 'Table has been dropped.' => 'Tabella eliminata.',
'Table has been altered.' => 'Tabella modificata.', 'Table has been altered.' => 'Tabella modificata.',
'Table has been created.' => 'Tabella creata.', 'Table has been created.' => 'Tabella creata.',
'Alter table' => 'Modifica tabella', 'Alter table' => 'Modifica tabella',
'Create table' => 'Crea tabella', 'Create table' => 'Crea tabella',
'Table name' => 'Nome tabella', 'Table name' => 'Nome tabella',
'engine' => 'motore', 'engine' => 'motore',
'collation' => 'collazione', 'collation' => 'collazione',
'Column name' => 'Nome colonna', 'Column name' => 'Nome colonna',
'Type' => 'Tipo', 'Type' => 'Tipo',
'Length' => 'Lunghezza', 'Length' => 'Lunghezza',
'NULL' => 'NULL', 'NULL' => 'NULL',
'Auto Increment' => 'Auto incremento', 'Auto Increment' => 'Auto incremento',
'Options' => 'Opzioni', 'Options' => 'Opzioni',
'Save' => 'Salva', 'Save' => 'Salva',
'Drop' => 'Elimina', 'Drop' => 'Elimina',
'Database has been dropped.' => 'Database eliminato.', 'Database has been dropped.' => 'Database eliminato.',
'Database has been created.' => 'Database creato.', 'Database has been created.' => 'Database creato.',
'Database has been renamed.' => 'Database rinominato.', 'Database has been renamed.' => 'Database rinominato.',
'Database has been altered.' => 'Database modificato.', 'Database has been altered.' => 'Database modificato.',
'Alter database' => 'Modifica database', 'Alter database' => 'Modifica database',
'Create database' => 'Crea database', 'Create database' => 'Crea database',
'SQL command' => 'Comando SQL', 'SQL command' => 'Comando SQL',
'Dump' => 'Dump', 'Dump' => 'Dump',
'Logout' => 'Esci', 'Logout' => 'Esci',
'database' => 'database', 'database' => 'database',
'Use' => 'Usa', 'Use' => 'Usa',
'No tables.' => 'No tabelle.', 'No tables.' => 'No tabelle.',
'select' => 'seleziona', 'select' => 'seleziona',
'Create new table' => 'Crea nuova tabella', 'Create new table' => 'Crea nuova tabella',
'Item has been deleted.' => 'Elemento eliminato.', 'Item has been deleted.' => 'Elemento eliminato.',
'Item has been updated.' => 'Elemento aggiornato.', 'Item has been updated.' => 'Elemento aggiornato.',
'Item has been inserted.' => 'Elemento inserito.', 'Item has been inserted.' => 'Elemento inserito.',
'Edit' => 'Modifica', 'Edit' => 'Modifica',
'Insert' => 'Inserisci', 'Insert' => 'Inserisci',
'Save and insert next' => 'Salva e inserisci un altro', 'Save and insert next' => 'Salva e inserisci un altro',
'Delete' => 'Elimina', 'Delete' => 'Elimina',
'Database' => 'Database', 'Database' => 'Database',
'Routines' => 'Routine', 'Routines' => 'Routine',
'Indexes has been altered.' => 'Indici modificati.', 'Indexes has been altered.' => 'Indici modificati.',
'Indexes' => 'Indici', 'Indexes' => 'Indici',
'Alter indexes' => 'Modifica indici', 'Alter indexes' => 'Modifica indici',
'Add next' => 'Aggiungi altro', 'Add next' => 'Aggiungi altro',
'Language' => 'Lingua', 'Language' => 'Lingua',
'Select' => 'Seleziona', 'Select' => 'Seleziona',
'New item' => 'Nuovo elemento', 'New item' => 'Nuovo elemento',
'Search' => 'Cerca', 'Search' => 'Cerca',
'Sort' => 'Ordina', 'Sort' => 'Ordina',
'DESC' => 'DESC', 'DESC' => 'DESC',
'Limit' => 'Limite', 'Limit' => 'Limite',
'No rows.' => 'Nessuna riga.', 'No rows.' => 'Nessuna riga.',
'Action' => 'Azione', 'Action' => 'Azione',
'edit' => 'modifica', 'edit' => 'modifica',
'Page' => 'Pagina', 'Page' => 'Pagina',
'Query executed OK, %d row(s) affected.' => array('Esecuzione della query OK, %d riga interessata.', 'Esecuzione della query OK, %d righe interessate.'), 'Query executed OK, %d row(s) affected.' => array('Esecuzione della query OK, %d riga interessata.', 'Esecuzione della query OK, %d righe interessate.'),
'Error in query' => 'Errore nella query', 'Error in query' => 'Errore nella query',
'Execute' => 'Esegui', 'Execute' => 'Esegui',
'Table' => 'Tabella', 'Table' => 'Tabella',
'Foreign keys' => 'Chiavi esterne', 'Foreign keys' => 'Chiavi esterne',
'Triggers' => 'Trigger', 'Triggers' => 'Trigger',
'View' => 'Vedi', 'View' => 'Vedi',
'Unable to select the table' => 'Selezione della tabella non riuscita', 'Unable to select the table' => 'Selezione della tabella non riuscita',
'Invalid CSRF token. Send the form again.' => 'Token CSRF non valido. Reinvia la richiesta.', 'Invalid CSRF token. Send the form again.' => 'Token CSRF non valido. Reinvia la richiesta.',
'Comment' => 'Commento', 'Comment' => 'Commento',
'Default values has been set.' => 'Valore predefinito impostato.', 'Default values has been set.' => 'Valore predefinito impostato.',
'Default values' => 'Valori predefiniti', 'Default values' => 'Valori predefiniti',
'BOOL' => 'BOOL', 'BOOL' => 'BOOL',
'Show column comments' => 'Mostra i commenti delle colonne', 'Show column comments' => 'Mostra i commenti delle colonne',
'%d byte(s)' => array('%d byte', '%d bytes'), '%d byte(s)' => array('%d byte', '%d bytes'),
'No commands to execute.' => 'Nessun commando da eseguire.', 'No commands to execute.' => 'Nessun commando da eseguire.',
'Unable to upload a file.' => 'Caricamento del file non riuscito.', 'Unable to upload a file.' => 'Caricamento del file non riuscito.',
'File upload' => 'Caricamento file', 'File upload' => 'Caricamento file',
'File uploads are disabled.' => 'Caricamento file disabilitato.', 'File uploads are disabled.' => 'Caricamento file disabilitato.',
'Routine has been called, %d row(s) affected.' => array('Routine chiamata, %d riga interessata.', 'Routine chiamata, %d righe interessate.'), 'Routine has been called, %d row(s) affected.' => array('Routine chiamata, %d riga interessata.', 'Routine chiamata, %d righe interessate.'),
'Call' => 'Chiama', 'Call' => 'Chiama',
'No MySQL extension' => 'Estensioni MySQL non presenti', 'No MySQL extension' => 'Estensioni MySQL non presenti',
'None of supported PHP extensions (%s) are available.' => 'Nessuna delle estensioni PHP supportate (%s) disponibile.', 'None of supported PHP extensions (%s) are available.' => 'Nessuna delle estensioni PHP supportate (%s) disponibile.',
'Sessions must be enabled.' => 'Le sessioni devono essere abilitate.', 'Sessions must be enabled.' => 'Le sessioni devono essere abilitate.',
'Session expired, please login again.' => 'Sessione scaduta, autenticarsi di nuovo.', 'Session expired, please login again.' => 'Sessione scaduta, autenticarsi di nuovo.',
'Text length' => 'Lunghezza testo', 'Text length' => 'Lunghezza testo',
'Syntax highlighting' => 'Evidenzia sintassi', 'Foreign key has been dropped.' => 'Foreign key eliminata.',
'Foreign key has been dropped.' => 'Foreign key eliminata.', 'Foreign key has been altered.' => 'Foreign key modificata.',
'Foreign key has been altered.' => 'Foreign key modificata.', 'Foreign key has been created.' => 'Foreign key creata.',
'Foreign key has been created.' => 'Foreign key creata.', 'Foreign key' => 'Foreign key',
'Foreign key' => 'Foreign key', 'Target table' => 'Tabella obiettivo',
'Target table' => 'Tabella obiettivo', 'Change' => 'Cambia',
'Change' => 'Cambia', 'Source' => 'Sorgente',
'Source' => 'Sorgente', 'Target' => 'Obiettivo',
'Target' => 'Obiettivo', 'Add column' => 'Aggiungi colonna',
'Add column' => 'Aggiungi colonna', 'Alter' => 'Modifica',
'Alter' => 'Modifica', 'Add foreign key' => 'Aggiungi foreign key',
'Add foreign key' => 'Aggiungi foreign key', 'ON DELETE' => 'ON DELETE',
'ON DELETE' => 'ON DELETE', 'ON UPDATE' => 'ON UPDATE',
'ON UPDATE' => 'ON UPDATE', 'Index Type' => 'Tipo indice',
'Index Type' => 'Tipo indice', 'Column (length)' => 'Colonna (lunghezza)',
'Column (length)' => 'Colonna (lunghezza)', 'View has been dropped.' => 'Vista eliminata.',
'View has been dropped.' => 'Vista eliminata.', 'View has been altered.' => 'Vista modificata.',
'View has been altered.' => 'Vista modificata.', 'View has been created.' => 'Vista creata.',
'View has been created.' => 'Vista creata.', 'Alter view' => 'Modifica vista',
'Alter view' => 'Modifica vista', 'Create view' => 'Crea vista',
'Create view' => 'Crea vista', 'Name' => 'Nome',
'Name' => 'Nome', 'Process list' => 'Elenco processi',
'Process list' => 'Elenco processi', '%d process(es) has been killed.' => array('%d processo interrotto.', '%d processi interrotti.'),
'%d process(es) has been killed.' => array('%d processo interrotto.', '%d processi interrotti.'), 'Kill' => 'Interrompi',
'Kill' => 'Interrompi', 'IN-OUT' => 'IN-OUT',
'IN-OUT' => 'IN-OUT', 'Parameter name' => 'Nome parametro',
'Parameter name' => 'Nome parametro', 'Database schema' => 'Schema database',
'Database schema' => 'Schema database', 'Create procedure' => 'Crea procedura',
'Create procedure' => 'Crea procedura', 'Create function' => 'Crea funzione',
'Create function' => 'Crea funzione', 'Routine has been dropped.' => 'Routine eliminata.',
'Routine has been dropped.' => 'Routine eliminata.', 'Routine has been altered.' => 'Routine modificata.',
'Routine has been altered.' => 'Routine modificata.', 'Routine has been created.' => 'Routine creata.',
'Routine has been created.' => 'Routine creata.', 'Alter function' => 'Modifica funzione',
'Alter function' => 'Modifica funzione', 'Alter procedure' => 'Modifica procedura',
'Alter procedure' => 'Modifica procedura', 'Return type' => 'Return type',
'Return type' => 'Return type', 'Add trigger' => 'Aggiungi trigger',
'Add trigger' => 'Aggiungi trigger', 'Trigger has been dropped.' => 'Trigger eliminato.',
'Trigger has been dropped.' => 'Trigger eliminato.', 'Trigger has been altered.' => 'Trigger modificato.',
'Trigger has been altered.' => 'Trigger modificato.', 'Trigger has been created.' => 'Trigger creato.',
'Trigger has been created.' => 'Trigger creato.', 'Alter trigger' => 'Modifica trigger',
'Alter trigger' => 'Modifica trigger', 'Create trigger' => 'Crea trigger',
'Create trigger' => 'Crea trigger', 'Time' => 'Orario',
'Time' => 'Orario', 'Event' => 'Evento',
'Event' => 'Evento', 'MySQL version: %s through PHP extension %s' => 'Versione MySQL: %s via estensione PHP %s',
'MySQL version: %s through PHP extension %s' => 'Versione MySQL: %s via estensione PHP %s', '%d row(s)' => array('%d riga', '%d righe'),
'%d row(s)' => array('%d riga', '%d righe'), '~ %s' => '~ %s',
'~ %s' => '~ %s', 'ON UPDATE CURRENT_TIMESTAMP' => 'ON UPDATE CURRENT_TIMESTAMP',
'ON UPDATE CURRENT_TIMESTAMP' => 'ON UPDATE CURRENT_TIMESTAMP', 'Remove' => 'Rimuovi',
'Remove' => 'Rimuovi', 'Are you sure?' => 'Sicuro?',
'Are you sure?' => 'Sicuro?', 'Privileges' => 'Privilegi',
'Privileges' => 'Privilegi', 'Create user' => 'Crea utente',
'Create user' => 'Crea utente', 'User has been dropped.' => 'Utente eliminato.',
'User has been dropped.' => 'Utente eliminato.', 'User has been altered.' => 'Utente modificato.',
'User has been altered.' => 'Utente modificato.', 'User has been created.' => 'Utente creato.',
'User has been created.' => 'Utente creato.', 'Hashed' => 'Hashed',
'Hashed' => 'Hashed', 'Column' => 'Colonna',
'Column' => 'Colonna', 'Routine' => 'Routine',
'Routine' => 'Routine', 'Grant' => 'Permetti',
'Grant' => 'Permetti', 'Revoke' => 'Revoca',
'Revoke' => 'Revoca', 'Too big POST data. Reduce the data or increase the "post_max_size" configuration directive.' => 'Troppi dati via POST. Ridurre i dati o aumentare la direttiva di configurazione "post_max_size".',
'Too big POST data. Reduce the data or increase the "post_max_size" configuration directive.' => 'Troppi dati via POST. Ridurre i dati o aumentare la direttiva di configurazione "post_max_size".', 'Logged as: %s' => 'Autenticato come: %s',
'Logged as: %s' => 'Autenticato come: %s', 'Move up' => 'Sposta su',
'Move up' => 'Sposta su', 'Move down' => 'Sposta giu',
'Move down' => 'Sposta giu', 'Functions' => 'Funzioni',
'Functions' => 'Funzioni', 'Aggregation' => 'Aggregazione',
'Aggregation' => 'Aggregazione', 'Export' => 'Esporta',
'Export' => 'Esporta', 'Output' => 'Risultato',
'Output' => 'Risultato', 'open' => 'apri',
'open' => 'apri', 'save' => 'salva',
'save' => 'salva', 'Format' => 'Formato',
'Format' => 'Formato', 'SQL' => 'SQL',
'SQL' => 'SQL', 'CSV' => 'CSV',
'CSV' => 'CSV', 'Tables' => 'Tabelle',
'skip' => 'tralascia', 'Data' => 'Dati',
'Tables' => 'Tabelle', 'Event has been dropped.' => 'Evento eliminato.',
'Structure' => 'Struttura', 'Event has been altered.' => 'Evento modificato.',
'Data' => 'Dati', 'Event has been created.' => 'Evento creato.',
'Event has been dropped.' => 'Evento eliminato.', 'Alter event' => 'Modifica evento',
'Event has been altered.' => 'Evento modificato.', 'Create event' => 'Crea evento',
'Event has been created.' => 'Evento creato.', 'Start' => 'Inizio',
'Alter event' => 'Modifica evento', 'End' => 'Fine',
'Create event' => 'Crea evento', 'Every' => 'Ogni',
'Start' => 'Inizio', 'Status' => 'Stato',
'End' => 'Fine', 'On completion preserve' => 'Al termine preservare',
'Every' => 'Ogni', 'Events' => 'Eventi',
'Status' => 'Stato', 'Schedule' => 'Pianifica',
'On completion preserve' => 'Al termine preservare', 'At given time' => 'A tempo prestabilito',
'Events' => 'Eventi', 'Save and continue edit' => 'Salva e continua',
'Schedule' => 'Pianifica', 'original' => 'originale',
'At given time' => 'A tempo prestabilito', 'Tables have been truncated.' => 'Le tabelle sono state svuotate.',
'Save and continue edit' => 'Salva e continua', 'Tables have been moved.' => 'Le tabelle sono state spostate.',
'original' => 'originale', 'Tables have been dropped.' => 'Le tabelle sono state eliminate.',
'Tables have been truncated.' => 'Le tabelle sono state svuotate.', 'Tables and views' => 'Tabelle e viste',
'Tables have been moved.' => 'Le tabelle sono state spostate.', 'Engine' => 'Motore',
'Tables have been dropped.' => 'Le tabelle sono state eliminate.', 'Collation' => 'Collazione',
'Tables and views' => 'Tabelle e viste', 'Data Length' => 'Lunghezza dato',
'Engine' => 'Motore', 'Index Length' => 'Lunghezza indice',
'Collation' => 'Collazione', 'Data Free' => 'Dati liberi',
'Data Length' => 'Lunghezza dato', 'Rows' => 'Righe',
'Index Length' => 'Lunghezza indice', ',' => '.',
'Data Free' => 'Dati liberi', 'Analyze' => 'Analizza',
'Rows' => 'Righe', 'Optimize' => 'Ottimizza',
',' => '.', 'Check' => 'Controlla',
'Analyze' => 'Analizza', 'Repair' => 'Ripara',
'Optimize' => 'Ottimizza', 'Truncate' => 'Svuota',
'Check' => 'Controlla', 'Move to other database' => 'Sposta in altro database',
'Repair' => 'Ripara', 'Move' => 'Sposta',
'Truncate' => 'Svuota', '%d item(s) have been affected.' => array('Il risultato consiste in %d elemento', 'Il risultato consiste in %d elementi'),
'Move to other database' => 'Sposta in altro database', 'whole result' => 'intero risultato',
'Move' => 'Sposta', 'clone' => 'clona',
'%d item(s) have been affected.' => array('Il risultato consiste in %d elemento', 'Il risultato consiste in %d elementi'), 'Clone' => 'Clona',
'whole result' => 'intero risultato', 'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Troppi campi. Per favore aumentare %s e %s.',
'clone' => 'clona', 'Partition by' => 'Partiziona per',
'Clone' => 'Clona', 'Partitions' => 'Partizioni',
'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Troppi campi. Per favore aumentare %s e %s.', 'Partition name' => 'Nome partizione',
'Partition by' => 'Partiziona per', 'Values' => 'Valori',
'Partitions' => 'Partizioni', '%d row(s) has been imported.' => array('%d riga importata.','%d righe importate.'),
'Partition name' => 'Nome partizione', 'Table structure' => 'Struttura tabella',
'Values' => 'Valori', '(anywhere)' => '(ovunque)',
'%d row(s) has been imported.' => array('%d riga importata.','%d righe importate.'), 'CSV Import' => 'Importa da CSV',
'Table structure' => 'Struttura tabella', 'Import' => 'Importa',
'(anywhere)' => '(ovunque)', 'Stop on error' => 'Stop su errore',
'CSV Import' => 'Importa da CSV', 'Select table' => 'Scegli tabella',
'Import' => 'Importa', '%.3f s' => '%.3f s',
'Stop on error' => 'Stop su errore', );
'Select table' => 'Scegli tabella',
);

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Siessies moeten geactiveerd zijn.', 'Sessions must be enabled.' => 'Siessies moeten geactiveerd zijn.',
'Session expired, please login again.' => 'Uw sessie is verlopen. Gelieve opnieuw in te loggen.', 'Session expired, please login again.' => 'Uw sessie is verlopen. Gelieve opnieuw in te loggen.',
'Text length' => 'Tekst lengte', 'Text length' => 'Tekst lengte',
'Syntax highlighting' => 'Syntax highlighting',
'Foreign key has been dropped.' => 'Foreign key verwijderd.', 'Foreign key has been dropped.' => 'Foreign key verwijderd.',
'Foreign key has been altered.' => 'Foreign key aangepast.', 'Foreign key has been altered.' => 'Foreign key aangepast.',
'Foreign key has been created.' => 'Foreign key aangemaakt.', 'Foreign key has been created.' => 'Foreign key aangemaakt.',
@ -155,9 +154,7 @@ $translations = array(
'Move up' => 'Omhoog', 'Move up' => 'Omhoog',
'Move down' => 'Omlaag', 'Move down' => 'Omlaag',
'Export' => 'Exporteren', 'Export' => 'Exporteren',
'skip' => 'overslaan',
'Tables' => 'Tabellen', 'Tables' => 'Tabellen',
'Structure' => 'Structuur',
'Data' => 'Data', 'Data' => 'Data',
'Output' => 'Uitvoer', 'Output' => 'Uitvoer',
'open' => 'openen', 'open' => 'openen',
@ -209,11 +206,12 @@ $translations = array(
'Partitions' => 'Partities', 'Partitions' => 'Partities',
'Partition name' => 'Partitie naam', 'Partition name' => 'Partitie naam',
'Values' => 'Waarden', 'Values' => 'Waarden',
'%d row(s) has been imported.' => array('%d rij werd geïmporteerd.', '%d rijen werden geïmporteerd.'), '%d row(s) has been imported.' => array('%d rij werd geïmporteerd.', '%d rijen werden geïmporteerd.'),
'Table structure' => 'Tabelstructuur', 'Table structure' => 'Tabelstructuur',
'(anywhere)' => '(overal)', '(anywhere)' => '(overal)',
'CSV Import' => 'CSV Import', 'CSV Import' => 'CSV Import',
'Import' => 'Importeren', 'Import' => 'Importeren',
'Stop on error' => 'Stoppen bij fout', 'Stop on error' => 'Stoppen bij fout',
'Select table' => 'Selecteer tabel', 'Select table' => 'Selecteer tabel',
'%.3f s' => '%.3f s',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Сессион должно быть разрешенное.', 'Sessions must be enabled.' => 'Сессион должно быть разрешенное.',
'Session expired, please login again.' => 'Сессион прошла, записаться ещё один раз.', 'Session expired, please login again.' => 'Сессион прошла, записаться ещё один раз.',
'Text length' => 'Длина текстов', 'Text length' => 'Длина текстов',
'Syntax highlighting' => 'Выделение синтаксису',
'Foreign key has been dropped.' => 'Иностранный ключ был удалена.', 'Foreign key has been dropped.' => 'Иностранный ключ был удалена.',
'Foreign key has been altered.' => 'Иностранный ключ был актуализированный.', 'Foreign key has been altered.' => 'Иностранный ключ был актуализированный.',
'Foreign key has been created.' => 'Иностранный ключ был создан.', 'Foreign key has been created.' => 'Иностранный ключ был создан.',
@ -163,9 +162,7 @@ $translations = array(
'Format' => 'Формат', 'Format' => 'Формат',
'SQL' => 'SQL', 'SQL' => 'SQL',
'CSV' => 'CSV', 'CSV' => 'CSV',
'skip' => 'перескочить',
'Tables' => 'Таблицы', 'Tables' => 'Таблицы',
'Structure' => 'Структура',
'Data' => 'Данные', 'Data' => 'Данные',
'Event has been dropped.' => 'Событие была удален.', 'Event has been dropped.' => 'Событие была удален.',
'Event has been altered.' => 'Событие была изменена.', 'Event has been altered.' => 'Событие была изменена.',
@ -216,4 +213,5 @@ $translations = array(
'Stop on error' => 'Прекратить при ошибке', 'Stop on error' => 'Прекратить при ошибке',
'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Было пересечено максимальные количество поля. Нарастите %s и %s.', 'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Было пересечено максимальные количество поля. Нарастите %s и %s.',
'(anywhere)' => '(в любом месте)', '(anywhere)' => '(в любом месте)',
'%.3f s' => '%.3f s',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => 'Session premenné musia byť povolené.', 'Sessions must be enabled.' => 'Session premenné musia byť povolené.',
'Session expired, please login again.' => 'Session vypršala, prihláste sa prosím znova.', 'Session expired, please login again.' => 'Session vypršala, prihláste sa prosím znova.',
'Text length' => 'Dĺžka textov', 'Text length' => 'Dĺžka textov',
'Syntax highlighting' => 'Zvýrazňovanie syntaxe',
'Foreign key has been dropped.' => 'Cudzí kľúč bol odstránený.', 'Foreign key has been dropped.' => 'Cudzí kľúč bol odstránený.',
'Foreign key has been altered.' => 'Cudzí kľúč bol zmenený.', 'Foreign key has been altered.' => 'Cudzí kľúč bol zmenený.',
'Foreign key has been created.' => 'Cudzí kľúč bol vytvorený.', 'Foreign key has been created.' => 'Cudzí kľúč bol vytvorený.',
@ -163,9 +162,7 @@ $translations = array(
'Format' => 'Formát', 'Format' => 'Formát',
'SQL' => 'SQL', 'SQL' => 'SQL',
'CSV' => 'CSV', 'CSV' => 'CSV',
'skip' => 'preskočiť',
'Tables' => 'Tabuľky', 'Tables' => 'Tabuľky',
'Structure' => 'Štruktúra',
'Data' => 'Dáta', 'Data' => 'Dáta',
'Event has been dropped.' => 'Udalosť bola odstránená.', 'Event has been dropped.' => 'Udalosť bola odstránená.',
'Event has been altered.' => 'Udalosť bola zmenená.', 'Event has been altered.' => 'Udalosť bola zmenená.',
@ -216,4 +213,5 @@ $translations = array(
'Stop on error' => 'Zastaviť pri chybe', 'Stop on error' => 'Zastaviť pri chybe',
'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Bol prekročený maximálny počet povolených polí. Zvýšte prosím %s a %s.', 'Maximum number of allowed fields exceeded. Please increase %s and %s.' => 'Bol prekročený maximálny počet povolených polí. Zvýšte prosím %s a %s.',
'(anywhere)' => '(kdekoľvek)', '(anywhere)' => '(kdekoľvek)',
'%.3f s' => '%.3f s',
); );

View file

@ -90,7 +90,6 @@ $translations = array(
'Sessions must be enabled.' => '会话必须被启用。', 'Sessions must be enabled.' => '会话必须被启用。',
'Session expired, please login again.' => '会话已过期,请重新登录。', 'Session expired, please login again.' => '会话已过期,请重新登录。',
'Text length' => '文本长度', 'Text length' => '文本长度',
'Syntax highlighting' => '语法高亮',
'Foreign key has been dropped.' => '已删除外键。', 'Foreign key has been dropped.' => '已删除外键。',
'Foreign key has been altered.' => '已更改外键。', 'Foreign key has been altered.' => '已更改外键。',
'Foreign key has been created.' => '已创建外键。', 'Foreign key has been created.' => '已创建外键。',
@ -155,9 +154,7 @@ $translations = array(
'Move up' => '上移', 'Move up' => '上移',
'Move down' => '下移', 'Move down' => '下移',
'Export' => '导出', 'Export' => '导出',
'skip' => '跳过',
'Tables' => '表', 'Tables' => '表',
'Structure' => '结构',
'Data' => '数据', 'Data' => '数据',
'Output' => '输出', 'Output' => '输出',
'open' => '打开', 'open' => '打开',
@ -216,4 +213,5 @@ $translations = array(
'Import' => '导入', 'Import' => '导入',
'Stop on error' => '出错时停止', 'Stop on error' => '出错时停止',
'Select table' => '选择表', 'Select table' => '选择表',
'%.3f s' => '%.3f s',
); );