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
This commit is contained in:
Christian Neumair 2008-07-21 15:29:02 +00:00 committed by Christian Neumair
parent b539c4aa65
commit 3045387ffa
3 changed files with 17 additions and 2 deletions

View file

@ -1,3 +1,10 @@
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:
@ -119,6 +126,14 @@
similar to nautilus_launch_desktop_file(). Fixes #543448.
Discovered by Kamil Páral.
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):

View file

@ -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 ==========================================================================

View file

@ -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);