summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooser.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-01-16 23:10:05 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-01-16 23:10:05 +0000
commit07d4d314b6e45daeb1bd22538aa7f057bcd37a65 (patch)
treea0d4c6086726f6a2428c08d70b5f10517bf11434 /gtk/gtkfilechooser.c
parentfb526d239af04183f5751f209c269d13b244de80 (diff)
downloadgtk+-07d4d314b6e45daeb1bd22538aa7f057bcd37a65.tar.gz
The first part of the fix for #114351 (see also gdk-pixbuf/ChangeLog and
Fri Jan 16 23:59:01 2004 Matthias Clasen <maclas@gmx.de> The first part of the fix for #114351 (see also gdk-pixbuf/ChangeLog and po/ChangeLog): * gtk/gtkintl.h: * gdk-pixbuf/gdk-pixbuf-i18n.h: * gdk/gdkintl.h: Define P_() for property blurbs and nicks. * gdk/gdkdisplaymanager.c: * gdk-pixbuf/gdk-pixbuf.c: * modules/input/gtkimcontextxim.c: * gtk/*.c: Mark property blurbs and nicks with P_(). * po/Makefile.in.in: Add --keyword=P_ to the xgettext invocation, since property blurbs and nicks are now marked with P_().
Diffstat (limited to 'gtk/gtkfilechooser.c')
-rw-r--r--gtk/gtkfilechooser.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/gtk/gtkfilechooser.c b/gtk/gtkfilechooser.c
index 30a2358634..516f24a3f1 100644
--- a/gtk/gtkfilechooser.c
+++ b/gtk/gtkfilechooser.c
@@ -89,64 +89,64 @@ gtk_file_chooser_class_init (gpointer g_iface)
g_object_interface_install_property (g_iface,
g_param_spec_enum ("action",
- _("Action"),
- _("The type of operation that the file selector is performing"),
+ P_("Action"),
+ P_("The type of operation that the file selector is performing"),
GTK_TYPE_FILE_CHOOSER_ACTION,
GTK_FILE_CHOOSER_ACTION_OPEN,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_object ("file-system",
- _("File System"),
- _("File system object to use"),
+ P_("File System"),
+ P_("File system object to use"),
GTK_TYPE_FILE_SYSTEM,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
g_object_interface_install_property (g_iface,
g_param_spec_object ("filter",
- _("Filter"),
- _("The current filter for selecting which files are displayed"),
+ P_("Filter"),
+ P_("The current filter for selecting which files are displayed"),
GTK_TYPE_FILE_FILTER,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("folder-mode",
- _("Folder Mode"),
- _("Whether to select folders rather than files"),
+ P_("Folder Mode"),
+ P_("Whether to select folders rather than files"),
FALSE,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("local-only",
- _("Local Only"),
- _("Whether the selected file(s) should be limited to local file: URLs"),
+ P_("Local Only"),
+ P_("Whether the selected file(s) should be limited to local file: URLs"),
TRUE,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_object ("preview-widget",
- _("Preview widget"),
- _("Application supplied widget for custom previews."),
+ P_("Preview widget"),
+ P_("Application supplied widget for custom previews."),
GTK_TYPE_WIDGET,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("preview-widget-active",
- _("Preview Widget Active"),
- _("Whether the application supplied widget for custom previews should be shown."),
+ P_("Preview Widget Active"),
+ P_("Whether the application supplied widget for custom previews should be shown."),
TRUE,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_object ("extra-widget",
- _("Extra widget"),
- _("Application supplied widget for extra options."),
+ P_("Extra widget"),
+ P_("Application supplied widget for extra options."),
GTK_TYPE_WIDGET,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("select-multiple",
- _("Select Multiple"),
- _("Whether to allow multiple files to be selected"),
+ P_("Select Multiple"),
+ P_("Whether to allow multiple files to be selected"),
FALSE,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("show-hidden",
- _("Show Hidden"),
- _("Whether the hidden files and folders should be displayed"),
+ P_("Show Hidden"),
+ P_("Whether the hidden files and folders should be displayed"),
FALSE,
G_PARAM_READWRITE));
}