gettext conversion

This commit is contained in:
Marc Delisle
2010-05-11 13:05:43 -04:00
parent b22daddbb7
commit 7925c03896
70 changed files with 10302 additions and 9884 deletions

View File

@@ -313,7 +313,7 @@ if ($server > 0) {
require_once './libraries/relation.lib.php';
$cfgRelation = PMA_getRelationsParam();
if(!$cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
$message = PMA_Message::notice('strRelationNotWorking');
$message = PMA_Message::notice(__('The additional features for working with linked tables have been deactivated. To find out why click %shere%s.'));
$message->addParam('<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php?' . $common_url_query . '">', false);
$message->addParam('</a>', false);
/* Show error if user has configured something, notice elsewhere */
@@ -328,7 +328,7 @@ if ($server > 0) {
* Show warning when javascript support is missing.
*/
echo '<noscript>';
$message = PMA_Message::notice('strJavascriptDisabled');
$message = PMA_Message::notice(__('Javascript support is missing or disabled in your browser, some phpMyAdmin functionality will be missing. For example navigation frame will not refresh automatically.'));
$message->isError(true);
$message->display();
echo '</noscript>';