summaryrefslogtreecommitdiff
path: root/daemon/gdm-session-settings.c
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2008-02-18 01:35:38 +0000
committerRay Strode <halfline@src.gnome.org>2008-02-18 01:35:38 +0000
commitfbb670852aaae1f3bc2461adf92dc90706d25572 (patch)
tree51c5c72b76714dde4c518bf2285b9162f27ef9a6 /daemon/gdm-session-settings.c
parent865f3e89f11211666b4857f20e31dc3603eb754f (diff)
downloadgdm-fbb670852aaae1f3bc2461adf92dc90706d25572.tar.gz
Don't mark property strings for translation, it breaks string freeze
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 svn path=/trunk/; revision=5782
Diffstat (limited to 'daemon/gdm-session-settings.c')
-rw-r--r--daemon/gdm-session-settings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/gdm-session-settings.c b/daemon/gdm-session-settings.c
index c4b973a9..82a471c0 100644
--- a/daemon/gdm-session-settings.c
+++ b/daemon/gdm-session-settings.c
@@ -85,13 +85,13 @@ gdm_session_settings_class_install_properties (GdmSessionSettingsClass *settings
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);