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.

File:
1 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 = '
Note: See TracChangeset for help on using the changeset viewer.