summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-01-03 18:36:15 +0000
committerthomascube <thomas@roundcube.net>2012-01-03 18:36:15 +0000
commit19145d5de487de39e28a1603a4caa5dd639eb52a (patch)
treef38576c703bbb2119562fab5391405b8ba195603 /bin
parentc5329337b7eaf5f1f3e23bc95a3460c9eadbe1a1 (diff)
Also read both variables in en_US template
Diffstat (limited to 'bin')
-rwxr-xr-xbin/exportgettext.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/exportgettext.sh b/bin/exportgettext.sh
index 6a07ed2f5..9319e6eb0 100755
--- a/bin/exportgettext.sh
+++ b/bin/exportgettext.sh
@@ -106,7 +106,7 @@ function load_en_US($fn)
}
else if (is_file($fn)) {
include($fn);
- $texts = array_merge($texts, (array)$labels);
+ $texts = array_merge($texts, (array)$labels, (array)$messages);
}
$GLOBALS['en_US'] = $texts;