Drop translations from property names and descriptions

They're never used anywhere.

Closes: #155, #121
This commit is contained in:
Guido Günther
2020-05-29 07:38:11 +02:00
committed by Mohammed Sadiq
parent 0b35ca102a
commit 956916ae1f
13 changed files with 61 additions and 61 deletions

View File

@@ -186,8 +186,8 @@ calls_call_record_class_init (CallsCallRecordClass *klass)
props[PROP_ID] =
g_param_spec_uint ("id",
_("ID"),
_("The row ID"),
"ID",
"The row ID",
0, G_MAXUINT, 0,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
install (ID);
@@ -195,40 +195,40 @@ calls_call_record_class_init (CallsCallRecordClass *klass)
props[PROP_TARGET] =
g_param_spec_string ("target",
_("Target"),
_("The PTSN phone number or other address of the call"),
"Target",
"The PTSN phone number or other address of the call",
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
install (TARGET);
props[PROP_INBOUND] =
g_param_spec_boolean ("inbound",
_("Inbound"),
_("Whether the call was an inbound call"),
"Inbound",
"Whether the call was an inbound call",
FALSE,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
install (INBOUND);
props[PROP_START] =
g_param_spec_boxed ("start",
_("Start"),
_("Time stamp of the start of the call"),
"Start",
"Time stamp of the start of the call",
G_TYPE_DATE_TIME,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
install (START);
props[PROP_ANSWERED] =
g_param_spec_boxed ("answered",
_("Answered"),
_("Time stamp of when the call was answered"),
"Answered",
"Time stamp of when the call was answered",
G_TYPE_DATE_TIME,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
install (ANSWERED);
props[PROP_END] =
g_param_spec_boxed ("end",
_("End"),
_("Time stamp of the end of the call"),
"End",
"Time stamp of the end of the call",
G_TYPE_DATE_TIME,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
install (END);