From 850c06e84e20d789b4d027016412f6900285acc8 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Aug 15 2011 16:42:39 +0000 Subject: Update `locale_updateMessagePObjects.sh': - Sanitate metadata inside PO file always, not just when it is created for first time. This is required in order to keep time information accurate therein. --- diff --git a/Scripts/Functions/Locale/locale_updateMessagePObjects.sh b/Scripts/Functions/Locale/locale_updateMessagePObjects.sh index 14908bc..416b5e2 100755 --- a/Scripts/Functions/Locale/locale_updateMessagePObjects.sh +++ b/Scripts/Functions/Locale/locale_updateMessagePObjects.sh @@ -54,11 +54,9 @@ function locale_updateMessagePObjects { msginit -i ${FILE}.pot -o ${FILE}.po --width=70 \ --no-translator 2> /dev/null - # Sanitate portable object metadata. This is the first time - # the portable object is created so some modifications are - # needed to customized metadata. - locale_updateMessageMetadata "${FILE}.po" - fi + # Sanitate metadata inside the PO file. + locale_updateMessageMetadata "${FILE}.po" + }