Skip to content

Commit

Permalink
Use ordered format string to ease work for translators
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Mar 14, 2012
1 parent 56de3e2 commit 2d354d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db_search.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ function PMA_getSearchSqls($table, $field, $search_str, $search_option)
$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) {
Expand Down

0 comments on commit 2d354d7

Please sign in to comment.