gdm r5782 - in trunk: . daemon



Author: halfline
Date: Mon Feb 18 01:35:38 2008
New Revision: 5782
URL: http://svn.gnome.org/viewvc/gdm?rev=5782&view=rev

Log:
2008-02-15  Ray Strode  <rstrode redhat com>

	* daemon/gdm-session-settings.c
	(gdm_session_settings_class_init):
	Don't mark property strings for translation,
	it breaks string freeze


Modified:
   trunk/ChangeLog
   trunk/daemon/gdm-session-settings.c

Modified: trunk/daemon/gdm-session-settings.c
==============================================================================
--- trunk/daemon/gdm-session-settings.c	(original)
+++ trunk/daemon/gdm-session-settings.c	Mon Feb 18 01:35:38 2008
@@ -85,13 +85,13 @@
         object_class->set_property = gdm_session_settings_set_property;
         object_class->get_property = gdm_session_settings_get_property;
 
-        param_spec = g_param_spec_string ("session-name", _("Session Name"),
-                                        _("The name of the session"),
+        param_spec = g_param_spec_string ("session-name", "Session Name",
+                                        "The name of the session",
                                         NULL, G_PARAM_READWRITE);
         g_object_class_install_property (object_class, PROP_SESSION_NAME, param_spec);
 
-        param_spec = g_param_spec_string ("language-name", _("Language Name"),
-                                        _("The name of the language"),
+        param_spec = g_param_spec_string ("language-name", "Language Name",
+                                        "The name of the language",
                                         NULL,
                                        G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
         g_object_class_install_property (object_class, PROP_LANGUAGE_NAME, param_spec);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]