GNOME Bugzilla – Bug 658206
gsocks5proxy.c has invalid gettext use
Last modified: 2011-09-18 14:52:13 UTC
#: ../gio/gsocks5proxy.c:289 #, c-format msgid "Hostname '%s' too long for SOCKSv5 protocol (maximum is %i bytes)" seems like it will always be "bytes" since %i will always be greater than 1, but some languages have more complex plural rules. Please don't fix this until after the release of 2.30.0.
ditto: #: ../gio/gsocks4aproxy.c:139 #, c-format msgid "SOCKSv4 implementation limits username to %i characters" this might be okay, though: #: ../gio/gsocks5proxy.c:208 #, c-format msgid "Username or password is too long for SOCKSv5 protocol (max. is %i)."
(In reply to comment #0) > msgid "Hostname '%s' too long for SOCKSv5 protocol (maximum is %i bytes)" > > seems like it will always be "bytes" since %i will always be greater than 1, > but some languages have more complex plural rules. not only will it always be greater than 1, it will always be exactly 255. wacky...
We've branched now, so feel free to land your favourite rewording in master.
fixed