summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-02-04 12:35:48 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-02-04 12:35:48 +0000
commitbddba847f569f872aefa1618d2fe49d69f274c63 (patch)
treef8fb066c3e11821ea7179423de2a62c7fda97ab5 /modules
parent39d28bd43e4418632c1a755e9b948058f748a9f4 (diff)
downloadbrdo-bddba847f569f872aefa1618d2fe49d69f274c63.tar.gz
brdo-bddba847f569f872aefa1618d2fe49d69f274c63.tar.bz2
#216238 by theborg: theme descriptions were not translated properly (minor)
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 928412531..edfb2a926 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -2167,8 +2167,8 @@ function theme_system_themes_form($form) {
// Fetch info
$info = $form[$key]['info']['#value'];
-
- $description = $info['description'];
+ // Localize theme description.
+ $description = t($info['description']);
// Make sure it is compatible and render the checkbox if so.
if (isset($form['status']['#incompatible_themes_core'][$key])) {
unset($form['status'][$key]);