Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-11-15 12:47:25 +0400
committerMichal Čihař <mcihar@suse.cz>2012-11-15 12:47:25 +0400
commitffb01442cf4d4d5b585b1858d11144ec9550be01 (patch)
tree81b936b055ac133a6f7804e6204d8ebfe30fdea7 /tbl_indexes.php
parent88d6409f8f5fe647de8b50f11faf50fd281008a8 (diff)
Unify string for adding colums to index
Diffstat (limited to 'tbl_indexes.php')
-rw-r--r--tbl_indexes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_indexes.php b/tbl_indexes.php
index 12f4b9c0e9..c110e71863 100644
--- a/tbl_indexes.php
+++ b/tbl_indexes.php
@@ -326,7 +326,7 @@ if ($GLOBALS['is_ajax_request'] != true || ! empty($_REQUEST['ajax_page_request'
<?php
echo __('Or') . ' ';
printf(
- __('Add to index &nbsp;%s&nbsp;column(s)') . "\n",
+ __('Add %s column(s) to index') . "\n",
'<input type="text" name="added_fields" size="2" value="1" />'
);
echo '<input type="submit" name="add_fields" value="' . __('Go') . '" />' . "\n";
@@ -334,7 +334,7 @@ if ($GLOBALS['is_ajax_request'] != true || ! empty($_REQUEST['ajax_page_request'
</span>
<?php
} else {
- $btn_value = sprintf(__('Add %d column(s) to index'), 1);
+ $btn_value = sprintf(__('Add %s column(s) to index'), 1);
echo '<div class="slider"></div>';
echo '<div class="add_fields">';
echo '<input type="submit" value="' . $btn_value . '" />';