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-03-14 19:34:37 +0400
committerMichal Čihař <mcihar@suse.cz>2012-03-14 19:34:37 +0400
commit2d354d70f1d5fa2c27f4e6a2ebdac921ddb183f6 (patch)
treea0cda85197e7643ae0348878e9c9f2d7bd7e76ea /db_search.php
parent56de3e266882b3467bf82c90af2aa036b28227f0 (diff)
Use ordered format string to ease work for translators
Diffstat (limited to 'db_search.php')
-rw-r--r--db_search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_search.php b/db_search.php
index 68cb46302a..7c1ec19a6e 100644
--- a/db_search.php
+++ b/db_search.php
@@ -224,7 +224,7 @@ if (isset($_REQUEST['submit_search'])) {
$sql_query .= $newsearchsqls['select_count'];
echo '<tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">'
- .'<td>' . sprintf(_ngettext('%s match inside table <i>%s</i>', '%s matches inside table <i>%s</i>', $res_cnt), $res_cnt,
+ .'<td>' . sprintf(_ngettext('%1$s match inside table <i>%2$s</i>', '%1$s matches inside table <i>%2$s</i>', $res_cnt), $res_cnt,
htmlspecialchars($each_table)) . "</td>\n";
if ($res_cnt > 0) {