Don't localise property descriptions in calls-call and calls-origin properties

This commit is contained in:
Daniel Abrecht
2020-05-29 18:50:19 +00:00
committed by Evangelos Ribeiro Tzaras
parent 4e7a0b8151
commit 0d8470597b
6 changed files with 16 additions and 16 deletions

View File

@@ -357,16 +357,16 @@ calls_ofono_call_class_init (CallsOfonoCallClass *klass)
props[PROP_VOICE_CALL] =
g_param_spec_object ("voice-call",
_("Voice call"),
_("A GDBO proxy object for the underlying call object"),
"Voice call",
"A GDBO proxy object for the underlying call object",
GDBO_TYPE_VOICE_CALL,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_property (object_class, PROP_VOICE_CALL, props[PROP_VOICE_CALL]);
props[PROP_PROPERTIES] =
g_param_spec_variant ("properties",
_("Properties"),
_("The a{sv} dictionary of properties for the voice call object"),
"Properties",
"The a{sv} dictionary of properties for the voice call object",
G_VARIANT_TYPE_ARRAY,
NULL,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);

View File

@@ -534,8 +534,8 @@ calls_ofono_origin_class_init (CallsOfonoOriginClass *klass)
props[PROP_MODEM] =
g_param_spec_object ("modem",
_("Modem"),
_("A GDBO proxy object for the underlying modem object"),
"Modem",
"A GDBO proxy object for the underlying modem object",
GDBO_TYPE_MODEM,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_property (object_class, PROP_MODEM, props[PROP_MODEM]);