aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-04-02 03:40:19 +0800
committerMilan Crha <mcrha@redhat.com>2010-04-02 03:40:19 +0800
commitb2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6 (patch)
treec931eb292f3610cb9c5687260d56b660db176d47 /addressbook/gui/contact-list-editor
parent125573b8fd62f4d0d38907c95c70168ca984d3c4 (diff)
downloadgsoc2013-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 'addressbook/gui/contact-list-editor')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
index 23da590e72..c15a03c70c 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
@@ -1234,8 +1234,8 @@ contact_list_editor_class_init (EContactListEditorClass *class)
PROP_BOOK,
g_param_spec_object (
"book",
- _("Book"),
- /*_( */"XXX blurb" /*)*/,
+ "Book",
+ NULL,
E_TYPE_BOOK,
G_PARAM_READWRITE));
@@ -1244,8 +1244,8 @@ contact_list_editor_class_init (EContactListEditorClass *class)
PROP_CONTACT,
g_param_spec_object (
"contact",
- _("Contact"),
- /*_( */"XXX blurb" /*)*/,
+ "Contact",
+ NULL,
E_TYPE_CONTACT,
G_PARAM_READWRITE));
@@ -1254,8 +1254,8 @@ contact_list_editor_class_init (EContactListEditorClass *class)
PROP_IS_NEW_LIST,
g_param_spec_boolean (
"is_new_list",
- _("Is New List"),
- /*_( */"XXX blurb" /*)*/,
+ "Is New List",
+ NULL,
FALSE,
G_PARAM_READWRITE));
@@ -1264,8 +1264,8 @@ contact_list_editor_class_init (EContactListEditorClass *class)
PROP_EDITABLE,
g_param_spec_boolean (
"editable",
- _("Editable"),
- /*_( */"XXX blurb" /*)*/,
+ "Editable",
+ NULL,
FALSE,
G_PARAM_READWRITE));
}