After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 693534 - String not correctly formatted for l10n extraction
String not correctly formatted for l10n extraction
Status: RESOLVED FIXED
Product: gdk-pixbuf
Classification: Platform
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gdk-pixbuf-maint
gdk-pixbuf-maint
: 693535 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2013-02-10 17:17 UTC by Gil Forcada
Modified: 2013-02-10 22:36 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Gil Forcada 2013-02-10 17:17:43 UTC
The string[1] in gdk-pixbuf/io-jpeg.c (line 1279 right now) is not extracted correctly with l10n tools, as it's exported as:

msgid "Color profile has invalid length '%"

Thus is missing the closing single quote character.

I'm not sure how that's rendered when translated actually, because if the G_GSIZE_FORMAT is changed at runtime by some value, then the translation will not be used, as it will not match the string with the G_GSIZE_FORMAT already changed for some other value...



[1] _("Color profile has invalid length '%"G_GSIZE_FORMAT"'.")
Comment 1 Gil Forcada 2013-02-10 17:41:49 UTC
*** Bug 693535 has been marked as a duplicate of this bug. ***
Comment 2 Benjamin Otte (Company) 2013-02-10 21:29:04 UTC
fixed in git.
Comment 3 Gil Forcada 2013-02-10 22:36:13 UTC
Million thanks!