Added i18n_noop around long unit format symbol strings to be parsed by poedit
authorGuilherme Maciel Ferreira <guilherme.maciel.ferreira@intra2net.com>
Thu, 3 Feb 2011 16:55:52 +0000 (17:55 +0100)
committerGuilherme Maciel Ferreira <guilherme.maciel.ferreira@intra2net.com>
Thu, 3 Feb 2011 16:55:52 +0000 (17:55 +0100)
src/stringfunc.cpp

index 6dc4928..03d362b 100644 (file)
@@ -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")
 };