From 26a92b28014685ba477888a27a49195b8e077b75 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:45:37 +0200 Subject: [PATCH] Hopefully fix TRANS message not getting picked up by xgettext. --- lib/pluginlist.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pluginlist.php b/lib/pluginlist.php index 0bd1a15355..51c02aa245 100644 --- a/lib/pluginlist.php +++ b/lib/pluginlist.php @@ -192,8 +192,7 @@ class PluginListItem extends Widget } else { return array('name' => $this->plugin, // TRANS: Plugin description for a disabled plugin. - 'rawdescription' => _m('plugin-description', - '(Plugin descriptions unavailable when disabled.)')); + 'rawdescription' => _m('plugin-description','(The plugin description is unavailable when a plugin has been disabled.)')); } }