Changeset 5527 for trunk/admin/help.php


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

i18n: make language keys easier to detect in source code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/help.php

    r5196 r5527  
    3737  array(
    3838    'code' => 'add_photos',
    39     'label' => 'Add Photos',
     39    'label' => l10n('Add Photos'),
    4040    ),
    4141  array(
    4242    'code' => 'permissions',
    43     'label' => 'Permissions',
     43    'label' => l10n('Permissions'),
    4444    ),
    4545  array(
    4646    'code' => 'groups',
    47     'label' => 'Groups',
     47    'label' => l10n('Groups'),
    4848    ),
    4949  array(
    5050    'code' => 'user_upload',
    51     'label' => 'User Upload',
     51    'label' => l10n('User Upload'),
    5252    ),
    5353  array(
    5454    'code' => 'virtual_links',
    55     'label' => 'Virtual Links',
     55    'label' => l10n('Virtual Links'),
    5656    ),
    5757  array(
    5858    'code' => 'misc',
    59     'label' => 'Miscellaneous',
     59    'label' => l10n('Miscellaneous'),
    6060    ),
    6161  );
     
    7676  {
    7777    $selected_tab = $tab['code'];
    78     $help_section_title = l10n($tab['label']);
     78    $help_section_title = $tab['label'];
    7979  }
    8080 
    81   $tabsheet->add($tab['code'], l10n($tab['label']), $link.$tab['code']);
     81  $tabsheet->add($tab['code'], $tab['label'], $link.$tab['code']);
    8282}
    8383$tabsheet->select($selected_tab);
Note: See TracChangeset for help on using the changeset viewer.