mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user