diff options
author | plegall <plg@piwigo.org> | 2010-04-01 12:27:44 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-04-01 12:27:44 +0000 |
commit | fff1cd9d8e5613c1e34efc972c46e075f1adaf65 (patch) | |
tree | 15e40fcd4d9bbe54400d5aba7fc7db6264aa2909 | |
parent | dd22f7a26e7968afa6c59719744f08ca106c6894 (diff) |
i18n: make language keys easier to detect in source code.
git-svn-id: http://piwigo.org/svn/trunk@5527 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/help.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/admin/help.php b/admin/help.php index e7b618e22..6547c998e 100644 --- a/admin/help.php +++ b/admin/help.php @@ -36,27 +36,27 @@ $help_section_title = null; $tabs = array( array( 'code' => 'add_photos', - 'label' => 'Add Photos', + 'label' => l10n('Add Photos'), ), array( 'code' => 'permissions', - 'label' => 'Permissions', + 'label' => l10n('Permissions'), ), array( 'code' => 'groups', - 'label' => 'Groups', + 'label' => l10n('Groups'), ), array( 'code' => 'user_upload', - 'label' => 'User Upload', + 'label' => l10n('User Upload'), ), array( 'code' => 'virtual_links', - 'label' => 'Virtual Links', + 'label' => l10n('Virtual Links'), ), array( 'code' => 'misc', - 'label' => 'Miscellaneous', + 'label' => l10n('Miscellaneous'), ), ); @@ -75,10 +75,10 @@ foreach ($tabs as $tab) if ($tab['code'] == $section) { $selected_tab = $tab['code']; - $help_section_title = l10n($tab['label']); + $help_section_title = $tab['label']; } - $tabsheet->add($tab['code'], l10n($tab['label']), $link.$tab['code']); + $tabsheet->add($tab['code'], $tab['label'], $link.$tab['code']); } $tabsheet->select($selected_tab); $tabsheet->assign(); |