aboutsummaryrefslogtreecommitdiffstats
path: root/admin/help.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-04-01 12:27:44 +0000
committerplegall <plg@piwigo.org>2010-04-01 12:27:44 +0000
commitfff1cd9d8e5613c1e34efc972c46e075f1adaf65 (patch)
tree15e40fcd4d9bbe54400d5aba7fc7db6264aa2909 /admin/help.php
parentdd22f7a26e7968afa6c59719744f08ca106c6894 (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 'admin/help.php')
-rw-r--r--admin/help.php16
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();