Changeset 5559 for trunk/admin


Ignore:
Timestamp:
Apr 1, 2010, 11:11:14 PM (14 years ago)
Author:
plg
Message:

Fix missing keys: some keys have been removed by mistake during the massive
key conversion.

Remove some language keys that are really obsolete. I've updated the script
to convert language files to 2.1, I will apply "obsolete keys removal" process
in a 2nd step on other languages.

Location:
trunk/admin/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/c13y_internal.class.php

    r5215 r5559  
    104104    $c13y_users[$conf['guest_id']] = array(
    105105      'status' => 'guest',
    106       'l10n_non_existent' => 'c13y_guest_non_existent',
    107       'l10n_bad_status' => 'c13y_bad_guest_status');
     106      'l10n_non_existent' => 'Main "guest" user does not exist',
     107      'l10n_bad_status' => 'Main "guest" user status is incorrect');
    108108
    109109    if ($conf['guest_id'] != $conf['default_user_id'])
     
    111111      $c13y_users[$conf['default_user_id']] = array(
    112112        'password' => null,
    113         'l10n_non_existent' => 'c13y_default_non_existent');
     113        'l10n_non_existent' => 'Default user does not exist');
    114114    }
    115115
    116116    $c13y_users[$conf['webmaster_id']] = array(
    117117      'status' => 'webmaster',
    118       'l10n_non_existent' => 'c13y_webmaster_non_existent',
    119       'l10n_bad_status' => 'c13y_bad_webmaster_status');
     118      'l10n_non_existent' => 'Main "webmaster" user does not exist',
     119      'l10n_bad_status' => 'Main "webmaster" user status is incorrect');
    120120
    121121      $query = '
  • trunk/admin/include/functions_notification_by_mail.inc.php

    r5196 r5559  
    406406        set_user_on_env_nbm($nbm_user, true);
    407407
    408         $subject = '['.$conf['gallery_title'].']: '.($is_subscribe ? l10n('Unsubscribe from notification by mail'): l10n('Unsubscribe from notification by mail'));
     408        $subject = '['.$conf['gallery_title'].']: '.($is_subscribe ? l10n('Subscribe to notification by mail'): l10n('Unsubscribe from notification by mail'));
    409409
    410410        // Assign current var for nbm mail
Note: See TracChangeset for help on using the changeset viewer.