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 /e-util | |
parent | 125573b8fd62f4d0d38907c95c70168ca984d3c4 (diff) | |
download | gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.gz gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.zst gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.zip |
Bug #325121 - Do not translate developer strings in g_param_spec_*
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-logger.c | 4 | ||||
-rw-r--r-- | e-util/e-module.c | 4 | ||||
-rw-r--r-- | e-util/e-plugin.c | 4 | ||||
-rw-r--r-- | e-util/e-text-event-processor.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/e-util/e-logger.c b/e-util/e-logger.c index dd151b6009..fa2d548b23 100644 --- a/e-util/e-logger.c +++ b/e-util/e-logger.c @@ -171,8 +171,8 @@ logger_class_init (ELoggerClass *class) PROP_NAME, g_param_spec_string ( "name", - _("Name"), - _("Name of the logger"), + "Name", + "Name of the logger", "anonymous", G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); diff --git a/e-util/e-module.c b/e-util/e-module.c index b61f5e7bdb..17c048e2d3 100644 --- a/e-util/e-module.c +++ b/e-util/e-module.c @@ -191,8 +191,8 @@ module_class_init (EModuleClass *class) PROP_FILENAME, g_param_spec_string ( "filename", - _("Filename"), - _("The filename of the module"), + "Filename", + "The filename of the module", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 453fdea643..2b85f61c84 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -292,8 +292,8 @@ ep_class_init (EPluginClass *class) EP_PROP_ENABLED, g_param_spec_boolean ( "enabled", - _("Enabled"), - _("Whether the plugin is enabled"), + "Enabled", + "Whether the plugin is enabled", TRUE, G_PARAM_READWRITE)); } diff --git a/e-util/e-text-event-processor.c b/e-util/e-text-event-processor.c index 870aeed58f..090b7e6b0e 100644 --- a/e-util/e-text-event-processor.c +++ b/e-util/e-text-event-processor.c @@ -73,8 +73,8 @@ e_text_event_processor_class_init (ETextEventProcessorClass *klass) g_object_class_install_property (object_class, PROP_ALLOW_NEWLINES, g_param_spec_boolean ("allow_newlines", - _( "Allow newlines" ), - _( "Allow newlines" ), + "Allow newlines", + "Allow newlines", FALSE, G_PARAM_READWRITE)); |