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 691595 - Message not correctly marked for translation
Message not correctly marked for translation
Status: RESOLVED FIXED
Product: rygel
Classification: Applications
Component: librygel-server
git master
Other Linux
: Normal trivial
: ---
Assigned To: rygel-maint
rygel-maint
Depends on:
Blocks:
 
 
Reported: 2013-01-12 12:04 UTC by Theppitak Karoonboonyanan
Modified: 2013-01-25 15:48 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
server: Fix broken translation (1.23 KB, patch)
2013-01-25 15:47 UTC, Jens Georg
committed Details | Review

Description Theppitak Karoonboonyanan 2013-01-12 12:04:41 UTC
In src/librygel-server/rygel-item-updater.vala, Rygel.ItemUpdater::fetch_object() :-

        ...
        } else if (media_object.parent.restricted) {
            var msg = _("Metadata modification of object %s being a child " +
                        "of restricted object %s not allowed");
                     
            throw new ContentDirectoryError.RESTRICTED_PARENT
                                        (msg,
                                         media_object.id,
                                         media_object.parent.id);
        }
        ...

The message is only partially marked for translation in the POT:

#: ../src/librygel-server/rygel-item-updater.vala:195
#, c-format
msgid "Metadata modification of object %s being a child "
msgstr ""
Comment 1 Jens Georg 2013-01-12 12:11:24 UTC
Hrm. That used to work. Thanks, I'll have a look.
Comment 2 Jens Georg 2013-01-25 15:47:51 UTC
Created attachment 234421 [details] [review]
server: Fix broken translation
Comment 3 Jens Georg 2013-01-25 15:48:03 UTC
Attachment 234421 [details] pushed as 00b56ad - server: Fix broken translation