The branch, master has been updated via 93255067eb137fca077a88b11b9e74798d21d64d (commit) from 56b8c5bf16d3eaf0833fa79497ef57cf7a1fd738 (commit)
- Log ----------------------------------------------------------------- commit 93255067eb137fca077a88b11b9e74798d21d64d Author: Michal Čihař michal@cihar.com Date: Tue Aug 23 10:37:31 2011 +0200
Clarify comment for translators, avoid duplicating message context
-----------------------------------------------------------------------
Summary of changes: libraries/common.lib.php | 12 +++--------- libraries/core.lib.php | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 833dd20..8ad946b 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -386,21 +386,15 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '', $ju if (defined('PMA_MYSQL_INT_VERSION')) { if (PMA_MYSQL_INT_VERSION >= 50500) { $mysql = '5.5'; - /* l10n: Language to use for MySQL 5.5 documentation, please - * use only languages which do exist in official documentation. - */ + /* l10n: Please check that translation actually exists. */ $lang = _pgettext('MySQL 5.5 documentation language', 'en'); } else if (PMA_MYSQL_INT_VERSION >= 50100) { $mysql = '5.1'; - /* l10n: Language to use for MySQL 5.1 documentation, please - * use only languages which do exist in official documentation. - */ + /* l10n: Please check that translation actually exists. */ $lang = _pgettext('MySQL 5.1 documentation language', 'en'); } else { $mysql = '5.0'; - /* l10n: Language to use for MySQL 5.0 documentation, please use - * only languages which do exist in official documentation. - */ + /* l10n: Please check that translation actually exists. */ $lang = _pgettext('MySQL 5.0 documentation language', 'en'); } } diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 3d561e6..6379336 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -241,7 +241,7 @@ function PMA_fatalError($error_message, $message_args = null) */ function PMA_getPHPDocLink($target) { - /* l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. */ + /* l10n: Please check that translation actually exists. */ $lang = _pgettext('PHP documentation language', 'en');
return 'http://php.net/manual/' . $lang . '/' . $target;
hooks/post-receive