summaryrefslogtreecommitdiff
path: root/libnautilus-extension
diff options
context:
space:
mode:
authorChristian Neumair <chris@gnome-de.org>2005-06-03 07:48:01 +0000
committerChristian Neumair <cneumair@src.gnome.org>2005-06-03 07:48:01 +0000
commit7dce6d40a1c4855cef9512385b77c38a2e636a64 (patch)
treea48245042a161ff9ea8158d51a6e7dac8c545b78 /libnautilus-extension
parent5738d25c7085b2e154ceb6a56bd8e8430ec53eb0 (diff)
downloadnautilus-7dce6d40a1c4855cef9512385b77c38a2e636a64.tar.gz
Don't mark object property names/descriptions for translation. Fixes
2005-06-03 Christian Neumair <chris@gnome-de.org> * libnautilus-extension/nautilus-column.c: (nautilus_column_class_init): * libnautilus-extension/nautilus-menu-item.c: (nautilus_menu_item_class_init): * libnautilus-extension/nautilus-property-page.c: (nautilus_property_page_class_init): * libnautilus-private/nautilus-icon-canvas-item.c: (nautilus_icon_canvas_item_class_init): * libnautilus-private/nautilus-icon-container.c: (nautilus_icon_container_class_init): * src/nautilus-window.c: (nautilus_window_class_init): Don't mark object property names/descriptions for translation. Fixes #135281.
Diffstat (limited to 'libnautilus-extension')
-rw-r--r--libnautilus-extension/nautilus-column.c20
-rw-r--r--libnautilus-extension/nautilus-menu-item.c24
-rw-r--r--libnautilus-extension/nautilus-property-page.c12
3 files changed, 28 insertions, 28 deletions
diff --git a/libnautilus-extension/nautilus-column.c b/libnautilus-extension/nautilus-column.c
index 1679f0ca8..5bcf30a96 100644
--- a/libnautilus-extension/nautilus-column.c
+++ b/libnautilus-extension/nautilus-column.c
@@ -172,37 +172,37 @@ nautilus_column_class_init (NautilusColumnClass *class)
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_NAME,
g_param_spec_string ("name",
- _("Name"),
- _("Name of the column"),
+ "Name",
+ "Name of the column",
NULL,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_ATTRIBUTE,
g_param_spec_string ("attribute",
- _("Attribute"),
- _("The attribute name to display"),
+ "Attribute",
+ "The attribute name to display",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_LABEL,
g_param_spec_string ("label",
- _("Label"),
- _("Label to display in the column"),
+ "Label",
+ "Label to display in the column",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_DESCRIPTION,
g_param_spec_string ("description",
- _("Description"),
- _("A user-visible description of the column"),
+ "Description",
+ "A user-visible description of the column",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_XALIGN,
g_param_spec_float ("xalign",
- _("xalign"),
- _("The x-alignment of the column"),
+ "xalign",
+ "The x-alignment of the column",
0.0,
1.0,
0.0,
diff --git a/libnautilus-extension/nautilus-menu-item.c b/libnautilus-extension/nautilus-menu-item.c
index 83a26e26e..b80c23172 100644
--- a/libnautilus-extension/nautilus-menu-item.c
+++ b/libnautilus-extension/nautilus-menu-item.c
@@ -203,44 +203,44 @@ nautilus_menu_item_class_init (NautilusMenuItemClass *class)
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_NAME,
g_param_spec_string ("name",
- _("Name"),
- _("Name of the item"),
+ "Name",
+ "Name of the item",
NULL,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_LABEL,
g_param_spec_string ("label",
- _("Label"),
- _("Label to display to the user"),
+ "Label",
+ "Label to display to the user",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_TIP,
g_param_spec_string ("tip",
- _("Tip"),
- _("Tooltip for the menu item"),
+ "Tip",
+ "Tooltip for the menu item",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_ICON,
g_param_spec_string ("icon",
- _("Icon"),
- _("Name of the icon to display in the menu item"),
+ "Icon",
+ "Name of the icon to display in the menu item",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_SENSITIVE,
g_param_spec_boolean ("sensitive",
- _("Sensitive"),
- _("Whether the menu item is sensitive"),
+ "Sensitive",
+ "Whether the menu item is sensitive",
TRUE,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_PRIORITY,
g_param_spec_boolean ("priority",
- _("Priority"),
- _("Show priority text in toolbars"),
+ "Priority",
+ "Show priority text in toolbars",
TRUE,
G_PARAM_READWRITE));
}
diff --git a/libnautilus-extension/nautilus-property-page.c b/libnautilus-extension/nautilus-property-page.c
index e27a82b44..22da8f9c3 100644
--- a/libnautilus-extension/nautilus-property-page.c
+++ b/libnautilus-extension/nautilus-property-page.c
@@ -173,22 +173,22 @@ nautilus_property_page_class_init (NautilusPropertyPageClass *class)
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_NAME,
g_param_spec_string ("name",
- _("Name"),
- _("Name of the page"),
+ "Name",
+ "Name of the page",
NULL,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_LABEL,
g_param_spec_object ("label",
- _("Label"),
- _("Label widget to display in the notebook tab"),
+ "Label",
+ "Label widget to display in the notebook tab",
GTK_TYPE_WIDGET,
G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (class),
PROP_PAGE,
g_param_spec_object ("page",
- _("Page"),
- _("Widget for the property page"),
+ "Page",
+ "Widget for the property page",
GTK_TYPE_WIDGET,
G_PARAM_READWRITE));
}