Don't localise property descriptions in calls-call and calls-origin properties
This commit is contained in:
committed by
Evangelos Ribeiro Tzaras
parent
4e7a0b8151
commit
0d8470597b
@@ -253,16 +253,16 @@ calls_dummy_call_class_init (CallsDummyCallClass *klass)
|
||||
|
||||
props[PROP_NUMBER_CONSTRUCTOR] =
|
||||
g_param_spec_string ("number-constructor",
|
||||
_("Number (constructor)"),
|
||||
_("The dialed number (dummy class constructor)"),
|
||||
"Number (constructor)",
|
||||
"The dialed number (dummy class constructor)",
|
||||
"+441234567890",
|
||||
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
||||
g_object_class_install_property (object_class, PROP_NUMBER_CONSTRUCTOR, props[PROP_NUMBER_CONSTRUCTOR]);
|
||||
|
||||
props[PROP_INBOUND_CONSTRUCTOR] =
|
||||
g_param_spec_boolean ("inbound-constructor",
|
||||
_("Inbound (constructor)"),
|
||||
_("Whether the calls is inbound (dummy class constructor)"),
|
||||
"Inbound (constructor)",
|
||||
"Whether the calls is inbound (dummy class constructor)",
|
||||
FALSE,
|
||||
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
||||
g_object_class_install_property (object_class, PROP_INBOUND_CONSTRUCTOR, props[PROP_INBOUND_CONSTRUCTOR]);
|
||||
|
||||
@@ -239,8 +239,8 @@ calls_dummy_origin_class_init (CallsDummyOriginClass *klass)
|
||||
|
||||
props[PROP_DUMMY_NAME_CONSTRUCTOR] =
|
||||
g_param_spec_string ("dummy-name-constructor",
|
||||
_("Name"),
|
||||
_("The name of the origin"),
|
||||
"Name",
|
||||
"The name of the origin",
|
||||
"Dummy origin",
|
||||
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
||||
g_object_class_install_property (object_class, PROP_DUMMY_NAME_CONSTRUCTOR, props[PROP_DUMMY_NAME_CONSTRUCTOR]);
|
||||
|
||||
Reference in New Issue
Block a user