From 5cb766b94fd04442ee50aa866755c4b60e6c1be5 Mon Sep 17 00:00:00 2001 From: Guilherme Maciel Ferreira Date: Thu, 3 Feb 2011 17:55:52 +0100 Subject: [PATCH] Added i18n_noop around long unit format symbol strings to be parsed by poedit --- src/stringfunc.cpp | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) 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") }; -- 1.7.1