[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_4-5647-g6fb9c5b

Marc Delisle lem9 at users.sourceforge.net
Mon Jul 19 19:22:50 CEST 2010


The branch, master has been updated
       via  6fb9c5bb1498d740fd6e5de3f55fe8c115dfe160 (commit)
      from  d0106c29edc5eba444c984f74fabad51639b9315 (commit)


- Log -----------------------------------------------------------------
commit 6fb9c5bb1498d740fd6e5de3f55fe8c115dfe160
Author: Marc Delisle <marc at infomarc.info>
Date:   Mon Jul 19 13:22:42 2010 -0400

    more plural forms

-----------------------------------------------------------------------

Summary of changes:
 db_search.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/db_search.php b/db_search.php
index 627ac25..03e146f 100644
--- a/db_search.php
+++ b/db_search.php
@@ -257,7 +257,7 @@ if (isset($_REQUEST['submit_search'])) {
         $sql_query .= $newsearchsqls['select_count'];
 
         echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'
-            .'<td>' . sprintf(__('%s match(es) inside table <i>%s</i>'), $res_cnt,
+            .'<td>' . sprintf(_ngettext('%s match inside table <i>%s</i>', '%s matches inside table <i>%s</i>', $res_cnt), $res_cnt,
                 htmlspecialchars($each_table)) . "</td>\n";
 
         if ($res_cnt > 0) {
@@ -282,7 +282,7 @@ if (isset($_REQUEST['submit_search'])) {
     echo '</table>' . "\n";
 
     if (count($tables_selected) > 1) {
-        echo '<p>' . sprintf(__('<b>Total:</b> <i>%s</i> match(es)'),
+        echo '<p>' . sprintf(_ngettext('<b>Total:</b> <i>%s</i> match', '<b>Total:</b> <i>%s</i> matches', $num_search_result_total),
             $num_search_result_total) . '</p>' . "\n";
     }
 } // end 1.


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list