diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-02-12 23:04:57 +0000 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@src.gnome.org> | 2009-02-12 23:04:57 +0000 |
commit | 74eaafd2fae8b387816d7030ca4c35de10466826 (patch) | |
tree | 03910b5abf5613e4db67b6f5cf930890f6865445 /src | |
parent | 2d6d7f7d1c6d86c10c39c2043f79622350ed271b (diff) | |
download | nautilus-74eaafd2fae8b387816d7030ca4c35de10466826.tar.gz |
require intltool 0.40.1. use C_() to handle translator comments. Patch by
2009-02-13 Cosimo Cecchi <cosimoc@gnome.org>
* configure.in: require intltool 0.40.1.
* src/file-manager/fm-properties-window.c
(value_field_update_internal): use C_() to handle translator
comments. Patch by A. Walton (#542658).
svn path=/trunk/; revision=14937
Diffstat (limited to 'src')
-rw-r--r-- | src/file-manager/fm-properties-window.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c index 9929920b7..fa5bc595c 100644 --- a/src/file-manager/fm-properties-window.c +++ b/src/file-manager/fm-properties-window.c @@ -1360,12 +1360,7 @@ value_field_update_internal (GtkLabel *label, inconsistent_string); if (strcmp (mime_type, inconsistent_string)) { tmp = attribute_value; - /* FIXME: we should use C_ () instead. See bug #542658. - * - * Translators: The text before the "|" is context to help you decide on - * the correct translation. Only translate the part after the pipe. - */ - attribute_value = g_strdup_printf (Q_("MIME type description (MIME type)|%s (%s)"), attribute_value, mime_type); + attribute_value = g_strdup_printf (C_("MIME type description (MIME type)", "%s (%s)"), attribute_value, mime_type); g_free (tmp); } g_free (mime_type); |