From 1ba234a9b632234a524e180a4f5bb4e97e92de30 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 17 Aug 2008 11:02:44 -0400 Subject: make settings and search menus localisable darcs-hash:20080817150244-84dde-7f2e4dec226aa9754dfc970386e62076f952db72.gz --- lib/settingsaction.php | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'lib/settingsaction.php') diff --git a/lib/settingsaction.php b/lib/settingsaction.php index a71c9e9bc..33fec0f1d 100644 --- a/lib/settingsaction.php +++ b/lib/settingsaction.php @@ -79,35 +79,35 @@ class SettingsAction extends Action { function settings_menu() { # action => array('prompt', 'title') - static $menu = - array('profilesettings' => - array('Profile', - 'Change your profile settings'), - 'emailsettings' => - array('Email', - 'Change email handling'), - 'avatar' => - array('Avatar', - 'Upload a new profile image'), - 'password' => - array('Password', - 'Change your password'), - 'openidsettings' => - array('OpenID', - 'Add or remove OpenIDs'), - 'smssettings' => - array('SMS', - 'Updates by SMS'), - 'imsettings' => - array('IM', - 'Updates by instant messenger (IM)')); - + $menu = + array('profilesettings' => + array(_('Profile'), + _('Change your profile settings')), + 'emailsettings' => + array(_('Email'), + _('Change email handling')), + 'avatar' => + array(_('Avatar'), + _('Upload a new profile image')), + 'password' => + array(_('Password'), + _('Change your password')), + 'openidsettings' => + array(_('OpenID'), + _('Add or remove OpenIDs')), + 'smssettings' => + array(_('SMS'), + _('Updates by SMS')), + 'imsettings' => + array(_('IM'), + _('Updates by instant messenger (IM)'))); + $action = $this->trimmed('action'); common_element_start('ul', array('id' => 'nav_views')); foreach ($menu as $menuaction => $menudesc) { common_menu_item(common_local_url($menuaction), - _($menudesc[0]), - _($menudesc[1]), + $menudesc[0], + $menudesc[1], $action == $menuaction); } common_element_end('ul'); -- cgit v1.2.3-54-g00ecf