From 19145d5de487de39e28a1603a4caa5dd639eb52a Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Tue, 03 Jan 2012 13:36:15 -0500 Subject: [PATCH] Also read both variables in en_US template --- bin/exportgettext.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/exportgettext.sh b/bin/exportgettext.sh index 6a07ed2..9319e6e 100755 --- a/bin/exportgettext.sh +++ b/bin/exportgettext.sh @@ -106,7 +106,7 @@ } 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; -- Gitblit v1.9.1