From ea076a8783048f4297238081858e0425a075944f Mon Sep 17 00:00:00 2001
From: abjectio <abjectio@kollektivet0x242.no>
Date: Wed, 10 Jun 2015 22:10:14 +0200
Subject: [PATCH] Bug in use of gettext/locale string

---
 plugins/ChooseTheme/actions/choosethemesettings.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/ChooseTheme/actions/choosethemesettings.php b/plugins/ChooseTheme/actions/choosethemesettings.php
index e284d8d231..97ef7229c9 100644
--- a/plugins/ChooseTheme/actions/choosethemesettings.php
+++ b/plugins/ChooseTheme/actions/choosethemesettings.php
@@ -80,7 +80,7 @@ class ChooseThemeSettingsAction extends SettingsAction {
 	$chosen_theme = $available_themes[(int)$this->arg('dwct','0')];
 		
         $this->success = true;
-        $this->msg = _('Settings saved.');
+        $this->msg = _m('Settings saved.');
 
 	$this->success = $this->scoped->setPref('chosen_theme', 'theme', $chosen_theme);
         // TRANS: Confirmation shown when user profile settings are saved.        
@@ -131,7 +131,7 @@ class ChooseThemeForm extends Form {
         $this->elementStart('fieldset');
         $this->elementStart('ul', 'form_data');
         $this->elementStart('li');
-        $this->dropdown('dwct','Themes',$available_themes,'Select a theme',false, $this->prefs);
+        $this->dropdown('dwct',_m('Themes'),$available_themes,_m('Select a theme'),false, $this->prefs);
         $this->elementEnd('li');
         $this->elementEnd('ul');
         $this->elementEnd('fieldset');
-- 
2.39.5