aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-04 10:04:15 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-04 10:04:15 +0000
commitb30914a72c5efdadf76f376390b10452c39125c7 (patch)
tree287463e8c1e2dd1c457c1dfda35c0d0c339f91be /src/util
parent592b81029e325fd2444a5f5cc1abc24e357f1ebe (diff)
downloadgnunet-b30914a72c5efdadf76f376390b10452c39125c7.tar.gz
gnunet-b30914a72c5efdadf76f376390b10452c39125c7.zip
do not translate, ever
Diffstat (limited to 'src/util')
-rw-r--r--src/util/strings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/strings.c b/src/util/strings.c
index 3037c63a6..d48d552a1 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -147,19 +147,19 @@ GNUNET_STRINGS_byte_size_fancy (unsigned long long size)
147 if (size > 5 * 1024) 147 if (size > 5 * 1024)
148 { 148 {
149 size = size / 1024; 149 size = size / 1024;
150 unit = _( /* size unit */ "KiB"); 150 unit = "KiB";
151 if (size > 5 * 1024) 151 if (size > 5 * 1024)
152 { 152 {
153 size = size / 1024; 153 size = size / 1024;
154 unit = _( /* size unit */ "MiB"); 154 unit = "MiB";
155 if (size > 5 * 1024) 155 if (size > 5 * 1024)
156 { 156 {
157 size = size / 1024; 157 size = size / 1024;
158 unit = _( /* size unit */ "GiB"); 158 unit = "GiB";
159 if (size > 5 * 1024) 159 if (size > 5 * 1024)
160 { 160 {
161 size = size / 1024; 161 size = size / 1024;
162 unit = _( /* size unit */ "TiB"); 162 unit = "TiB";
163 } 163 }
164 } 164 }
165 } 165 }