From 78adfc2e3a433eab16432895549cfb0af945b3b2 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 18 Oct 2010 07:54:08 +0200 Subject: [PATCH] Cancel link for multi-edit --- adminer/edit.inc.php | 3 +++ adminer/lang/cs.inc.php | 2 ++ 2 files changed, 5 insertions(+) diff --git a/adminer/edit.inc.php b/adminer/edit.inc.php index 1d23d12c..34399f1e 100644 --- a/adminer/edit.inc.php +++ b/adminer/edit.inc.php @@ -106,5 +106,8 @@ if ($fields) { if ($update) { echo "\n"; } +if (isset($_GET["select"])) { + echo "" . lang('Cancel') . "\n"; +} ?> diff --git a/adminer/lang/cs.inc.php b/adminer/lang/cs.inc.php index 4c91e62a..9f10c311 100644 --- a/adminer/lang/cs.inc.php +++ b/adminer/lang/cs.inc.php @@ -290,4 +290,6 @@ $translations = array( // function translation used in Editor 'now' => 'teď', + + 'Cancel' => 'Storno', );