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 <[EMAIL PROTECTED]> * 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); _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.