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 /modules/addressbook | |
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 'modules/addressbook')
-rw-r--r-- | modules/addressbook/e-book-shell-backend.c | 4 | ||||
-rw-r--r-- | modules/addressbook/e-book-shell-content.c | 12 | ||||
-rw-r--r-- | modules/addressbook/e-book-shell-sidebar.c | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/modules/addressbook/e-book-shell-backend.c b/modules/addressbook/e-book-shell-backend.c index 1166cd61c3..1a9c58befd 100644 --- a/modules/addressbook/e-book-shell-backend.c +++ b/modules/addressbook/e-book-shell-backend.c @@ -593,8 +593,8 @@ book_shell_backend_class_init (EBookShellBackendClass *class) PROP_SOURCE_LIST, g_param_spec_object ( "source-list", - _("Source List"), - _("The registry of address books"), + "Source List", + "The registry of address books", E_TYPE_SOURCE_LIST, G_PARAM_READABLE)); } diff --git a/modules/addressbook/e-book-shell-content.c b/modules/addressbook/e-book-shell-content.c index 9642627844..e83658a248 100644 --- a/modules/addressbook/e-book-shell-content.c +++ b/modules/addressbook/e-book-shell-content.c @@ -361,8 +361,8 @@ book_shell_content_class_init (EBookShellContentClass *class) PROP_CURRENT_VIEW, g_param_spec_object ( "current-view", - _("Current View"), - _("The currently selected address book view"), + "Current View", + "The currently selected address book view", E_TYPE_ADDRESSBOOK_VIEW, G_PARAM_READWRITE)); @@ -371,8 +371,8 @@ book_shell_content_class_init (EBookShellContentClass *class) PROP_PREVIEW_CONTACT, g_param_spec_object ( "preview-contact", - _("Previewed Contact"), - _("The contact being shown in the preview pane"), + "Previewed Contact", + "The contact being shown in the preview pane", E_TYPE_CONTACT, G_PARAM_READWRITE)); @@ -381,8 +381,8 @@ book_shell_content_class_init (EBookShellContentClass *class) PROP_PREVIEW_VISIBLE, g_param_spec_boolean ( "preview-visible", - _("Preview is Visible"), - _("Whether the preview pane is visible"), + "Preview is Visible", + "Whether the preview pane is visible", TRUE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); diff --git a/modules/addressbook/e-book-shell-sidebar.c b/modules/addressbook/e-book-shell-sidebar.c index 24a0997173..5ff6c2902c 100644 --- a/modules/addressbook/e-book-shell-sidebar.c +++ b/modules/addressbook/e-book-shell-sidebar.c @@ -178,8 +178,8 @@ book_shell_sidebar_class_init (EBookShellSidebarClass *class) PROP_SELECTOR, g_param_spec_object ( "selector", - _("Source Selector Widget"), - _("This widget displays groups of address books"), + "Source Selector Widget", + "This widget displays groups of address books", E_TYPE_SOURCE_SELECTOR, G_PARAM_READABLE)); } |