i18n cleanup: (1) take strings that were very similar and make them identical, so there are fewer strings to translate. (2) unmark things that shouldn't've been marked for translation, such as the UTF-8 infinity symbol.

This commit is contained in:
Charles Kerr
2007-10-08 19:40:34 +00:00
parent e10e44409a
commit 0f1d9429b6
5 changed files with 17 additions and 18 deletions

View File

@@ -127,7 +127,7 @@ ratiostr(guint64 down, guint64 up) {
if(0 == down)
/* this is a UTF-8 infinity symbol */
return g_strdup(_("\xE2\x88\x9E"));
return g_strdup("\xE2\x88\x9E");
ratio = (double)up / (double)down;