GNOME Bugzilla – Bug 611998
Do not use constant in gettext expressions
Last modified: 2010-03-15 08:15:49 UTC
In empathy-accounts.c, the following line is wrong (the constant is not expanded prior to gettext parsing): g_set_application_name (_(PACKAGE_NAME " Accounts")); You should instead use a printf syntax, something like: g_set_application_name(g_strdup_printf(_("%s Accounts), PACKAGE_NAME)) Warning: we are now in string-freeze period :-)
I expect this to be quite visible, hence critical.
This is actualy fixed in http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/separate-debug-window for which I requested an exception [1] 5 days ago but still didn't get approval... [1] http://mail.gnome.org/archives/release-team/2010-March/msg00013.html
(In reply to comment #2) > This is actualy fixed in > http://git.collabora.co.uk/?p=user/cassidy/empathy;a=shortlog;h=refs/heads/separate-debug-window > for which I requested an exception [1] 5 days ago but still didn't get > approval... Well, you received an answer which said to revert your previous freeze breaks first in http://mail.gnome.org/archives/release-team/2010-March/msg00027.html , then you asked if they could be let in in http://mail.gnome.org/archives/release-team/2010-March/msg00041.html . Probably best to send another message summarizing all your requests.
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.