[gnome-todo] project: don't translate properties' descriptions



commit 689d90389b0eecae3d9df352d41358efb437103d
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date:   Mon Aug 31 09:10:51 2015 -0300

    project: don't translate properties' descriptions
    
    Translators are sad. Never make 'em sad.

 src/gtd-edit-pane.c                 |    8 ++++----
 src/gtd-initial-setup-window.c      |    4 ++--
 src/gtd-manager.c                   |   12 ++++++------
 src/gtd-object.c                    |    8 ++++----
 src/gtd-task-list-item.c            |   12 ++++++------
 src/gtd-task-list-view.c            |   16 ++++++++--------
 src/gtd-task-list.c                 |   20 ++++++++++----------
 src/gtd-task-row.c                  |    8 ++++----
 src/gtd-task.c                      |   28 ++++++++++++++--------------
 src/gtd-window.c                    |    8 ++++----
 src/notification/gtd-notification.c |   16 ++++++++--------
 src/storage/gtd-storage-dialog.c    |    4 ++--
 src/storage/gtd-storage-goa.c       |    8 ++++----
 src/storage/gtd-storage-popover.c   |    4 ++--
 src/storage/gtd-storage-row.c       |    4 ++--
 src/storage/gtd-storage-selector.c  |   16 ++++++++--------
 src/storage/gtd-storage.c           |   20 ++++++++++----------
 17 files changed, 98 insertions(+), 98 deletions(-)
---
diff --git a/src/gtd-edit-pane.c b/src/gtd-edit-pane.c
index 34f8ebc..57095bc 100644
--- a/src/gtd-edit-pane.c
+++ b/src/gtd-edit-pane.c
@@ -260,8 +260,8 @@ gtd_edit_pane_class_init (GtdEditPaneClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of this application"),
-                             _("The manager of the application"),
+                             "Manager of this application",
+                             "The manager of the application",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
 
@@ -274,8 +274,8 @@ gtd_edit_pane_class_init (GtdEditPaneClass *klass)
         object_class,
         PROP_TASK,
         g_param_spec_object ("task",
-                             _("Task being edited"),
-                             _("The task that is actually being edited"),
+                             "Task being edited",
+                             "The task that is actually being edited",
                              GTD_TYPE_TASK,
                              G_PARAM_READWRITE));
 
diff --git a/src/gtd-initial-setup-window.c b/src/gtd-initial-setup-window.c
index 2f3cd60..7b155de 100644
--- a/src/gtd-initial-setup-window.c
+++ b/src/gtd-initial-setup-window.c
@@ -210,8 +210,8 @@ gtd_initial_setup_window_class_init (GtdInitialSetupWindowClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of the task"),
-                             _("The singleton manager instance of the task"),
+                             "Manager of the task",
+                             "The singleton manager instance of the task",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
diff --git a/src/gtd-manager.c b/src/gtd-manager.c
index df28f43..1f3579d 100644
--- a/src/gtd-manager.c
+++ b/src/gtd-manager.c
@@ -1136,8 +1136,8 @@ gtd_manager_class_init (GtdManagerClass *klass)
         object_class,
         PROP_GOA_CLIENT,
         g_param_spec_object ("goa-client",
-                            _("The online accounts client of the manager"),
-                            _("The read-only GNOME online accounts client loaded and owned by the manager"),
+                            "The online accounts client of the manager",
+                            "The read-only GNOME online accounts client loaded and owned by the manager",
                             GOA_TYPE_CLIENT,
                             G_PARAM_READABLE));
 
@@ -1150,8 +1150,8 @@ gtd_manager_class_init (GtdManagerClass *klass)
         object_class,
         PROP_GOA_CLIENT_READY,
         g_param_spec_boolean ("goa-client-ready",
-                              _("Whether GNOME Online Accounts client is ready"),
-                              _("Whether the read-only GNOME online accounts client is loaded"),
+                              "Whether GNOME Online Accounts client is ready",
+                              "Whether the read-only GNOME online accounts client is loaded",
                               FALSE,
                               G_PARAM_READABLE));
 
@@ -1164,8 +1164,8 @@ gtd_manager_class_init (GtdManagerClass *klass)
         object_class,
         PROP_SOURCE_REGISTRY,
         g_param_spec_object ("source-registry",
-                            _("The source registry of the manager"),
-                            _("The read-only source registry loaded and owned by the manager"),
+                            "The source registry of the manager",
+                            "The read-only source registry loaded and owned by the manager",
                             E_TYPE_SOURCE_REGISTRY,
                             G_PARAM_READABLE));
 
diff --git a/src/gtd-object.c b/src/gtd-object.c
index c9a053c..fc9c93b 100644
--- a/src/gtd-object.c
+++ b/src/gtd-object.c
@@ -149,8 +149,8 @@ gtd_object_class_init (GtdObjectClass *klass)
         object_class,
         PROP_UID,
         g_param_spec_string ("uid",
-                             _("Unique identifier of the object"),
-                             _("The unique identifier of the object, defined by the backend"),
+                             "Unique identifier of the object",
+                             "The unique identifier of the object, defined by the backend",
                              NULL,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
 
@@ -163,8 +163,8 @@ gtd_object_class_init (GtdObjectClass *klass)
         object_class,
         PROP_READY,
         g_param_spec_boolean ("ready",
-                              _("Ready state of the object"),
-                              _("Whether the object is marked as ready or not"),
+                              "Ready state of the object",
+                              "Whether the object is marked as ready or not",
                               TRUE,
                               G_PARAM_READWRITE));
 }
diff --git a/src/gtd-task-list-item.c b/src/gtd-task-list-item.c
index eea7760..9d9dac9 100644
--- a/src/gtd-task-list-item.c
+++ b/src/gtd-task-list-item.c
@@ -483,8 +483,8 @@ gtd_task_list_item_class_init (GtdTaskListItemClass *klass)
         object_class,
         PROP_MODE,
         g_param_spec_enum ("mode",
-                           _("Mode of this item"),
-                           _("The mode of this item, inherited from the parent's mode"),
+                           "Mode of this item",
+                           "The mode of this item, inherited from the parent's mode",
                            GTD_TYPE_WINDOW_MODE,
                            GTD_WINDOW_MODE_NORMAL,
                            G_PARAM_READWRITE));
@@ -498,8 +498,8 @@ gtd_task_list_item_class_init (GtdTaskListItemClass *klass)
         object_class,
         PROP_SELECTED,
         g_param_spec_boolean ("selected",
-                              _("Whether the task list is selected"),
-                              _("Whether the task list is selected when in selection mode"),
+                              "Whether the task list is selected",
+                              "Whether the task list is selected when in selection mode",
                               FALSE,
                               G_PARAM_READWRITE));
 
@@ -512,8 +512,8 @@ gtd_task_list_item_class_init (GtdTaskListItemClass *klass)
         object_class,
         PROP_TASK_LIST,
         g_param_spec_object ("task-list",
-                             _("Task list of the item"),
-                             _("The task list associated with this item"),
+                             "Task list of the item",
+                             "The task list associated with this item",
                              GTD_TYPE_TASK_LIST,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
diff --git a/src/gtd-task-list-view.c b/src/gtd-task-list-view.c
index de3dc63..da8068a 100644
--- a/src/gtd-task-list-view.c
+++ b/src/gtd-task-list-view.c
@@ -653,8 +653,8 @@ gtd_task_list_view_class_init (GtdTaskListViewClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of this window's application"),
-                             _("The manager of the window's application"),
+                             "Manager of this window's application",
+                             "The manager of the window's application",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE));
 
@@ -667,8 +667,8 @@ gtd_task_list_view_class_init (GtdTaskListViewClass *klass)
         object_class,
         PROP_READONLY,
         g_param_spec_boolean ("readonly",
-                              _("Whether the list is readonly"),
-                              _("Whether the list is readonly, i.e. doesn't show the New Task row, or not"),
+                              "Whether the list is readonly",
+                              "Whether the list is readonly, i.e. doesn't show the New Task row, or not",
                               TRUE,
                               G_PARAM_READWRITE));
 
@@ -681,8 +681,8 @@ gtd_task_list_view_class_init (GtdTaskListViewClass *klass)
         object_class,
         PROP_SHOW_LIST_NAME,
         g_param_spec_boolean ("show-list-name",
-                              _("Whether task rows show the list name"),
-                              _("Whether task rows show the list name at the end of the row"),
+                              "Whether task rows show the list name",
+                              "Whether task rows show the list name at the end of the row",
                               FALSE,
                               G_PARAM_READWRITE));
 
@@ -695,8 +695,8 @@ gtd_task_list_view_class_init (GtdTaskListViewClass *klass)
         object_class,
         PROP_SHOW_COMPLETED,
         g_param_spec_boolean ("show-completed",
-                              _("Whether completed tasks are shown"),
-                              _("Whether completed tasks are visible or not"),
+                              "Whether completed tasks are shown",
+                              "Whether completed tasks are visible or not",
                               FALSE,
                               G_PARAM_READWRITE));
 
diff --git a/src/gtd-task-list.c b/src/gtd-task-list.c
index b1ae6e8..d3326a2 100644
--- a/src/gtd-task-list.c
+++ b/src/gtd-task-list.c
@@ -261,8 +261,8 @@ gtd_task_list_class_init (GtdTaskListClass *klass)
         object_class,
         PROP_COLOR,
         g_param_spec_boxed ("color",
-                            _("Color of the list"),
-                            _("The color of the list"),
+                            "Color of the list",
+                            "The color of the list",
                             GDK_TYPE_RGBA,
                             G_PARAM_READWRITE));
 
@@ -275,8 +275,8 @@ gtd_task_list_class_init (GtdTaskListClass *klass)
         object_class,
         PROP_IS_REMOVABLE,
         g_param_spec_boolean ("is-removable",
-                              _("Whether the task list is removable"),
-                              _("Whether the task list can be removed from the system"),
+                              "Whether the task list is removable",
+                              "Whether the task list can be removed from the system",
                               TRUE,
                               G_PARAM_READABLE));
 
@@ -289,8 +289,8 @@ gtd_task_list_class_init (GtdTaskListClass *klass)
         object_class,
         PROP_NAME,
         g_param_spec_string ("name",
-                             _("Name of the list"),
-                             _("The name of the list"),
+                             "Name of the list",
+                             "The name of the list",
                              NULL,
                              G_PARAM_READWRITE));
 
@@ -303,8 +303,8 @@ gtd_task_list_class_init (GtdTaskListClass *klass)
         object_class,
         PROP_ORIGIN,
         g_param_spec_string ("origin",
-                             _("Data origin of the list"),
-                             _("The data origin location of the list"),
+                             "Data origin of the list",
+                             "The data origin location of the list",
                              NULL,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
@@ -317,8 +317,8 @@ gtd_task_list_class_init (GtdTaskListClass *klass)
         object_class,
         PROP_SOURCE,
         g_param_spec_object ("source",
-                             _("Source of the list"),
-                             _("The parent source that handles the list"),
+                             "Source of the list",
+                             "The parent source that handles the list",
                              E_TYPE_SOURCE,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
diff --git a/src/gtd-task-row.c b/src/gtd-task-row.c
index 3eafe32..91e7285 100644
--- a/src/gtd-task-row.c
+++ b/src/gtd-task-row.c
@@ -369,8 +369,8 @@ gtd_task_row_class_init (GtdTaskRowClass *klass)
           object_class,
           PROP_NEW_TASK_MODE,
           g_param_spec_boolean ("new-task-mode",
-                                _("If the row is used to add a new task"),
-                                _("Whether the row is used to add a new task"),
+                                "If the row is used to add a new task",
+                                "Whether the row is used to add a new task",
                                 FALSE,
                                 G_PARAM_READWRITE));
 
@@ -383,8 +383,8 @@ gtd_task_row_class_init (GtdTaskRowClass *klass)
           object_class,
           PROP_TASK,
           g_param_spec_object ("task",
-                               _("Task of the row"),
-                               _("The task that this row represents"),
+                               "Task of the row",
+                               "The task that this row represents",
                                GTD_TYPE_TASK,
                                G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
 
diff --git a/src/gtd-task.c b/src/gtd-task.c
index 6c06b4a..b84c836 100644
--- a/src/gtd-task.c
+++ b/src/gtd-task.c
@@ -251,8 +251,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_COMPLETE,
         g_param_spec_boolean ("complete",
-                              _("Whether the task is completed or not"),
-                              _("Whether the task is marked as completed by the user"),
+                              "Whether the task is completed or not",
+                              "Whether the task is marked as completed by the user",
                               FALSE,
                               G_PARAM_READWRITE));
 
@@ -265,8 +265,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_COMPONENT,
         g_param_spec_object ("component",
-                              _("Component of the task"),
-                              _("The #ECalComponent this task handles."),
+                              "Component of the task",
+                              "The #ECalComponent this task handles.",
                               E_TYPE_CAL_COMPONENT,
                               G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
@@ -279,8 +279,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_DESCRIPTION,
         g_param_spec_string ("description",
-                             _("Description of the task"),
-                             _("Optional string describing the task"),
+                             "Description of the task",
+                             "Optional string describing the task",
                              NULL,
                              G_PARAM_READWRITE));
 
@@ -294,8 +294,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_DUE_DATE,
         g_param_spec_boxed ("due-date",
-                            _("End date of the task"),
-                            _("The day the task is supposed to be completed"),
+                            "End date of the task",
+                            "The day the task is supposed to be completed",
                             G_TYPE_DATE_TIME,
                             G_PARAM_READWRITE));
 
@@ -308,8 +308,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_LIST,
         g_param_spec_object ("list",
-                             _("List of the task"),
-                             _("The list that owns this task"),
+                             "List of the task",
+                             "The list that owns this task",
                              GTD_TYPE_TASK_LIST,
                              G_PARAM_READWRITE));
 
@@ -322,8 +322,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_PRIORITY,
         g_param_spec_int ("priority",
-                          _("Priority of the task"),
-                          _("The priority of the task. 0 means no priority set, and tasks will be sorted 
alphabetically."),
+                          "Priority of the task",
+                          "The priority of the task. 0 means no priority set, and tasks will be sorted 
alphabetically.",
                           0,
                           G_MAXINT,
                           0,
@@ -338,8 +338,8 @@ gtd_task_class_init (GtdTaskClass *klass)
         object_class,
         PROP_TITLE,
         g_param_spec_string ("title",
-                             _("Title of the task"),
-                             _("The title of the task"),
+                             "Title of the task",
+                             "The title of the task",
                              NULL,
                              G_PARAM_READWRITE));
 }
diff --git a/src/gtd-window.c b/src/gtd-window.c
index 5277e5d..594c3ae 100644
--- a/src/gtd-window.c
+++ b/src/gtd-window.c
@@ -1050,8 +1050,8 @@ gtd_window_class_init (GtdWindowClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of this window's application"),
-                             _("The manager of the window's application"),
+                             "Manager of this window's application",
+                             "The manager of the window's application",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
@@ -1064,8 +1064,8 @@ gtd_window_class_init (GtdWindowClass *klass)
         object_class,
         PROP_MODE,
         g_param_spec_enum ("mode",
-                           _("Mode of this window"),
-                           _("The interaction mode of the window"),
+                           "Mode of this window",
+                           "The interaction mode of the window",
                            GTD_TYPE_WINDOW_MODE,
                            GTD_WINDOW_MODE_NORMAL,
                            G_PARAM_READWRITE));
diff --git a/src/notification/gtd-notification.c b/src/notification/gtd-notification.c
index 587c626..989e021 100644
--- a/src/notification/gtd-notification.c
+++ b/src/notification/gtd-notification.c
@@ -178,8 +178,8 @@ gtd_notification_class_init (GtdNotificationClass *klass)
         object_class,
         PROP_HAS_PRIMARY_ACTION,
         g_param_spec_boolean ("has-primary-action",
-                              _("Whether the notification has a primary action"),
-                              _("Whether the notification has the primary action, activated on timeout or 
dismiss"),
+                              "Whether the notification has a primary action",
+                              "Whether the notification has the primary action, activated on timeout or 
dismiss",
                               FALSE,
                               G_PARAM_READABLE | G_PARAM_EXPLICIT_NOTIFY));
 
@@ -193,8 +193,8 @@ gtd_notification_class_init (GtdNotificationClass *klass)
         object_class,
         PROP_HAS_SECONDARY_ACTION,
         g_param_spec_boolean ("has-secondary-action",
-                              _("Whether the notification has a secondary action"),
-                              _("Whether the notification has the secondary action, activated by the user"),
+                              "Whether the notification has a secondary action",
+                              "Whether the notification has the secondary action, activated by the user",
                               FALSE,
                               G_PARAM_READABLE | G_PARAM_EXPLICIT_NOTIFY));
 
@@ -207,8 +207,8 @@ gtd_notification_class_init (GtdNotificationClass *klass)
         object_class,
         PROP_SECONDARY_ACTION_NAME,
         g_param_spec_string ("secondary-action-name",
-                             _("Text of the secondary action button"),
-                             _("The text of the secondary action button"),
+                             "Text of the secondary action button",
+                             "The text of the secondary action button",
                              "",
                              G_PARAM_READWRITE));
 
@@ -221,8 +221,8 @@ gtd_notification_class_init (GtdNotificationClass *klass)
         object_class,
         PROP_TEXT,
         g_param_spec_string ("text",
-                             _("Notification message"),
-                             _("The main message of the notification"),
+                             "Notification message",
+                             "The main message of the notification",
                              "",
                              G_PARAM_READWRITE));
 
diff --git a/src/storage/gtd-storage-dialog.c b/src/storage/gtd-storage-dialog.c
index 6d93427..13ea469 100644
--- a/src/storage/gtd-storage-dialog.c
+++ b/src/storage/gtd-storage-dialog.c
@@ -147,8 +147,8 @@ gtd_storage_dialog_class_init (GtdStorageDialogClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of this window's application"),
-                             _("The manager of the window's application"),
+                             "Manager of this window's application",
+                             "The manager of the window's application",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE));
 
diff --git a/src/storage/gtd-storage-goa.c b/src/storage/gtd-storage-goa.c
index 7408688..e98b80f 100644
--- a/src/storage/gtd-storage-goa.c
+++ b/src/storage/gtd-storage-goa.c
@@ -219,8 +219,8 @@ gtd_storage_goa_class_init (GtdStorageGoaClass *klass)
         object_class,
         PROP_GOA_OBJECT,
         g_param_spec_object ("goa-object",
-                             _("GoaObject of the storage"),
-                             _("The GoaObject this storage location represents."),
+                             "GoaObject of the storage",
+                             "The GoaObject this storage location represents.",
                              GOA_TYPE_OBJECT,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
@@ -233,8 +233,8 @@ gtd_storage_goa_class_init (GtdStorageGoaClass *klass)
         object_class,
         PROP_PARENT,
         g_param_spec_string ("parent",
-                             _("Parent of the storage"),
-                             _("The parent source identifier of the storage location."),
+                             "Parent of the storage",
+                             "The parent source identifier of the storage location.",
                              NULL,
                              G_PARAM_READWRITE));
 }
diff --git a/src/storage/gtd-storage-popover.c b/src/storage/gtd-storage-popover.c
index 8fec77e..787e0f8 100644
--- a/src/storage/gtd-storage-popover.c
+++ b/src/storage/gtd-storage-popover.c
@@ -285,8 +285,8 @@ gtd_storage_popover_class_init (GtdStoragePopoverClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of this window's application"),
-                             _("The manager of the window's application"),
+                             "Manager of this window's application",
+                             "The manager of the window's application",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
 
diff --git a/src/storage/gtd-storage-row.c b/src/storage/gtd-storage-row.c
index 26a9498..ae6d25c 100644
--- a/src/storage/gtd-storage-row.c
+++ b/src/storage/gtd-storage-row.c
@@ -145,8 +145,8 @@ gtd_storage_row_class_init (GtdStorageRowClass *klass)
         object_class,
         PROP_STORAGE,
         g_param_spec_object ("storage",
-                             _("Storage of the row"),
-                             _("The storage that this row holds"),
+                             "Storage of the row",
+                             "The storage that this row holds",
                              GTD_TYPE_STORAGE,
                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
diff --git a/src/storage/gtd-storage-selector.c b/src/storage/gtd-storage-selector.c
index ac76a06..59d0afa 100644
--- a/src/storage/gtd-storage-selector.c
+++ b/src/storage/gtd-storage-selector.c
@@ -513,8 +513,8 @@ gtd_storage_selector_class_init (GtdStorageSelectorClass *klass)
         object_class,
         PROP_MANAGER,
         g_param_spec_object ("manager",
-                             _("Manager of this window's application"),
-                             _("The manager of the window's application"),
+                             "Manager of this window's application",
+                             "The manager of the window's application",
                              GTD_TYPE_MANAGER,
                              G_PARAM_READWRITE));
 
@@ -527,8 +527,8 @@ gtd_storage_selector_class_init (GtdStorageSelectorClass *klass)
         object_class,
         PROP_SHOW_LOCAL,
         g_param_spec_boolean ("show-local",
-                              _("Show local storage row"),
-                              _("Whether should show a local storage row instead of a checkbox"),
+                              "Show local storage row",
+                              "Whether should show a local storage row instead of a checkbox",
                               FALSE,
                               G_PARAM_READWRITE));
 
@@ -541,8 +541,8 @@ gtd_storage_selector_class_init (GtdStorageSelectorClass *klass)
         object_class,
         PROP_SHOW_STUB_ROWS,
         g_param_spec_boolean ("show-stub-rows",
-                              _("Show stub rows"),
-                              _("Whether should show stub rows for non-added accounts"),
+                              "Show stub rows",
+                              "Whether should show stub rows for non-added accounts",
                               TRUE,
                               G_PARAM_READWRITE));
 
@@ -555,8 +555,8 @@ gtd_storage_selector_class_init (GtdStorageSelectorClass *klass)
         object_class,
         PROP_SELECT_DEFAULT,
         g_param_spec_boolean ("select-default",
-                              _("Selects default storage row"),
-                              _("Whether should select the default storage row"),
+                              "Selects default storage row",
+                              "Whether should select the default storage row",
                               FALSE,
                               G_PARAM_READWRITE));
 
diff --git a/src/storage/gtd-storage.c b/src/storage/gtd-storage.c
index 73c0810..a6d7d9f 100644
--- a/src/storage/gtd-storage.c
+++ b/src/storage/gtd-storage.c
@@ -164,8 +164,8 @@ gtd_storage_class_init (GtdStorageClass *klass)
         object_class,
         PROP_ICON,
         g_param_spec_object ("icon",
-                             _("Icon of the storage"),
-                             _("The icon representing the storage location."),
+                             "Icon of the storage",
+                             "The icon representing the storage location.",
                              G_TYPE_ICON,
                              G_PARAM_READABLE));
 
@@ -178,8 +178,8 @@ gtd_storage_class_init (GtdStorageClass *klass)
         object_class,
         PROP_ID,
         g_param_spec_string ("id",
-                             _("Identifier of the storage"),
-                             _("The unique identifier of the storage location."),
+                             "Identifier of the storage",
+                             "The unique identifier of the storage location.",
                              NULL,
                              G_PARAM_READWRITE));
 
@@ -192,8 +192,8 @@ gtd_storage_class_init (GtdStorageClass *klass)
         object_class,
         PROP_IS_DEFAULT,
         g_param_spec_boolean ("is-default",
-                              _("Whether the storage is the default"),
-                              _("Whether the storage is the default storage location to be used."),
+                              "Whether the storage is the default",
+                              "Whether the storage is the default storage location to be used.",
                               FALSE,
                               G_PARAM_READWRITE));
 
@@ -206,8 +206,8 @@ gtd_storage_class_init (GtdStorageClass *klass)
         object_class,
         PROP_NAME,
         g_param_spec_string ("name",
-                             _("Name of the storage"),
-                             _("The user-visible name of the storage location."),
+                             "Name of the storage",
+                             "The user-visible name of the storage location.",
                              NULL,
                              G_PARAM_READWRITE));
 
@@ -220,8 +220,8 @@ gtd_storage_class_init (GtdStorageClass *klass)
         object_class,
         PROP_PROVIDER,
         g_param_spec_string ("provider",
-                             _("Name of the data provider of the storage"),
-                             _("The user-visible name of the data provider of the storage location."),
+                             "Name of the data provider of the storage",
+                             "The user-visible name of the data provider of the storage location.",
                              NULL,
                              G_PARAM_READWRITE));
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]