From fff1cd9d8e5613c1e34efc972c46e075f1adaf65 Mon Sep 17 00:00:00 2001 From: plegall Date: Thu, 1 Apr 2010 12:27:44 +0000 Subject: i18n: make language keys easier to detect in source code. git-svn-id: http://piwigo.org/svn/trunk@5527 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/help.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'admin/help.php') 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(); -- cgit v1.2.3