Remove useless translations

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1014 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2009-08-25 15:42:43 +00:00
parent e600a44bbb
commit b349612063
15 changed files with 7 additions and 50 deletions

View file

@ -8,7 +8,7 @@ class Adminer {
* @return string * @return string
*/ */
function name() { function name() {
return lang('Adminer'); return "Adminer";
} }
/** Connection parameters /** Connection parameters
@ -163,7 +163,7 @@ class Adminer {
if ($index["type"] == "FULLTEXT") { if ($index["type"] == "FULLTEXT") {
echo "(<i>" . implode("</i>, <i>", array_map('h', $index["columns"])) . "</i>) AGAINST"; echo "(<i>" . implode("</i>, <i>", array_map('h', $index["columns"])) . "</i>) AGAINST";
echo " <input name='fulltext[$i]' value='" . h($_GET["fulltext"][$i]) . "'>"; echo " <input name='fulltext[$i]' value='" . h($_GET["fulltext"][$i]) . "'>";
echo "<label><input type='checkbox' name='boolean[$i]' value='1'" . (isset($_GET["boolean"][$i]) ? " checked" : "") . ">" . lang('BOOL') . "</label>"; echo "<label><input type='checkbox' name='boolean[$i]' value='1'" . (isset($_GET["boolean"][$i]) ? " checked" : "") . ">BOOL</label>";
echo "<br>\n"; echo "<br>\n";
} }
} }

View file

@ -65,13 +65,13 @@ function edit_fields($fields, $collations, $type = "TABLE", $allowed = 0, $forei
} }
?> ?>
<thead><tr> <thead><tr>
<?php if ($type == "PROCEDURE") { ?><td><?php echo lang('IN-OUT'); ?><?php } ?> <?php if ($type == "PROCEDURE") { ?><td>&nbsp;<?php } ?>
<th><?php echo ($type == "TABLE" ? lang('Column name') : lang('Parameter name')); ?> <th><?php echo ($type == "TABLE" ? lang('Column name') : lang('Parameter name')); ?>
<td><?php echo lang('Type'); ?> <td><?php echo lang('Type'); ?>
<td><?php echo lang('Length'); ?> <td><?php echo lang('Length'); ?>
<td><?php echo lang('Options'); ?> <td><?php echo lang('Options'); ?>
<?php if ($type == "TABLE") { ?> <?php if ($type == "TABLE") { ?>
<td><?php echo lang('NULL'); ?> <td>NULL
<td><input type="radio" name="auto_increment_col" value=""><?php echo lang('Auto Increment'); ?> <td><input type="radio" name="auto_increment_col" value=""><?php echo lang('Auto Increment'); ?>
<td class="hidden"><?php echo lang('Default values'); ?> <td class="hidden"><?php echo lang('Default values'); ?>
<td<?php echo ($column_comments ? "" : " class='hidden'"); ?>><?php echo lang('Comment'); ?> <td<?php echo ($column_comments ? "" : " class='hidden'"); ?>><?php echo lang('Comment'); ?>

View file

@ -158,5 +158,6 @@ function dump_headers($identifier, $multi_table = false) {
} }
$dump_output = "<select name='output'>" . optionlist(array('text' => lang('open'), 'file' => lang('save'))) . "</select>" $dump_output = "<select name='output'>" . optionlist(array('text' => lang('open'), 'file' => lang('save'))) . "</select>"
. " <select name='format'>" . optionlist(array('sql' => 'SQL', 'csv' => 'CSV')) . "</select>"; . " <select name='format'>" . optionlist(array('sql' => 'SQL', 'csv' => 'CSV')) . "</select>"
;
$max_packet = 1048576; // default, minimum is 1024 $max_packet = 1048576; // default, minimum is 1024

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Přihlásit se', 'Login' => 'Přihlásit se',
'Adminer' => 'Adminer',
'Logout successful.' => 'Odhlášení proběhlo v pořádku.', 'Logout successful.' => 'Odhlášení proběhlo v pořádku.',
'Invalid credentials.' => 'Neplatné přihlašovací údaje.', 'Invalid credentials.' => 'Neplatné přihlašovací údaje.',
'Server' => 'Server', 'Server' => 'Server',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Název sloupce', 'Column name' => 'Název sloupce',
'Type' => 'Typ', 'Type' => 'Typ',
'Length' => 'Délka', 'Length' => 'Délka',
'NULL' => 'NULL',
'Auto Increment' => 'Auto Increment', 'Auto Increment' => 'Auto Increment',
'Options' => 'Volby', 'Options' => 'Volby',
'Save' => 'Uložit', 'Save' => 'Uložit',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Neplatný token CSRF. Odešlete formulář znovu.', 'Invalid CSRF token. Send the form again.' => 'Neplatný token CSRF. Odešlete formulář znovu.',
'Comment' => 'Komentář', 'Comment' => 'Komentář',
'Default values' => 'Výchozí hodnoty', 'Default values' => 'Výchozí hodnoty',
'BOOL' => 'BOOL',
'Show column comments' => 'Zobrazit komentáře sloupců', 'Show column comments' => 'Zobrazit komentáře sloupců',
'%d byte(s)' => array('%d bajt', '%d bajty', '%d bajtů'), '%d byte(s)' => array('%d bajt', '%d bajty', '%d bajtů'),
'No commands to execute.' => 'Žádné příkazy k vykonání.', 'No commands to execute.' => 'Žádné příkazy k vykonání.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Seznam procesů', 'Process list' => 'Seznam procesů',
'%d process(es) have been killed.' => array('Byl ukončen %d proces.', 'Byly ukončeny %d procesy.', 'Bylo ukončeno %d procesů.'), '%d process(es) have been killed.' => array('Byl ukončen %d proces.', 'Byly ukončeny %d procesy.', 'Bylo ukončeno %d procesů.'),
'Kill' => 'Ukončit', 'Kill' => 'Ukončit',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Název parametru', 'Parameter name' => 'Název parametru',
'Database schema' => 'Schéma databáze', 'Database schema' => 'Schéma databáze',
'Create procedure' => 'Vytvořit proceduru', 'Create procedure' => 'Vytvořit proceduru',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Login', 'Login' => 'Login',
'Adminer' => 'Adminer',
'Logout successful.' => 'Abmeldung erfolgreich.', 'Logout successful.' => 'Abmeldung erfolgreich.',
'Invalid credentials.' => 'Ungültige Anmelde-Informationen.', 'Invalid credentials.' => 'Ungültige Anmelde-Informationen.',
'Server' => 'Server', 'Server' => 'Server',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Spaltenname', 'Column name' => 'Spaltenname',
'Type' => 'Typ', 'Type' => 'Typ',
'Length' => 'Länge', 'Length' => 'Länge',
'NULL' => 'NULL',
'Auto Increment' => 'Auto-Inkrement', 'Auto Increment' => 'Auto-Inkrement',
'Options' => 'Optionen', 'Options' => 'Optionen',
'Save' => 'Speichern', 'Save' => 'Speichern',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'CSRF Token ungültig. Bitte die Formulardaten erneut abschicken.', 'Invalid CSRF token. Send the form again.' => 'CSRF Token ungültig. Bitte die Formulardaten erneut abschicken.',
'Comment' => 'Kommentar', 'Comment' => 'Kommentar',
'Default values' => 'Vorgabewerte festlegen', 'Default values' => 'Vorgabewerte festlegen',
'BOOL' => 'BOOL',
'Show column comments' => 'Spaltenkommentare zeigen', 'Show column comments' => 'Spaltenkommentare zeigen',
'%d byte(s)' => array('%d Byte', '%d Bytes'), '%d byte(s)' => array('%d Byte', '%d Bytes'),
'No commands to execute.' => 'Kein Kommando vorhanden.', 'No commands to execute.' => 'Kein Kommando vorhanden.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Prozessliste', 'Process list' => 'Prozessliste',
'%d process(es) have been killed.' => array('%d Prozess gestoppt.', '%d Prozesse gestoppt.'), '%d process(es) have been killed.' => array('%d Prozess gestoppt.', '%d Prozesse gestoppt.'),
'Kill' => 'Anhalten', 'Kill' => 'Anhalten',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Name des Parameters', 'Parameter name' => 'Name des Parameters',
'Database schema' => 'Datenbankschema', 'Database schema' => 'Datenbankschema',
'Create procedure' => 'Neue Prozedur', 'Create procedure' => 'Neue Prozedur',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Login', 'Login' => 'Login',
'Adminer' => 'Adminer',
'Logout successful.' => 'Salida exitosa.', 'Logout successful.' => 'Salida exitosa.',
'Invalid credentials.' => 'Autenticación fallada.', 'Invalid credentials.' => 'Autenticación fallada.',
'Server' => 'Servidor', 'Server' => 'Servidor',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Nombre de columna', 'Column name' => 'Nombre de columna',
'Type' => 'Tipo', 'Type' => 'Tipo',
'Length' => 'Longitud', 'Length' => 'Longitud',
'NULL' => 'NULL',
'Auto Increment' => 'Auto increment', 'Auto Increment' => 'Auto increment',
'Options' => 'Opciones', 'Options' => 'Opciones',
'Save' => 'Guardar', 'Save' => 'Guardar',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Token CSRF inválido. Vuelva a enviar los datos del formulario.', 'Invalid CSRF token. Send the form again.' => 'Token CSRF inválido. Vuelva a enviar los datos del formulario.',
'Comment' => 'Comentario', 'Comment' => 'Comentario',
'Default values' => 'Valores predeterminados', 'Default values' => 'Valores predeterminados',
'BOOL' => 'BOOL',
'Show column comments' => 'Mostrar comentario de columnas', 'Show column comments' => 'Mostrar comentario de columnas',
'%d byte(s)' => array('%d byte', '%d bytes'), '%d byte(s)' => array('%d byte', '%d bytes'),
'No commands to execute.' => 'No hay comando para ejecutar.', 'No commands to execute.' => 'No hay comando para ejecutar.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Lista de procesos', 'Process list' => 'Lista de procesos',
'%d process(es) have been killed.' => array('%d proceso detenido.', '%d procesos detenidos.'), '%d process(es) have been killed.' => array('%d proceso detenido.', '%d procesos detenidos.'),
'Kill' => 'Detener', 'Kill' => 'Detener',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Nombre de Parametro', 'Parameter name' => 'Nombre de Parametro',
'Database schema' => 'Esquema de base de datos', 'Database schema' => 'Esquema de base de datos',
'Create procedure' => 'Crear procedimiento', 'Create procedure' => 'Crear procedimiento',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Logi sisse', 'Login' => 'Logi sisse',
'Adminer' => 'Andmebaasi haldaja',
'Logout successful.' => 'Väljalogimine õnnestus.', 'Logout successful.' => 'Väljalogimine õnnestus.',
'Invalid credentials.' => 'Ebakorrektsed andmed.', 'Invalid credentials.' => 'Ebakorrektsed andmed.',
'Server' => 'Server', 'Server' => 'Server',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Veeru nimi', 'Column name' => 'Veeru nimi',
'Type' => 'Tüüp', 'Type' => 'Tüüp',
'Length' => 'Pikkus', 'Length' => 'Pikkus',
'NULL' => 'NULL',
'Auto Increment' => 'Automaatselt suurenev', 'Auto Increment' => 'Automaatselt suurenev',
'Options' => 'Valikud', 'Options' => 'Valikud',
'Save' => 'Salvesta', 'Save' => 'Salvesta',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Sobimatu CSRF, palun postitage vorm uuesti.', 'Invalid CSRF token. Send the form again.' => 'Sobimatu CSRF, palun postitage vorm uuesti.',
'Comment' => 'Kommentaar', 'Comment' => 'Kommentaar',
'Default values' => 'Vaikimisi väärtused', 'Default values' => 'Vaikimisi väärtused',
'BOOL' => 'Jah/Ei (BOOL)',
'Show column comments' => 'Kuva veeru kommentaarid', 'Show column comments' => 'Kuva veeru kommentaarid',
'%d byte(s)' => array('%d bait', '%d baiti'), '%d byte(s)' => array('%d bait', '%d baiti'),
'No commands to execute.' => 'Käsk puudub.', 'No commands to execute.' => 'Käsk puudub.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Protsesside nimekiri', 'Process list' => 'Protsesside nimekiri',
'%d process(es) have been killed.' => array('Protsess on edukalt peatatud (%d).', 'Valitud protsessid (%d) on edukalt peatatud.'), '%d process(es) have been killed.' => array('Protsess on edukalt peatatud (%d).', 'Valitud protsessid (%d) on edukalt peatatud.'),
'Kill' => 'Peata', 'Kill' => 'Peata',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Parameetri nimi', 'Parameter name' => 'Parameetri nimi',
'Database schema' => 'Andmebaasi skeem', 'Database schema' => 'Andmebaasi skeem',
'Create procedure' => 'Loo uus protseduur', 'Create procedure' => 'Loo uus protseduur',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Authentification', 'Login' => 'Authentification',
'Adminer' => 'Adminer',
'Logout successful.' => 'Aurevoir!', 'Logout successful.' => 'Aurevoir!',
'Invalid credentials.' => 'Authentification échouée', 'Invalid credentials.' => 'Authentification échouée',
'Server' => 'Serveur', 'Server' => 'Serveur',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Nom de la colonne', 'Column name' => 'Nom de la colonne',
'Type' => 'Type', 'Type' => 'Type',
'Length' => 'Longeur', 'Length' => 'Longeur',
'NULL' => 'NULL',
'Auto Increment' => 'Auto increment', 'Auto Increment' => 'Auto increment',
'Options' => 'Options', 'Options' => 'Options',
'Save' => 'Sauvegarder', 'Save' => 'Sauvegarder',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Token CSRF invalide. Veuillez réenvoyer le formulaire.', 'Invalid CSRF token. Send the form again.' => 'Token CSRF invalide. Veuillez réenvoyer le formulaire.',
'Comment' => 'Commentaire', 'Comment' => 'Commentaire',
'Default values' => 'Valeurs par défaut', 'Default values' => 'Valeurs par défaut',
'BOOL' => 'BOOL',
'Show column comments' => 'Voir les commentaires sur les colonnes', 'Show column comments' => 'Voir les commentaires sur les colonnes',
'%d byte(s)' => array('%d octet', '%d octets'), '%d byte(s)' => array('%d octet', '%d octets'),
'No commands to execute.' => 'Aucune commande à exécuter.', 'No commands to execute.' => 'Aucune commande à exécuter.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Liste de processus', 'Process list' => 'Liste de processus',
'%d process(es) have been killed.' => array('%d processus arrêté.', '%d processus arrêtés.'), '%d process(es) have been killed.' => array('%d processus arrêté.', '%d processus arrêtés.'),
'Kill' => 'Arrêter', 'Kill' => 'Arrêter',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Nom du Paramêtre', 'Parameter name' => 'Nom du Paramêtre',
'Database schema' => 'Schéma de la base de données', 'Database schema' => 'Schéma de la base de données',
'Create procedure' => 'Créer une procédure', 'Create procedure' => 'Créer une procédure',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Autenticazione', 'Login' => 'Autenticazione',
'Adminer' => 'Adminer',
'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',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Nome colonna', 'Column name' => 'Nome colonna',
'Type' => 'Tipo', 'Type' => 'Tipo',
'Length' => 'Lunghezza', 'Length' => 'Lunghezza',
'NULL' => 'NULL',
'Auto Increment' => 'Auto incremento', 'Auto Increment' => 'Auto incremento',
'Options' => 'Opzioni', 'Options' => 'Opzioni',
'Save' => 'Salva', 'Save' => 'Salva',
@ -73,7 +71,6 @@ $translations = array(
'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' => 'Valori predefiniti', 'Default values' => 'Valori predefiniti',
'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.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Elenco processi', 'Process list' => 'Elenco processi',
'%d process(es) have been killed.' => array('%d processo interrotto.', '%d processi interrotti.'), '%d process(es) have been killed.' => array('%d processo interrotto.', '%d processi interrotti.'),
'Kill' => 'Interrompi', 'Kill' => 'Interrompi',
'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',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Inloggen', 'Login' => 'Inloggen',
'Adminer' => 'Adminer',
'Logout successful.' => 'Uitloggen geslaagd.', 'Logout successful.' => 'Uitloggen geslaagd.',
'Invalid credentials.' => 'Ongeldige logingegevens.', 'Invalid credentials.' => 'Ongeldige logingegevens.',
'Server' => 'Server', 'Server' => 'Server',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Kolomnaam', 'Column name' => 'Kolomnaam',
'Type' => 'Type', 'Type' => 'Type',
'Length' => 'Lengte', 'Length' => 'Lengte',
'NULL' => 'NULL',
'Auto Increment' => 'Auto nummering', 'Auto Increment' => 'Auto nummering',
'Options' => 'Opties', 'Options' => 'Opties',
'Save' => 'Opslaan', 'Save' => 'Opslaan',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Ongeldig CSRF token. Verstuur het formulier opnieuw.', 'Invalid CSRF token. Send the form again.' => 'Ongeldig CSRF token. Verstuur het formulier opnieuw.',
'Comment' => 'Commentaar', 'Comment' => 'Commentaar',
'Default values' => 'Standaard waarden', 'Default values' => 'Standaard waarden',
'BOOL' => 'BOOL',
'Show column comments' => 'Kolomcommentaar weergeven', 'Show column comments' => 'Kolomcommentaar weergeven',
'%d byte(s)' => array('%d byte', '%d bytes'), '%d byte(s)' => array('%d byte', '%d bytes'),
'No commands to execute.' => 'Geen opdrachten uit te voeren.', 'No commands to execute.' => 'Geen opdrachten uit te voeren.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Proceslijst', 'Process list' => 'Proceslijst',
'%d process(es) have been killed.' => array('%d proces gestopt.', '%d processen gestopt.'), '%d process(es) have been killed.' => array('%d proces gestopt.', '%d processen gestopt.'),
'Kill' => 'Stoppen', 'Kill' => 'Stoppen',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Parameternaam', 'Parameter name' => 'Parameternaam',
'Database schema' => 'Database schema', 'Database schema' => 'Database schema',
'Create procedure' => 'Procedure aanmaken', 'Create procedure' => 'Procedure aanmaken',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Войти', 'Login' => 'Войти',
'Adminer' => 'Adminer',
'Logout successful.' => 'Вы успешно покинули систему.', 'Logout successful.' => 'Вы успешно покинули систему.',
'Invalid credentials.' => 'Неправильное имя пользователя или пароль.', 'Invalid credentials.' => 'Неправильное имя пользователя или пароль.',
'Server' => 'Сервер', 'Server' => 'Сервер',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Название поля', 'Column name' => 'Название поля',
'Type' => 'Тип', 'Type' => 'Тип',
'Length' => 'Длина', 'Length' => 'Длина',
'NULL' => 'NULL',
'Auto Increment' => 'Автоматическое приращение', 'Auto Increment' => 'Автоматическое приращение',
'Options' => 'Действие', 'Options' => 'Действие',
'Save' => 'Сохранить', 'Save' => 'Сохранить',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Недействительный CSRF токен. Отправите форму ещё раз.', 'Invalid CSRF token. Send the form again.' => 'Недействительный CSRF токен. Отправите форму ещё раз.',
'Comment' => 'Комментарий', 'Comment' => 'Комментарий',
'Default values' => 'Значения по умолчанию', 'Default values' => 'Значения по умолчанию',
'BOOL' => 'Булев тип',
'Show column comments' => 'Показать комментарии к колонке', 'Show column comments' => 'Показать комментарии к колонке',
'%d byte(s)' => array('%d байт', '%d байта', '%d байтов'), '%d byte(s)' => array('%d байт', '%d байта', '%d байтов'),
'No commands to execute.' => 'Нет команд для выполнения.', 'No commands to execute.' => 'Нет команд для выполнения.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Список процессов', 'Process list' => 'Список процессов',
'%d process(es) have been killed.' => array('Был завершен %d процесс.', 'Было завершено %d процесса.', 'Было завершёно %d процессов.'), '%d process(es) have been killed.' => array('Был завершен %d процесс.', 'Было завершено %d процесса.', 'Было завершёно %d процессов.'),
'Kill' => 'Завершить', 'Kill' => 'Завершить',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Название параметра', 'Parameter name' => 'Название параметра',
'Database schema' => 'Схема базы данных', 'Database schema' => 'Схема базы данных',
'Create procedure' => 'Создать процедуру', 'Create procedure' => 'Создать процедуру',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => 'Prihlásiť sa', 'Login' => 'Prihlásiť sa',
'Adminer' => 'Adminer',
'Logout successful.' => 'Odhlásenie prebehlo v poriadku.', 'Logout successful.' => 'Odhlásenie prebehlo v poriadku.',
'Invalid credentials.' => 'Neplatné prihlasovacie údaje.', 'Invalid credentials.' => 'Neplatné prihlasovacie údaje.',
'Server' => 'Server', 'Server' => 'Server',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => 'Názov stĺpca', 'Column name' => 'Názov stĺpca',
'Type' => 'Typ', 'Type' => 'Typ',
'Length' => 'Dĺžka', 'Length' => 'Dĺžka',
'NULL' => 'NULL',
'Auto Increment' => 'Auto Increment', 'Auto Increment' => 'Auto Increment',
'Options' => 'Voľby', 'Options' => 'Voľby',
'Save' => 'Uložiť', 'Save' => 'Uložiť',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => 'Neplatný token CSRF. Odošlite formulár znova.', 'Invalid CSRF token. Send the form again.' => 'Neplatný token CSRF. Odošlite formulár znova.',
'Comment' => 'Komentár', 'Comment' => 'Komentár',
'Default values' => 'Východzie hodnoty', 'Default values' => 'Východzie hodnoty',
'BOOL' => 'BOOL',
'Show column comments' => 'Zobraziť komentáre stĺpcov', 'Show column comments' => 'Zobraziť komentáre stĺpcov',
'%d byte(s)' => array('%d bajt', '%d bajty', '%d bajtov'), '%d byte(s)' => array('%d bajt', '%d bajty', '%d bajtov'),
'No commands to execute.' => 'Žiadne príkazy na vykonanie.', 'No commands to execute.' => 'Žiadne príkazy na vykonanie.',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => 'Zoznam procesov', 'Process list' => 'Zoznam procesov',
'%d process(es) have been killed.' => array('Bol ukončený %d proces.', 'Boli ukončené %d procesy.', 'Bolo ukončených %d procesov.'), '%d process(es) have been killed.' => array('Bol ukončený %d proces.', 'Boli ukončené %d procesy.', 'Bolo ukončených %d procesov.'),
'Kill' => 'Ukončiť', 'Kill' => 'Ukončiť',
'IN-OUT' => 'IN-OUT',
'Parameter name' => 'Názov parametra', 'Parameter name' => 'Názov parametra',
'Database schema' => 'Schéma databázy', 'Database schema' => 'Schéma databázy',
'Create procedure' => 'Vytvoriť procedúru', 'Create procedure' => 'Vytvoriť procedúru',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => '登入', 'Login' => '登入',
'Adminer' => 'Adminer',
'Logout successful.' => '登出成功。', 'Logout successful.' => '登出成功。',
'Invalid credentials.' => '無效的憑證。', 'Invalid credentials.' => '無效的憑證。',
'Server' => '伺服器', 'Server' => '伺服器',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => '列名', 'Column name' => '列名',
'Type' => '類型', 'Type' => '類型',
'Length' => '長度', 'Length' => '長度',
'NULL' => 'NULL',
'Auto Increment' => '自動增加', 'Auto Increment' => '自動增加',
'Options' => '選項', 'Options' => '選項',
'Save' => '儲存', 'Save' => '儲存',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => '無效的 CSRF token。請重新發送表單。', 'Invalid CSRF token. Send the form again.' => '無效的 CSRF token。請重新發送表單。',
'Comment' => '註解', 'Comment' => '註解',
'Default values' => '預設值', 'Default values' => '預設值',
'BOOL' => 'BOOL',
'Show column comments' => '顯示列註解', 'Show column comments' => '顯示列註解',
'%d byte(s)' => '%d byte(s)', '%d byte(s)' => '%d byte(s)',
'No commands to execute.' => '沒有命令可執行。', 'No commands to execute.' => '沒有命令可執行。',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => '進程列表', 'Process list' => '進程列表',
'%d process(es) have been killed.' => '%d 個 Process(es) 被終止', '%d process(es) have been killed.' => '%d 個 Process(es) 被終止',
'Kill' => '終止', 'Kill' => '終止',
'IN-OUT' => 'IN-OUT',
'Parameter name' => '參數名稱', 'Parameter name' => '參數名稱',
'Database schema' => '資料庫架構', 'Database schema' => '資料庫架構',
'Create procedure' => '建立預存程序', 'Create procedure' => '建立預存程序',

View file

@ -1,7 +1,6 @@
<?php <?php
$translations = array( $translations = array(
'Login' => '登录', 'Login' => '登录',
'Adminer' => 'Adminer',
'Logout successful.' => '注销成功。', 'Logout successful.' => '注销成功。',
'Invalid credentials.' => '无效凭据。', 'Invalid credentials.' => '无效凭据。',
'Server' => '服务器', 'Server' => '服务器',
@ -20,7 +19,6 @@ $translations = array(
'Column name' => '列名', 'Column name' => '列名',
'Type' => '类型', 'Type' => '类型',
'Length' => '长度', 'Length' => '长度',
'NULL' => 'NULL',
'Auto Increment' => '自动增量', 'Auto Increment' => '自动增量',
'Options' => '选项', 'Options' => '选项',
'Save' => '保存', 'Save' => '保存',
@ -73,7 +71,6 @@ $translations = array(
'Invalid CSRF token. Send the form again.' => '无效 CSRF 令牌。重新发送表单。', 'Invalid CSRF token. Send the form again.' => '无效 CSRF 令牌。重新发送表单。',
'Comment' => '注释', 'Comment' => '注释',
'Default values' => '默认值', 'Default values' => '默认值',
'BOOL' => 'BOOL',
'Show column comments' => '显示列注释', 'Show column comments' => '显示列注释',
'%d byte(s)' => '%d 字节', '%d byte(s)' => '%d 字节',
'No commands to execute.' => '没有命令执行。', 'No commands to execute.' => '没有命令执行。',
@ -111,7 +108,6 @@ $translations = array(
'Process list' => '进程列表', 'Process list' => '进程列表',
'%d process(es) have been killed.' => '%d 个进程被终止', '%d process(es) have been killed.' => '%d 个进程被终止',
'Kill' => '终止', 'Kill' => '终止',
'IN-OUT' => 'IN-OUT',
'Parameter name' => '参数名', 'Parameter name' => '参数名',
'Database schema' => '数据库概要', 'Database schema' => '数据库概要',
'Create procedure' => '创建过程', 'Create procedure' => '创建过程',

View file

@ -62,7 +62,7 @@ foreach ($schema as $name => $table) {
echo "<div class='table' style='top: " . $table["pos"][0] . "em; left: " . $table["pos"][1] . "em;' onmousedown='schema_mousedown(this, event);'>"; echo "<div class='table' style='top: " . $table["pos"][0] . "em; left: " . $table["pos"][1] . "em;' onmousedown='schema_mousedown(this, event);'>";
echo '<a href="' . h(ME) . 'table=' . urlencode($name) . '"><strong>' . h($name) . "</strong></a><br>\n"; echo '<a href="' . h(ME) . 'table=' . urlencode($name) . '"><strong>' . h($name) . "</strong></a><br>\n";
foreach ($table["fields"] as $field) { foreach ($table["fields"] as $field) {
$val = '<span' . type_class($field["type"]) . ' title="' . h($field["full_type"] . ($field["null"] ? " " . lang('NULL') : '')) . '">' . h($field["field"]) . '</span>'; $val = '<span' . type_class($field["type"]) . ' title="' . h($field["full_type"] . ($field["null"] ? " NULL" : '')) . '">' . h($field["field"]) . '</span>';
echo ($field["primary"] ? "<em>$val</em>" : $val) . "<br>\n"; echo ($field["primary"] ? "<em>$val</em>" : $val) . "<br>\n";
} }
foreach ((array) $table["references"] as $target_name => $refs) { foreach ((array) $table["references"] as $target_name => $refs) {