From: Guilherme Maciel Ferreira Date: Thu, 3 Feb 2011 16:55:52 +0000 (+0100) Subject: Added i18n_noop around long unit format symbol strings to be parsed by poedit X-Git-Tag: v2.6~86^2~4 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=5cb766b94fd04442ee50aa866755c4b60e6c1be5;p=libi2ncommon Added i18n_noop around long unit format symbol strings to be parsed by poedit --- diff --git a/src/stringfunc.cpp b/src/stringfunc.cpp index 6dc4928..03d362b 100644 --- a/src/stringfunc.cpp +++ b/src/stringfunc.cpp @@ -907,15 +907,15 @@ const string shortUnitFormatSymbols[MAX_UNIT_FORMAT_SYMBOLS] = { }; const string longUnitFormatSymbols[MAX_UNIT_FORMAT_SYMBOLS] = { - " Bytes", - " KBytes", - " MBytes", - " GBytes", - " TBytes", - " PBytes", - " EBytes", - " ZBytes", - " YBytes" + i18n_noop(" Bytes"), + i18n_noop(" KBytes"), + i18n_noop(" MBytes"), + i18n_noop(" GBytes"), + i18n_noop(" TBytes"), + i18n_noop(" PBytes"), + i18n_noop(" EBytes"), + i18n_noop(" ZBytes"), + i18n_noop(" YBytes") };