diff options
author | thomascube <thomas@roundcube.net> | 2012-01-03 18:36:15 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-03 18:36:15 +0000 |
commit | 19145d5de487de39e28a1603a4caa5dd639eb52a (patch) | |
tree | f38576c703bbb2119562fab5391405b8ba195603 /bin | |
parent | c5329337b7eaf5f1f3e23bc95a3460c9eadbe1a1 (diff) |
Also read both variables in en_US template
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/exportgettext.sh | 2 |
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; |