diff options
author | Milan Crha <mcrha@redhat.com> | 2010-04-02 03:40:19 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-04-02 03:40:19 +0800 |
commit | b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6 (patch) | |
tree | c931eb292f3610cb9c5687260d56b660db176d47 /shell/e-shell.c | |
parent | 125573b8fd62f4d0d38907c95c70168ca984d3c4 (diff) | |
download | gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.gz gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.bz2 gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.lz gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.xz gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.zst gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.zip |
Bug #325121 - Do not translate developer strings in g_param_spec_*
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index f877bca4ec..ab7d683bed 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -799,8 +799,8 @@ e_shell_class_init (EShellClass *class) PROP_GEOMETRY, g_param_spec_string ( "geometry", - _("Geometry"), - _("Initial window geometry string"), + "Geometry", + "Initial window geometry string", NULL, G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY)); @@ -815,8 +815,8 @@ e_shell_class_init (EShellClass *class) PROP_MODULE_DIRECTORY, g_param_spec_string ( "module-directory", - _("Module Directory"), - _("The directory from which to load EModules"), + "Module Directory", + "The directory from which to load EModules", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); @@ -831,8 +831,8 @@ e_shell_class_init (EShellClass *class) PROP_NETWORK_AVAILABLE, g_param_spec_boolean ( "network-available", - _("Network Available"), - _("Whether the network is available"), + "Network Available", + "Whether the network is available", TRUE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); @@ -847,8 +847,8 @@ e_shell_class_init (EShellClass *class) PROP_ONLINE, g_param_spec_boolean ( "online", - _("Online"), - _("Whether the shell is online"), + "Online", + "Whether the shell is online", FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); @@ -863,8 +863,8 @@ e_shell_class_init (EShellClass *class) PROP_SHELL_SETTINGS, g_param_spec_object ( "shell-settings", - _("Shell Settings"), - _("Application-wide settings"), + "Shell Settings", + "Application-wide settings", E_TYPE_SHELL_SETTINGS, G_PARAM_READABLE)); |