summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Neumair <cneumair@gnome.org>2008-07-21 15:29:02 +0000
committerChristian Neumair <cneumair@src.gnome.org>2008-07-21 15:29:02 +0000
commit3045387ffa88000c96dbdc3ccaa5a7706d45e843 (patch)
treed1b626af4b7e62e8e7c4fd9e5c365112a75de256
parentb539c4aa653db6df59b2afbe84a13a58f84bb95d (diff)
downloadnautilus-3045387ffa88000c96dbdc3ccaa5a7706d45e843.tar.gz
Use C_() instead of Q_(). Require intltool 0.36.3.
2008-07-21 Christian Neumair <cneumair@gnome.org> * configure.in: * src/file-manager/fm-properties-window.c (value_field_update_internal): Use C_() instead of Q_(). Require intltool 0.36.3. svn path=/trunk/; revision=14394
-rw-r--r--ChangeLog15
-rw-r--r--configure.in2
-rw-r--r--src/file-manager/fm-properties-window.c2
3 files changed, 17 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 032511651..93cb5adb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
2008-07-21 Christian Neumair <cneumair@gnome.org>
* configure.in:
+ * src/file-manager/fm-properties-window.c
+ (value_field_update_internal):
+ Use C_() instead of Q_(). Require intltool 0.36.3.
+
+2008-07-21 Christian Neumair <cneumair@gnome.org>
+
+ * configure.in:
Allow to disable XMP support. Thanks to Mikel Olasagasti and Gilles
Dartiguelongue.
@@ -121,6 +128,14 @@
2008-07-16 A. Walton <awalton@gnome.org>
+ * configure.in:
+ * src/file-manager/fm-properties-window.c
+ (value_field_update_internal):
+ Migrate to Msgctxt using C_() instead of Q_().
+ Nautilus now requires intltool 0.36.3 or better.
+
+2008-07-16 A. Walton <awalton@gnome.org>
+
* src/file-manager/fm-properties-window.c (create_basic_page):
Small touchup to r14351 (bug #542658) caught by Claude Paroz.
diff --git a/configure.in b/configure.in
index 9726a49d4..cca3280c3 100644
--- a/configure.in
+++ b/configure.in
@@ -111,7 +111,7 @@ AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
AM_GLIB_GNU_GETTEXT
GLIB_DEFINE_LOCALEDIR(GNOMELOCALEDIR)
-IT_PROG_INTLTOOL([0.35.0])
+IT_PROG_INTLTOOL([0.36.3])
dnl ==========================================================================
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index c74015059..68d14816d 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -1360,7 +1360,7 @@ value_field_update_internal (GtkLabel *label,
inconsistent_string);
if (strcmp (mime_type, inconsistent_string)) {
tmp = attribute_value;
- 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);