From 11b926cf68c84ac0bb191a526892a6763bb13064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 9 Jul 2013 12:14:51 +0200 Subject: [PATCH] Include comma in translatable message --- libraries/TableSearch.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/TableSearch.class.php b/libraries/TableSearch.class.php index f952418410..adaa3f10f8 100644 --- a/libraries/TableSearch.class.php +++ b/libraries/TableSearch.class.php @@ -1268,12 +1268,12 @@ EOT; */ function _getSearchAndReplaceHTML() { - $htmlOutput = __('Find') - . ': '; - $htmlOutput .= __('Replace with') - . ': '; + $htmlOutput = __('Find:') + . ''; + $htmlOutput .= __('Replace with:') + . ''; - $htmlOutput .= __('Column') . ': '; for ($i = 0; $i < count($this->_columnNames); $i++) { $type = preg_replace('@\(.*@s', '', $this->_columnTypes[$i]); if ($GLOBALS['PMA_Types']->getTypeClass($type) == 'CHAR') {