Skip to content

Commit

Permalink
Update translations
Browse files Browse the repository at this point in the history
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1316 7c3ca157-0c34-0410-bff1-cbf682f78f5c
  • Loading branch information
jakubvrana committed Feb 17, 2010
1 parent db07325 commit 899e434
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion adminer/include/editing.inc.php
Expand Up @@ -112,7 +112,7 @@ function edit_type($key, $field, $collations, $foreign_keys = array()) {
<td><input name="<?php echo $key; ?>[length]" value="<?php echo h($field["length"]); ?>" size="3" onfocus="editingLengthFocus(this);">
<td><?php
echo "<select name='$key" . "[collation]'" . (ereg('(char|text|enum|set)$', $field["type"]) ? "" : " class='hidden'") . '><option value="">(' . lang('collation') . ')' . optionlist($collations, $field["collation"]) . '</select>';
echo ($unsigned ? " <select name='$key" . "[unsigned]'" . (!$field["type"] || ereg('(int|float|double|decimal)$', $field["type"]) ? "" : " class='hidden'") . '><option>' . optionlist($unsigned, $field["unsigned"]) . '</select>' : '');
echo ($unsigned ? "<select name='$key" . "[unsigned]'" . (!$field["type"] || ereg('(int|float|double|decimal)$', $field["type"]) ? "" : " class='hidden'") . '><option>' . optionlist($unsigned, $field["unsigned"]) . '</select>' : '');
}

/** Filter length value including enums
Expand Down
2 changes: 1 addition & 1 deletion adminer/include/export.inc.php
Expand Up @@ -167,7 +167,7 @@ function dump_data($table, $style, $select = "") {
}

function dump_headers($identifier, $multi_table = false) {
$filename = ($identifier != "" ? friendly_url($identifier) : "dump");
$filename = ($identifier != "" ? friendly_url($identifier) : "adminer");
$output = $_POST["output"];
$ext = ($_POST["format"] == "sql" ? "sql" : ($multi_table ? "tar" : "csv")); // multiple CSV packed to TAR
header("Content-Type: " .
Expand Down
2 changes: 1 addition & 1 deletion adminer/include/functions.inc.php
Expand Up @@ -490,7 +490,7 @@ function search_tables() {
foreach (table_status() as $table => $table_status) {
$name = $adminer->tableName($table_status);
if (isset($table_status["Engine"]) && $name != "" && (!$_POST["tables"] || in_array($table, $_POST["tables"]))) {
$result = $connection->query($q = "SELECT 1 FROM " . idf_escape($table) . " WHERE " . implode(" AND ", $adminer->selectSearchProcess(fields($table), array())) . " LIMIT 1");
$result = $connection->query("SELECT 1 FROM " . idf_escape($table) . " WHERE " . implode(" AND ", $adminer->selectSearchProcess(fields($table), array())) . " LIMIT 1");
if ($result->num_rows) {
if (!$found) {
echo "<ul>\n";
Expand Down
2 changes: 1 addition & 1 deletion adminer/include/lang.inc.php
Expand Up @@ -4,7 +4,7 @@
$langs = array(
'en' => 'English', // Jakub Vrána - http://php.vrana.cz
'cs' => 'Čeština', // Jakub Vrána - http://php.vrana.cz
'sk' => 'Slovenčina', // Ivan Suchy - http://www.ivansuchy.com
'sk' => 'Slovenčina', // Ivan Suchy - http://www.ivansuchy.com, Juraj Krivda - http://www.jstudio.cz
'nl' => 'Nederlands', // Maarten Balliauw - http://blog.maartenballiauw.be
'es' => 'Español', // Klemens Häckel - http://clickdimension.wordpress.com
'de' => 'Deutsch', // Klemens Häckel - http://clickdimension.wordpress.com
Expand Down
2 changes: 2 additions & 0 deletions adminer/lang/de.inc.php
Expand Up @@ -226,4 +226,6 @@
'%d e-mail(s) have been sent.' => array('%d e-mail abgeschickt.', '%d e-mails abgeschickt.'),
'Webserver file %s' => 'Webserver Datei %s',
'File does not exist.' => 'Datei existiert nicht.',
'%d in total' => '%d insgesamt',
'Permanent login' => 'Passwort speichern',
);
2 changes: 2 additions & 0 deletions adminer/lang/es.inc.php
Expand Up @@ -226,4 +226,6 @@
'%d e-mail(s) have been sent.' => array('%d email enviado.', '%d emails enviados.'),
'Webserver file %s' => 'Archivo de servidor web %s',
'File does not exist.' => 'Archivo no existe.',
'%d in total' => '%d en total',
'Permanent login' => 'Guardar contraseña',
);
2 changes: 2 additions & 0 deletions adminer/lang/et.inc.php
Expand Up @@ -226,4 +226,6 @@
'%d e-mail(s) have been sent.' => array('Saadetud kirju: %d.', 'Saadetud kirju: %d.'),
'Webserver file %s' => 'Fail serveris: %s',
'File does not exist.' => 'Faili ei leitud.',
'%d in total' => 'Kokku: %d',
'Permanent login' => 'Jäta mind meelde',
);
2 changes: 2 additions & 0 deletions adminer/lang/nl.inc.php
Expand Up @@ -226,4 +226,6 @@
'%d e-mail(s) have been sent.' => array('%d e-mail verzonden.', '%d e-mails verzonden.'),
'Webserver file %s' => 'Webserver bestand %s',
'File does not exist.' => 'Bestand niet gevonden.',
'%d in total' => '%d in totaal',
'Permanent login' => 'Blijf aangemeld',
);
2 changes: 2 additions & 0 deletions adminer/lang/ru.inc.php
Expand Up @@ -226,4 +226,6 @@
'%d e-mail(s) have been sent.' => array('Было отправлено %d письмо.', 'Было отправлено %d письма.', 'Было отправлено %d писем.'),
'Webserver file %s' => 'Файл %s на вебсервере',
'File does not exist.' => 'Такого файла не существует.',
'%d in total' => 'Всего %d',
'Permanent login' => 'Оставаться в системе',
);
2 changes: 2 additions & 0 deletions adminer/lang/sk.inc.php
Expand Up @@ -226,4 +226,6 @@
'Editor' => 'Editor',
'Webserver file %s' => 'Súbor %s na webovom serveri',
'File does not exist.' => 'Súbor neexistuje.',
'Permanent login' => 'Trvalé prihlásenie',
'%d in total' => '%d celkom',
);
2 changes: 2 additions & 0 deletions adminer/lang/zh-tw.inc.php
Expand Up @@ -226,4 +226,6 @@
'Webserver file %s' => '網頁伺服器檔案 %s',
'File does not exist.' => '檔案不存在',
'Item has been deleted.' => '該項目已被刪除',
'%d in total' => '總共 %d 個',
'Permanent login' => '永久登入',
);

0 comments on commit 899e434

Please sign in to comment.