Ignore:
Timestamp:
Mar 2, 2010, 3:54:22 PM (14 years ago)
Author:
nikrou
Message:

Feature 1451 : localization with gettext
Use php-gettext (developpement version rev43, because of php5.3) as fallback
Use native language (english) instead of key for translation
Keep directory en_UK for english customization
Need some refactoring for plurals

Todo : managing plugins in the same way

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions_upgrade.php

    r4325 r5021  
    128128
    129129    array_push($page['infos'],
    130       l10n('deactivated plugins').'<p><i>'.implode(', ', $plugins).'</i></p>');
     130      l10n('As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:').'<p><i>'.implode(', ', $plugins).'</i></p>');
    131131  }
    132132}
     
    175175  if ($row['password'] != $conf['pass_convert']($password))
    176176  {
    177     array_push($page['errors'], l10n('invalid_pwd'));
     177    array_push($page['errors'], l10n('Invalid password!'));
    178178  }
    179179  elseif ($row['status'] != 'admin' and $row['status'] != 'webmaster')
Note: See TracChangeset for help on using the changeset viewer.