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>2011-08-10 15:09:31 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-10 15:09:31 +0400
commitc8c9b7501c29cc7c65f17c7de7ef07470843112c (patch)
tree403b547a24d24cbc9afcd531613132035fc79f4c /server_binlog.php
parent20b688f43f3aaac50379e120d9dcf9d2e087c26e (diff)
Use pgettext for Next/Prev as it is needed for some translations (eg. Chinese)
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/server_binlog.php b/server_binlog.php
index 1b5545290a..e3ac8f45de 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -132,9 +132,9 @@ if ($pos > 0) {
echo '<a href="./server_binlog.php' . PMA_generate_common_url($this_url_params) . '"';
if ($GLOBALS['cfg']['NavigationBarIconic']) {
- echo ' title="' . __('Previous') . '">';
+ echo ' title="' . _pgettext('Previous page', 'Previous') . '">';
} else {
- echo '>' . __('Previous');
+ echo '>' . _pgettext('Previous page', 'Previous');
} // end if... else...
echo ' &lt; </a> - ';
}
@@ -167,9 +167,9 @@ if ($num_rows >= $GLOBALS['cfg']['MaxRows']) {
$this_url_params['pos'] = $pos + $GLOBALS['cfg']['MaxRows'];
echo ' - <a href="./server_binlog.php' . PMA_generate_common_url($this_url_params) . '"';
if ($GLOBALS['cfg']['NavigationBarIconic']) {
- echo ' title="' . __('Next') . '">';
+ echo ' title="' . _pgettext('Next page', 'Next') . '">';
} else {
- echo '>' . __('Next');
+ echo '>' . _pgettext('Next page', 'Next');
} // end if... else...
echo ' &gt; </a>';
}