diff --git a/adminer/edit.inc.php b/adminer/edit.inc.php index ac47a0d6..2cb08b22 100644 --- a/adminer/edit.inc.php +++ b/adminer/edit.inc.php @@ -177,7 +177,7 @@ if ($fields) { echo "\n"; if (!isset($_GET["select"])) { echo "\n"; } diff --git a/adminer/lang/cs.inc.php b/adminer/lang/cs.inc.php index 830b99f3..b80042ca 100644 --- a/adminer/lang/cs.inc.php +++ b/adminer/lang/cs.inc.php @@ -262,6 +262,7 @@ $translations = array( 'Edit' => 'Upravit', 'Insert' => 'Vložit', 'Save' => 'Uložit', + 'Saving' => 'Ukládá se', 'Save and continue edit' => 'Uložit a pokračovat v editaci', 'Save and insert next' => 'Uložit a vložit další', 'Selected' => 'Označené', diff --git a/adminer/select.inc.php b/adminer/select.inc.php index 8b1579a5..1aba9dbe 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -457,7 +457,7 @@ if (!$columns && support("table")) { ); } echo (($found_rows === false ? count($rows) + 1 : $found_rows - $page * $limit) > $limit - ? ' ' . lang('Load more data') . '' + ? ' ' . lang('Load more data') . '' : '' ); } else { diff --git a/adminer/static/functions.js b/adminer/static/functions.js index a5ea770a..034b29fc 100644 --- a/adminer/static/functions.js +++ b/adminer/static/functions.js @@ -525,7 +525,7 @@ function ajaxForm(form, message, button) { } data = data.join('&'); - setHtml('message', message); + setHtml('message', '
'); var url = form.action; if (!/post/i.test(form.method)) { url = url.replace(/\?.*/, '') + '?' + data; @@ -615,8 +615,8 @@ function selectClick(td, event, text, warning) { /** Load and display next page in select * @param HTMLLinkElement -* @param string * @param number +* @param string * @return boolean */ function selectLoadMore(a, limit, loading) {