summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-10-30 19:22:43 +0000
committerDarin Adler <darin@src.gnome.org>2000-10-30 19:22:43 +0000
commitd8d5d7bddc8f5da945cc3d0e900229285fa4efb4 (patch)
treef12872ba71d695a9d895a9fb13b5d43044198971
parent234699b8d35d0e6bff50495a25fc08270fe34b85 (diff)
downloadnautilus-d8d5d7bddc8f5da945cc3d0e900229285fa4efb4.tar.gz
Fixed bug 4057 (clicking the back button while opening a huge
directory often crashes). * libnautilus-extensions/nautilus-icon-container.c: (nautilus_icon_container_for_each): The function was iterating some icons twice. All the icons on the new_icons list are also on the icons list. (icon_destroy): Also be sure to remove the icon from the new_icons list if it happens to be destroyed while still on that list. * configure.in: * Makefile.shared: Got rid of the shared part of the code to generate .xml.h files. It's no longer needed since the po directory takes care of everything itself. * components/loser/content/Makefile.am: * components/loser/sidebar/Makefile.am: * components/mozilla/Makefile.am: * components/sample/Makefile.am: * components/services/summary/nautilus-view/Makefile.am: * libnautilus/Makefile.am: * src/Makefile.am: * src/file-manager/Makefile.am: Got rid of the per-directory part of the code to generate .xml.h files. * components/loser/content/nautilus-content-loser-ui.xml.h: * components/loser/sidebar/nautilus-sidebar-loser-ui.xml.h: * components/mozilla/nautilus-mozilla-ui.xml.h: * components/sample/nautilus-sample-content-view-ui.xml.h: * components/services/summary/nautilus-view/nautilus-summary-view-ui.xml.h: * libnautilus/nautilus-clipboard-ui.xml.h: * src/file-manager/nautilus-directory-view-ui.xml.h: * src/file-manager/nautilus-icon-view-ui.xml.h: * src/file-manager/nautilus-search-list-view-ui.xml.h: * src/nautilus-service-ui.xml.h: * src/nautilus-shell-ui.xml.h: Got rid of the checked-in copies of the .xml.h files. The worst part!
-rw-r--r--ChangeLog43
-rw-r--r--Makefile.shared3
-rw-r--r--components/loser/content/Makefile.am5
-rw-r--r--components/loser/content/nautilus-content-loser-ui.xml.h20
-rw-r--r--components/loser/sidebar/Makefile.am5
-rw-r--r--components/loser/sidebar/nautilus-sidebar-loser-ui.xml.h20
-rw-r--r--components/mozilla/Makefile.am7
-rw-r--r--components/mozilla/nautilus-mozilla-ui.xml.h23
-rw-r--r--components/sample/Makefile.am5
-rw-r--r--components/sample/nautilus-sample-content-view-ui.xml.h23
-rw-r--r--components/services/summary/nautilus-view/Makefile.am5
-rw-r--r--components/services/summary/nautilus-view/nautilus-summary-view-ui.xml.h32
-rw-r--r--configure.in6
-rw-r--r--libnautilus-extensions/nautilus-icon-container.c3
-rw-r--r--libnautilus-private/nautilus-icon-container.c3
-rw-r--r--libnautilus/Makefile.am6
-rw-r--r--libnautilus/nautilus-clipboard-ui.xml.h32
-rw-r--r--src/Makefile.am7
-rw-r--r--src/file-manager/Makefile.am8
-rw-r--r--src/file-manager/nautilus-directory-view-ui.xml.h83
-rw-r--r--src/file-manager/nautilus-icon-view-ui.xml.h89
-rw-r--r--src/file-manager/nautilus-search-list-view-ui.xml.h20
-rw-r--r--src/nautilus-service-ui.xml.h38
-rw-r--r--src/nautilus-shell-ui.xml.h288
24 files changed, 51 insertions, 723 deletions
diff --git a/ChangeLog b/ChangeLog
index 01d49b71c..de3b2613a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,46 @@
+2000-10-30 Darin Adler <darin@eazel.com>
+
+ Fixed bug 4057 (clicking the back button while opening a huge
+ directory often crashes).
+
+ * libnautilus-extensions/nautilus-icon-container.c:
+ (nautilus_icon_container_for_each): The function was iterating
+ some icons twice. All the icons on the new_icons list are also on
+ the icons list.
+ (icon_destroy): Also be sure to remove the icon from the new_icons
+ list if it happens to be destroyed while still on that list.
+
+ * configure.in:
+ * Makefile.shared:
+ Got rid of the shared part of the code to generate .xml.h
+ files. It's no longer needed since the po directory takes care of
+ everything itself.
+
+ * components/loser/content/Makefile.am:
+ * components/loser/sidebar/Makefile.am:
+ * components/mozilla/Makefile.am:
+ * components/sample/Makefile.am:
+ * components/services/summary/nautilus-view/Makefile.am:
+ * libnautilus/Makefile.am:
+ * src/Makefile.am:
+ * src/file-manager/Makefile.am:
+ Got rid of the per-directory part of the code to generate .xml.h
+ files.
+
+ * components/loser/content/nautilus-content-loser-ui.xml.h:
+ * components/loser/sidebar/nautilus-sidebar-loser-ui.xml.h:
+ * components/mozilla/nautilus-mozilla-ui.xml.h:
+ * components/sample/nautilus-sample-content-view-ui.xml.h:
+ * components/services/summary/nautilus-view/nautilus-summary-view-ui.xml.h:
+ * libnautilus/nautilus-clipboard-ui.xml.h:
+ * src/file-manager/nautilus-directory-view-ui.xml.h:
+ * src/file-manager/nautilus-icon-view-ui.xml.h:
+ * src/file-manager/nautilus-search-list-view-ui.xml.h:
+ * src/nautilus-service-ui.xml.h:
+ * src/nautilus-shell-ui.xml.h:
+ Got rid of the checked-in copies of the .xml.h files. The worst
+ part!
+
2000-10-30 J Shane Culpepper <pepper@eazel.com>
* components/services/summary/nautilus-view/nautilus-summary-view.c
diff --git a/Makefile.shared b/Makefile.shared
index ed20e0c12..86f0b1c02 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -1,4 +1 @@
NULL =
-
-%.xml.h: %.xml
- $(BONOBO_UI_EXTRACT) $^ > $@
diff --git a/components/loser/content/Makefile.am b/components/loser/content/Makefile.am
index d46e4ee3c..040db3837 100644
--- a/components/loser/content/Makefile.am
+++ b/components/loser/content/Makefile.am
@@ -18,7 +18,6 @@ oaf_DATA = nautilus-content-loser.oafinfo
uidir = $(datadir)/gnome/ui
ui_DATA = nautilus-content-loser-ui.xml
-ui_msgs = nautilus-content-loser-ui.xml.h
bin_PROGRAMS = \
nautilus-content-loser
@@ -37,6 +36,4 @@ nautilus_content_loser_LDADD = \
$(VFS_LIBS) \
$(OAF_LIBS)
-EXTRA_DIST = $(oaf_DATA) $(ui_DATA) $(ui_msgs)
-CLEANFILES = $(ui_msgs)
-BUILT_SOURCES = $(ui_msgs)
+EXTRA_DIST = $(oaf_DATA) $(ui_DATA)
diff --git a/components/loser/content/nautilus-content-loser-ui.xml.h b/components/loser/content/nautilus-content-loser-ui.xml.h
deleted file mode 100644
index 29ebb9d23..000000000
--- a/components/loser/content/nautilus-content-loser-ui.xml.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * This file is autogenerated from nautilus-content-loser-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Kill Content Loser");
-gchar *s = N_("Kill the Loser content view");
-gchar *s = N_("_File");
-gchar *s = N_("_Kill Content Loser");
-gchar *s = N_("Kill Content Loser");
-gchar *s = N_("Kill the Loser content view");
-gchar *s = N_("_File");
-gchar *s = N_("_Kill Content Loser");
-gchar *s = N_("Kill Content Loser");
-gchar *s = N_("Kill the Loser content view");
-gchar *s = N_("_File");
-gchar *s = N_("_Kill Content Loser");
diff --git a/components/loser/sidebar/Makefile.am b/components/loser/sidebar/Makefile.am
index 63fda1106..c7efe6b98 100644
--- a/components/loser/sidebar/Makefile.am
+++ b/components/loser/sidebar/Makefile.am
@@ -17,7 +17,6 @@ oaf_DATA = nautilus-sidebar-loser.oafinfo
uidir = $(datadir)/gnome/ui
ui_DATA = nautilus-sidebar-loser-ui.xml
-ui_msgs = nautilus-sidebar-loser-ui.xml.h
bin_PROGRAMS = \
nautilus-sidebar-loser
@@ -36,6 +35,4 @@ nautilus_sidebar_loser_LDADD = \
$(VFS_LIBS) \
$(OAF_LIBS)
-EXTRA_DIST = $(oaf_DATA) $(ui_DATA) $(ui_msgs)
-CLEANFILES = $(ui_msgs)
-BUILT_SOURCES = $(ui_msgs)
+EXTRA_DIST = $(oaf_DATA) $(ui_DATA)
diff --git a/components/loser/sidebar/nautilus-sidebar-loser-ui.xml.h b/components/loser/sidebar/nautilus-sidebar-loser-ui.xml.h
deleted file mode 100644
index 20480668d..000000000
--- a/components/loser/sidebar/nautilus-sidebar-loser-ui.xml.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * This file is autogenerated from nautilus-sidebar-loser-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Kill Sidebar Loser");
-gchar *s = N_("Kill the Loser sidebar panel");
-gchar *s = N_("_File");
-gchar *s = N_("_Kill Sidebar Loser");
-gchar *s = N_("Kill Sidebar Loser");
-gchar *s = N_("Kill the Loser sidebar panel");
-gchar *s = N_("_File");
-gchar *s = N_("_Kill Sidebar Loser");
-gchar *s = N_("Kill Sidebar Loser");
-gchar *s = N_("Kill the Loser sidebar panel");
-gchar *s = N_("_File");
-gchar *s = N_("_Kill Sidebar Loser");
diff --git a/components/mozilla/Makefile.am b/components/mozilla/Makefile.am
index 3deb87d95..c901764df 100644
--- a/components/mozilla/Makefile.am
+++ b/components/mozilla/Makefile.am
@@ -59,10 +59,5 @@ uidir = $(datadir)/gnome/ui
ui_DATA = \
nautilus-mozilla-ui.xml \
$(NULL)
-ui_msgs = \
- nautilus-mozilla-ui.xml.h \
- $(NULL)
-EXTRA_DIST = $(oaf_DATA) $(ui_DATA) $(ui_msgs)
-BUILT_SOURCES = $(ui_msgs)
-CLEANFILES = $(ui_msgs)
+EXTRA_DIST = $(oaf_DATA) $(ui_DATA)
diff --git a/components/mozilla/nautilus-mozilla-ui.xml.h b/components/mozilla/nautilus-mozilla-ui.xml.h
deleted file mode 100644
index 31ed291f5..000000000
--- a/components/mozilla/nautilus-mozilla-ui.xml.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * This file is autogenerated from nautilus-mozilla-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Mozilla Test");
-gchar *s = N_("This is a Mozilla merged menu item");
-gchar *s = N_("This is a Mozilla merged tool bar button");
-gchar *s = N_("_File");
-gchar *s = N_("_Mozilla Test");
-gchar *s = N_("Mozilla Test");
-gchar *s = N_("This is a Mozilla merged menu item");
-gchar *s = N_("This is a Mozilla merged tool bar button");
-gchar *s = N_("_File");
-gchar *s = N_("_Mozilla Test");
-gchar *s = N_("Mozilla Test");
-gchar *s = N_("This is a Mozilla merged menu item");
-gchar *s = N_("This is a Mozilla merged tool bar button");
-gchar *s = N_("_File");
-gchar *s = N_("_Mozilla Test");
diff --git a/components/sample/Makefile.am b/components/sample/Makefile.am
index b30f16e86..7c140ac6e 100644
--- a/components/sample/Makefile.am
+++ b/components/sample/Makefile.am
@@ -16,7 +16,6 @@ oaf_DATA = nautilus-sample-content-view.oafinfo
uidir = $(datadir)/gnome/ui
ui_DATA = nautilus-sample-content-view-ui.xml
-ui_msgs = nautilus-sample-content-view-ui.xml.h
bin_PROGRAMS = \
nautilus-sample-content-view
@@ -34,6 +33,4 @@ nautilus_sample_content_view_LDADD = \
$(VFS_LIBS) \
$(OAF_LIBS)
-EXTRA_DIST = $(oaf_DATA) $(ui_DATA) $(ui_msgs)
-BUILT_SOURCES = $(ui_msgs)
-CLEANFILES = $(ui_msgs)
+EXTRA_DIST = $(oaf_DATA) $(ui_DATA)
diff --git a/components/sample/nautilus-sample-content-view-ui.xml.h b/components/sample/nautilus-sample-content-view-ui.xml.h
deleted file mode 100644
index 6a4d7b5f4..000000000
--- a/components/sample/nautilus-sample-content-view-ui.xml.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * This file is autogenerated from nautilus-sample-content-view-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Sample");
-gchar *s = N_("This is a sample merged menu item");
-gchar *s = N_("This is a sample merged tool bar button");
-gchar *s = N_("_File");
-gchar *s = N_("_Sample");
-gchar *s = N_("Sample");
-gchar *s = N_("This is a sample merged menu item");
-gchar *s = N_("This is a sample merged tool bar button");
-gchar *s = N_("_File");
-gchar *s = N_("_Sample");
-gchar *s = N_("Sample");
-gchar *s = N_("This is a sample merged menu item");
-gchar *s = N_("This is a sample merged tool bar button");
-gchar *s = N_("_File");
-gchar *s = N_("_Sample");
diff --git a/components/services/summary/nautilus-view/Makefile.am b/components/services/summary/nautilus-view/Makefile.am
index 476cd6e1a..e48e306d9 100644
--- a/components/services/summary/nautilus-view/Makefile.am
+++ b/components/services/summary/nautilus-view/Makefile.am
@@ -22,7 +22,6 @@ oaf_DATA = nautilus-summary-view.oafinfo
uidir = $(datadir)/gnome/ui
ui_DATA = nautilus-summary-view-ui.xml
-ui_msgs = nautilus-summary-view-ui.xml.h
bin_PROGRAMS = \
nautilus-summary-view
@@ -48,6 +47,4 @@ nautilus_summary_view_LDADD = \
$(AMMONITE_LIBS) \
$(NULL)
-EXTRA_DIST = $(oaf_DATA) $(ui_DATA) $(ui_msgs)
-BUILT_SOURCES = $(ui_msgs)
-CLEANFILES = $(ui_msgs)
+EXTRA_DIST = $(oaf_DATA) $(ui_DATA)
diff --git a/components/services/summary/nautilus-view/nautilus-summary-view-ui.xml.h b/components/services/summary/nautilus-view/nautilus-summary-view-ui.xml.h
deleted file mode 100644
index 028742a31..000000000
--- a/components/services/summary/nautilus-view/nautilus-summary-view-ui.xml.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * This file is autogenerated from nautilus-summary-view-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Configure your service preferences");
-gchar *s = N_("Go to the Eazel Services Registration Form");
-gchar *s = N_("Log out from Eazel Services");
-gchar *s = N_("Service _Preferences");
-gchar *s = N_("Show the log-in dialog box");
-gchar *s = N_("_Log in to Eazel Services");
-gchar *s = N_("_Log out from Eazel Services");
-gchar *s = N_("_Register for Eazel Services");
-gchar *s = N_("Configure your service preferences");
-gchar *s = N_("Go to the Eazel Services Registration Form");
-gchar *s = N_("Log out from Eazel Services");
-gchar *s = N_("Service _Preferences");
-gchar *s = N_("Show the log-in dialog box");
-gchar *s = N_("_Log in to Eazel Services");
-gchar *s = N_("_Log out from Eazel Services");
-gchar *s = N_("_Register for Eazel Services");
-gchar *s = N_("Configure your service preferences");
-gchar *s = N_("Go to the Eazel Services Registration Form");
-gchar *s = N_("Log out from Eazel Services");
-gchar *s = N_("Service _Preferences");
-gchar *s = N_("Show the log-in dialog box");
-gchar *s = N_("_Log in to Eazel Services");
-gchar *s = N_("_Log out from Eazel Services");
-gchar *s = N_("_Register for Eazel Services");
diff --git a/configure.in b/configure.in
index e479ec709..825e5af04 100644
--- a/configure.in
+++ b/configure.in
@@ -592,12 +592,6 @@ AM_GNOME_GETTEXT
gnomelocaledir='${prefix}/${DATADIRNAME}/locale'
AC_SUBST(gnomelocaledir)
-AC_PATH_PROG(BONOBO_UI_EXTRACT, bonobo-ui-extract,no)
-
- if test x"BONOBO_UI_EXTRACT" = xno ; then
- AC_MSG_ERROR([You must have bonobo >= 0.21 installed to do translation work based on this package])
- fi
-
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
diff --git a/libnautilus-extensions/nautilus-icon-container.c b/libnautilus-extensions/nautilus-icon-container.c
index 5137691cd..b56fb2f95 100644
--- a/libnautilus-extensions/nautilus-icon-container.c
+++ b/libnautilus-extensions/nautilus-icon-container.c
@@ -3364,8 +3364,6 @@ nautilus_icon_container_for_each (NautilusIconContainer *container,
g_list_foreach (container->details->icons,
call_icon_callback, &callback_and_data);
- g_list_foreach (container->details->new_icons,
- call_icon_callback, &callback_and_data);
}
/* utility routine to remove a single icon from the container */
@@ -3380,6 +3378,7 @@ icon_destroy (NautilusIconContainer *container,
details = container->details;
details->icons = g_list_remove (details->icons, icon);
+ details->new_icons = g_list_remove (details->new_icons, icon);
was_selected = icon->is_selected;
diff --git a/libnautilus-private/nautilus-icon-container.c b/libnautilus-private/nautilus-icon-container.c
index 5137691cd..b56fb2f95 100644
--- a/libnautilus-private/nautilus-icon-container.c
+++ b/libnautilus-private/nautilus-icon-container.c
@@ -3364,8 +3364,6 @@ nautilus_icon_container_for_each (NautilusIconContainer *container,
g_list_foreach (container->details->icons,
call_icon_callback, &callback_and_data);
- g_list_foreach (container->details->new_icons,
- call_icon_callback, &callback_and_data);
}
/* utility routine to remove a single icon from the container */
@@ -3380,6 +3378,7 @@ icon_destroy (NautilusIconContainer *container,
details = container->details;
details->icons = g_list_remove (details->icons, icon);
+ details->new_icons = g_list_remove (details->new_icons, icon);
was_selected = icon->is_selected;
diff --git a/libnautilus/Makefile.am b/libnautilus/Makefile.am
index 68fc8ca41..b845e1135 100644
--- a/libnautilus/Makefile.am
+++ b/libnautilus/Makefile.am
@@ -75,13 +75,9 @@ uidir = $(datadir)/gnome/ui
ui_DATA = \
nautilus-clipboard-ui.xml \
$(NULL)
-ui_msgs = \
- nautilus-clipboard-ui.xml.h \
- $(NULL)
EXTRA_DIST = \
$(ui_DATA) \
- $(ui_msgs) \
nautilus-view-component.idl \
nautilus-distributed-undo.idl \
$(NULL)
@@ -89,7 +85,6 @@ EXTRA_DIST = \
BUILT_SOURCES = \
$(nautilus_view_component_idl_sources) \
$(nautilus_distributed_undo_idl_sources) \
- $(ui_msgs) \
$(NULL)
CLEANFILES = \
@@ -97,5 +92,4 @@ CLEANFILES = \
nautilus_view_component_idl_stamp \
$(nautilus_distributed_undo_idl_sources) \
nautilus_distributed_undo_idl_stamp \
- $(ui_msgs) \
$(NULL)
diff --git a/libnautilus/nautilus-clipboard-ui.xml.h b/libnautilus/nautilus-clipboard-ui.xml.h
deleted file mode 100644
index a1cd931bb..000000000
--- a/libnautilus/nautilus-clipboard-ui.xml.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * This file is autogenerated from nautilus-clipboard-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("C_lear Text");
-gchar *s = N_("Copy the selected text to the clipboard");
-gchar *s = N_("Cut the selected text to the clipboard");
-gchar *s = N_("Paste the text stored on the clipboard");
-gchar *s = N_("Remove the selected text without putting it on the clipboard");
-gchar *s = N_("_Copy Text");
-gchar *s = N_("_Cut Text");
-gchar *s = N_("_Paste Text");
-gchar *s = N_("C_lear Text");
-gchar *s = N_("Copy the selected text to the clipboard");
-gchar *s = N_("Cut the selected text to the clipboard");
-gchar *s = N_("Paste the text stored on the clipboard");
-gchar *s = N_("Remove the selected text without putting it on the clipboard");
-gchar *s = N_("_Copy Text");
-gchar *s = N_("_Cut Text");
-gchar *s = N_("_Paste Text");
-gchar *s = N_("C_lear Text");
-gchar *s = N_("Copy the selected text to the clipboard");
-gchar *s = N_("Cut the selected text to the clipboard");
-gchar *s = N_("Paste the text stored on the clipboard");
-gchar *s = N_("Remove the selected text without putting it on the clipboard");
-gchar *s = N_("_Copy Text");
-gchar *s = N_("_Cut Text");
-gchar *s = N_("_Paste Text");
diff --git a/src/Makefile.am b/src/Makefile.am
index 5e99f924b..810d63e63 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -153,21 +153,15 @@ ui_DATA = \
nautilus-service-ui.xml \
nautilus-shell-ui.xml \
$(NULL)
-ui_msgs = \
- nautilus-service-ui.xml.h \
- nautilus-shell-ui.xml.h \
- $(NULL)
CLEANFILES = \
$(nautilus_shell_interface_idl_sources) \
nautilus_shell_interface_idl_stamp \
- $(ui_msgs) \
$(NULL)
EXTRA_DIST = \
$(oaf_DATA) \
$(ui_DATA) \
- $(ui_msgs) \
check-nautilus \
nautilus-shell-interface.idl \
run-nautilus \
@@ -175,7 +169,6 @@ EXTRA_DIST = \
BUILT_SOURCES = \
$(nautilus_shell_interface_idl_sources) \
- $(ui_msgs) \
$(NULL)
install-data-hook: run-nautilus
diff --git a/src/file-manager/Makefile.am b/src/file-manager/Makefile.am
index b56006fde..317a5cda6 100644
--- a/src/file-manager/Makefile.am
+++ b/src/file-manager/Makefile.am
@@ -51,11 +51,5 @@ ui_DATA = \
nautilus-icon-view-ui.xml \
nautilus-search-list-view-ui.xml \
$(NULL)
-ui_msgs = nautilus-directory-view-ui.xml.h \
- nautilus-icon-view-ui.xml.h \
- nautilus-search-list-view-ui.xml.h \
- $(NULL)
-EXTRA_DIST = $(ui_DATA) $(ui_msgs)
-CLEANFILES = $(ui_msgs)
-BUILT_SOURCES = $(ui_msgs)
+EXTRA_DIST = $(ui_DATA)
diff --git a/src/file-manager/nautilus-directory-view-ui.xml.h b/src/file-manager/nautilus-directory-view-ui.xml.h
deleted file mode 100644
index 2874c854a..000000000
--- a/src/file-manager/nautilus-directory-view-ui.xml.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * This file is autogenerated from nautilus-directory-view-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Choose another application with which to open the selected item");
-gchar *s = N_("Choose another viewer with which to view the selected item");
-gchar *s = N_("Create _Link");
-gchar *s = N_("Create a new empty folder inside this folder");
-gchar *s = N_("Create a symbolic link for each selected item");
-gchar *s = N_("Delete all items in the trash");
-gchar *s = N_("Duplicate each selected item");
-gchar *s = N_("Move each selected item to the Trash");
-gchar *s = N_("Move to _Trash");
-gchar *s = N_("New Folder");
-gchar *s = N_("Open With");
-gchar *s = N_("Open each selected item in a new window");
-gchar *s = N_("Open the selected item in this window");
-gchar *s = N_("Other _Application...");
-gchar *s = N_("Other _Viewer...");
-gchar *s = N_("R_emove Custom Images");
-gchar *s = N_("Remove any custom images from selected icons");
-gchar *s = N_("Select all items in this window");
-gchar *s = N_("Show _Properties");
-gchar *s = N_("View or modify the properties of each selected item");
-gchar *s = N_("_Duplicate");
-gchar *s = N_("_Empty Trash");
-gchar *s = N_("_Open");
-gchar *s = N_("_Open in New Window");
-gchar *s = N_("_Select All Files");
-gchar *s = N_("Choose another application with which to open the selected item");
-gchar *s = N_("Choose another viewer with which to view the selected item");
-gchar *s = N_("Create _Link");
-gchar *s = N_("Create a new empty folder inside this folder");
-gchar *s = N_("Create a symbolic link for each selected item");
-gchar *s = N_("Delete all items in the trash");
-gchar *s = N_("Duplicate each selected item");
-gchar *s = N_("Move each selected item to the Trash");
-gchar *s = N_("Move to _Trash");
-gchar *s = N_("New Folder");
-gchar *s = N_("Open With");
-gchar *s = N_("Open each selected item in a new window");
-gchar *s = N_("Open the selected item in this window");
-gchar *s = N_("Other _Application...");
-gchar *s = N_("Other _Viewer...");
-gchar *s = N_("R_emove Custom Images");
-gchar *s = N_("Remove any custom images from selected icons");
-gchar *s = N_("Select all items in this window");
-gchar *s = N_("Show _Properties");
-gchar *s = N_("View or modify the properties of each selected item");
-gchar *s = N_("_Duplicate");
-gchar *s = N_("_Empty Trash");
-gchar *s = N_("_Open");
-gchar *s = N_("_Open in New Window");
-gchar *s = N_("_Select All Files");
-gchar *s = N_("Choose another application with which to open the selected item");
-gchar *s = N_("Choose another viewer with which to view the selected item");
-gchar *s = N_("Create _Link");
-gchar *s = N_("Create a new empty folder inside this folder");
-gchar *s = N_("Create a symbolic link for each selected item");
-gchar *s = N_("Delete all items in the trash");
-gchar *s = N_("Duplicate each selected item");
-gchar *s = N_("Move each selected item to the Trash");
-gchar *s = N_("Move to _Trash");
-gchar *s = N_("New Folder");
-gchar *s = N_("Open With");
-gchar *s = N_("Open each selected item in a new window");
-gchar *s = N_("Open the selected item in this window");
-gchar *s = N_("Other _Application...");
-gchar *s = N_("Other _Viewer...");
-gchar *s = N_("R_emove Custom Images");
-gchar *s = N_("Remove any custom images from selected icons");
-gchar *s = N_("Select all items in this window");
-gchar *s = N_("Show _Properties");
-gchar *s = N_("View or modify the properties of each selected item");
-gchar *s = N_("_Duplicate");
-gchar *s = N_("_Empty Trash");
-gchar *s = N_("_Open");
-gchar *s = N_("_Open in New Window");
-gchar *s = N_("_Select All Files");
diff --git a/src/file-manager/nautilus-icon-view-ui.xml.h b/src/file-manager/nautilus-icon-view-ui.xml.h
deleted file mode 100644
index 9b2bfe279..000000000
--- a/src/file-manager/nautilus-icon-view-ui.xml.h
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * This file is autogenerated from nautilus-icon-view-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Choose which information appears beneath each icon's name");
-gchar *s = N_("Display icons in the opposite order");
-gchar *s = N_("Keep icons sorted by emblems in rows");
-gchar *s = N_("Keep icons sorted by modification date in rows");
-gchar *s = N_("Keep icons sorted by name in rows");
-gchar *s = N_("Keep icons sorted by size in rows");
-gchar *s = N_("Keep icons sorted by type in rows");
-gchar *s = N_("Leave icons wherever they are dropped");
-gchar *s = N_("Make the selected icon stretchable");
-gchar *s = N_("Re_versed Order");
-gchar *s = N_("Rename selected icon");
-gchar *s = N_("Reposition icons to better fit in the window and avoid overlapping");
-gchar *s = N_("Restore each selected icon to its original size");
-gchar *s = N_("Toggle using a tighter layout scheme");
-gchar *s = N_("_Clean Up by Name");
-gchar *s = N_("_Icon Captions...");
-gchar *s = N_("_Lay out items");
-gchar *s = N_("_Rename");
-gchar *s = N_("_Restore Icons' Original Sizes");
-gchar *s = N_("_Stretch Icon");
-gchar *s = N_("_Tighter Layout");
-gchar *s = N_("_manually");
-gchar *s = N_("by Modification _Date");
-gchar *s = N_("by _Emblems");
-gchar *s = N_("by _Name");
-gchar *s = N_("by _Size");
-gchar *s = N_("by _Type");
-gchar *s = N_("Choose which information appears beneath each icon's name");
-gchar *s = N_("Display icons in the opposite order");
-gchar *s = N_("Keep icons sorted by emblems in rows");
-gchar *s = N_("Keep icons sorted by modification date in rows");
-gchar *s = N_("Keep icons sorted by name in rows");
-gchar *s = N_("Keep icons sorted by size in rows");
-gchar *s = N_("Keep icons sorted by type in rows");
-gchar *s = N_("Leave icons wherever they are dropped");
-gchar *s = N_("Make the selected icon stretchable");
-gchar *s = N_("Re_versed Order");
-gchar *s = N_("Rename selected icon");
-gchar *s = N_("Reposition icons to better fit in the window and avoid overlapping");
-gchar *s = N_("Restore each selected icon to its original size");
-gchar *s = N_("Toggle using a tighter layout scheme");
-gchar *s = N_("_Clean Up by Name");
-gchar *s = N_("_Icon Captions...");
-gchar *s = N_("_Lay out items");
-gchar *s = N_("_Rename");
-gchar *s = N_("_Restore Icons' Original Sizes");
-gchar *s = N_("_Stretch Icon");
-gchar *s = N_("_Tighter Layout");
-gchar *s = N_("_manually");
-gchar *s = N_("by Modification _Date");
-gchar *s = N_("by _Emblems");
-gchar *s = N_("by _Name");
-gchar *s = N_("by _Size");
-gchar *s = N_("by _Type");
-gchar *s = N_("Choose which information appears beneath each icon's name");
-gchar *s = N_("Display icons in the opposite order");
-gchar *s = N_("Keep icons sorted by emblems in rows");
-gchar *s = N_("Keep icons sorted by modification date in rows");
-gchar *s = N_("Keep icons sorted by name in rows");
-gchar *s = N_("Keep icons sorted by size in rows");
-gchar *s = N_("Keep icons sorted by type in rows");
-gchar *s = N_("Leave icons wherever they are dropped");
-gchar *s = N_("Make the selected icon stretchable");
-gchar *s = N_("Re_versed Order");
-gchar *s = N_("Rename selected icon");
-gchar *s = N_("Reposition icons to better fit in the window and avoid overlapping");
-gchar *s = N_("Restore each selected icon to its original size");
-gchar *s = N_("Toggle using a tighter layout scheme");
-gchar *s = N_("_Clean Up by Name");
-gchar *s = N_("_Icon Captions...");
-gchar *s = N_("_Lay out items");
-gchar *s = N_("_Rename");
-gchar *s = N_("_Restore Icons' Original Sizes");
-gchar *s = N_("_Stretch Icon");
-gchar *s = N_("_Tighter Layout");
-gchar *s = N_("_manually");
-gchar *s = N_("by Modification _Date");
-gchar *s = N_("by _Emblems");
-gchar *s = N_("by _Name");
-gchar *s = N_("by _Size");
-gchar *s = N_("by _Type");
diff --git a/src/file-manager/nautilus-search-list-view-ui.xml.h b/src/file-manager/nautilus-search-list-view-ui.xml.h
deleted file mode 100644
index 6797bfc8c..000000000
--- a/src/file-manager/nautilus-search-list-view-ui.xml.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * This file is autogenerated from nautilus-search-list-view-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Reveal each selected item in its original folder");
-gchar *s = N_("Show _Indexing Status");
-gchar *s = N_("Show status of indexing used by searching");
-gchar *s = N_("_Reveal in New Window");
-gchar *s = N_("Reveal each selected item in its original folder");
-gchar *s = N_("Show _Indexing Status");
-gchar *s = N_("Show status of indexing used by searching");
-gchar *s = N_("_Reveal in New Window");
-gchar *s = N_("Reveal each selected item in its original folder");
-gchar *s = N_("Show _Indexing Status");
-gchar *s = N_("Show status of indexing used by searching");
-gchar *s = N_("_Reveal in New Window");
diff --git a/src/nautilus-service-ui.xml.h b/src/nautilus-service-ui.xml.h
deleted file mode 100644
index f100eebc0..000000000
--- a/src/nautilus-service-ui.xml.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * This file is autogenerated from nautilus-service-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_("Display support information for Eazel Services");
-gchar *s = N_("Go to the Eazel Services Summary Page");
-gchar *s = N_("Go to the Eazel Software Catalog");
-gchar *s = N_("Go to your online storage repository");
-gchar *s = N_("Services");
-gchar *s = N_("Software _Catalog");
-gchar *s = N_("_Eazel Services Home");
-gchar *s = N_("_Online Storage");
-gchar *s = N_("_Services");
-gchar *s = N_("_Support");
-gchar *s = N_("Display support information for Eazel Services");
-gchar *s = N_("Go to the Eazel Services Summary Page");
-gchar *s = N_("Go to the Eazel Software Catalog");
-gchar *s = N_("Go to your online storage repository");
-gchar *s = N_("Services");
-gchar *s = N_("Software _Catalog");
-gchar *s = N_("_Eazel Services Home");
-gchar *s = N_("_Online Storage");
-gchar *s = N_("_Services");
-gchar *s = N_("_Support");
-gchar *s = N_("Display support information for Eazel Services");
-gchar *s = N_("Go to the Eazel Services Summary Page");
-gchar *s = N_("Go to the Eazel Software Catalog");
-gchar *s = N_("Go to your online storage repository");
-gchar *s = N_("Services");
-gchar *s = N_("Software _Catalog");
-gchar *s = N_("_Eazel Services Home");
-gchar *s = N_("_Online Storage");
-gchar *s = N_("_Services");
-gchar *s = N_("_Support");
diff --git a/src/nautilus-shell-ui.xml.h b/src/nautilus-shell-ui.xml.h
deleted file mode 100644
index cf8b32317..000000000
--- a/src/nautilus-shell-ui.xml.h
+++ /dev/null
@@ -1,288 +0,0 @@
-/*
- * This file is autogenerated from nautilus-shell-ui.xml, do not edit
- *
- * This file contains translatable strings generated by
- * bonobo-ui-extract. Add this file to your project's
- * POTFILES.in. DO NOT compile it as part of your application.
- */
-
-gchar *s = N_(" Advanced");
-gchar *s = N_(" Beginner");
-gchar *s = N_(" Intermediate");
-gchar *s = N_("Add a bookmark for the current location to this menu");
-gchar *s = N_("Back");
-gchar *s = N_("C_hange Appearance...");
-gchar *s = N_("C_lear Text");
-gchar *s = N_("Change the visibility of this window's location bar");
-gchar *s = N_("Change the visibility of this window's sidebar");
-gchar *s = N_("Change the visibility of this window's status bar");
-gchar *s = N_("Change the visibility of this window's tool bar");
-gchar *s = N_("Clear contents of Go menu and Back/Forward lists");
-gchar *s = N_("Close _All Windows");
-gchar *s = N_("Close all Nautilus windows");
-gchar *s = N_("Close this window");
-gchar *s = N_("Copy the selected text to the clipboard");
-gchar *s = N_("Custo_mization...");
-gchar *s = N_("Cut _Text");
-gchar *s = N_("Cut the selected text to the clipboard");
-gchar *s = N_("Display a window that allows editing the bookmarks in this menu");
-gchar *s = N_("Display credits for the creators of Nautilus");
-gchar *s = N_("Display on-line help for Nautilus");
-gchar *s = N_("Display the Property Browser, containing patterns, colors, and emblems");
-gchar *s = N_("Display the latest contents of the current location");
-gchar *s = N_("Display the set of available appearance themes");
-gchar *s = N_("Edit Settings...");
-gchar *s = N_("Edit settings for the current user level");
-gchar *s = N_("Find");
-gchar *s = N_("For_get History");
-gchar *s = N_("Forward");
-gchar *s = N_("Go to Eazel Services");
-gchar *s = N_("Go to the home location");
-gchar *s = N_("Go to the location that contains this one");
-gchar *s = N_("Go to the next visited location");
-gchar *s = N_("Go to the previous visited location");
-gchar *s = N_("Hide Location Bar");
-gchar *s = N_("Hide Sidebar");
-gchar *s = N_("Hide Status Bar");
-gchar *s = N_("Hide Tool Bar");
-gchar *s = N_("Home");
-gchar *s = N_("Nautilus _Feedback...");
-gchar *s = N_("Open another Nautilus window for the displayed location");
-gchar *s = N_("Paste the text stored on the clipboard");
-gchar *s = N_("Refresh");
-gchar *s = N_("Removes the selected text without putting it on the clipboard");
-gchar *s = N_("Report Profiling");
-gchar *s = N_("Reset Profiling");
-gchar *s = N_("Search the World Wide Web");
-gchar *s = N_("Search this computer for files");
-gchar *s = N_("Show a page from which you can send feedback about Nautilus to its creators");
-gchar *s = N_("Show the contents at the normal size");
-gchar *s = N_("Show the contents in less detail");
-gchar *s = N_("Show the contents in more detail");
-gchar *s = N_("Start Profiling");
-gchar *s = N_("Stop");
-gchar *s = N_("Stop Profiling");
-gchar *s = N_("Stop loading this location");
-gchar *s = N_("Up");
-gchar *s = N_("Use Advanced settings");
-gchar *s = N_("Use Beginner settings");
-gchar *s = N_("Use Intermediate settings");
-gchar *s = N_("Web Search");
-gchar *s = N_("Zoom _In");
-gchar *s = N_("Zoom _Out");
-gchar *s = N_("_About Nautilus...");
-gchar *s = N_("_Add Bookmark");
-gchar *s = N_("_Back");
-gchar *s = N_("_Bookmarks");
-gchar *s = N_("_Close Window");
-gchar *s = N_("_Copy Text");
-gchar *s = N_("_Edit");
-gchar *s = N_("_Edit Bookmarks...");
-gchar *s = N_("_File");
-gchar *s = N_("_Find");
-gchar *s = N_("_Forward");
-gchar *s = N_("_Go");
-gchar *s = N_("_Help");
-gchar *s = N_("_Home");
-gchar *s = N_("_Nautilus User Manual");
-gchar *s = N_("_New Window");
-gchar *s = N_("_Normal Size");
-gchar *s = N_("_Paste Text");
-gchar *s = N_("_Profiler");
-gchar *s = N_("_Refresh");
-gchar *s = N_("_Report Profiling");
-gchar *s = N_("_Reset Profiling");
-gchar *s = N_("_Select All");
-gchar *s = N_("_Start Profiling");
-gchar *s = N_("_Stop Profiling");
-gchar *s = N_("_Up a Level");
-gchar *s = N_("_View");
-gchar *s = N_("_Web Search");
-gchar *s = N_(" Advanced");
-gchar *s = N_(" Beginner");
-gchar *s = N_(" Intermediate");
-gchar *s = N_("Add a bookmark for the current location to this menu");
-gchar *s = N_("Back");
-gchar *s = N_("C_hange Appearance...");
-gchar *s = N_("C_lear Text");
-gchar *s = N_("Change the visibility of this window's location bar");
-gchar *s = N_("Change the visibility of this window's sidebar");
-gchar *s = N_("Change the visibility of this window's status bar");
-gchar *s = N_("Change the visibility of this window's tool bar");
-gchar *s = N_("Clear contents of Go menu and Back/Forward lists");
-gchar *s = N_("Close _All Windows");
-gchar *s = N_("Close all Nautilus windows");
-gchar *s = N_("Close this window");
-gchar *s = N_("Copy the selected text to the clipboard");
-gchar *s = N_("Custo_mization...");
-gchar *s = N_("Cut _Text");
-gchar *s = N_("Cut the selected text to the clipboard");
-gchar *s = N_("Display a window that allows editing the bookmarks in this menu");
-gchar *s = N_("Display credits for the creators of Nautilus");
-gchar *s = N_("Display on-line help for Nautilus");
-gchar *s = N_("Display the Property Browser, containing patterns, colors, and emblems");
-gchar *s = N_("Display the latest contents of the current location");
-gchar *s = N_("Display the set of available appearance themes");
-gchar *s = N_("Edit Settings...");
-gchar *s = N_("Edit settings for the current user level");
-gchar *s = N_("Find");
-gchar *s = N_("For_get History");
-gchar *s = N_("Forward");
-gchar *s = N_("Go to Eazel Services");
-gchar *s = N_("Go to the home location");
-gchar *s = N_("Go to the location that contains this one");
-gchar *s = N_("Go to the next visited location");
-gchar *s = N_("Go to the previous visited location");
-gchar *s = N_("Hide Location Bar");
-gchar *s = N_("Hide Sidebar");
-gchar *s = N_("Hide Status Bar");
-gchar *s = N_("Hide Tool Bar");
-gchar *s = N_("Home");
-gchar *s = N_("Nautilus _Feedback...");
-gchar *s = N_("Open another Nautilus window for the displayed location");
-gchar *s = N_("Paste the text stored on the clipboard");
-gchar *s = N_("Refresh");
-gchar *s = N_("Removes the selected text without putting it on the clipboard");
-gchar *s = N_("Report Profiling");
-gchar *s = N_("Reset Profiling");
-gchar *s = N_("Search the World Wide Web");
-gchar *s = N_("Search this computer for files");
-gchar *s = N_("Show a page from which you can send feedback about Nautilus to its creators");
-gchar *s = N_("Show the contents at the normal size");
-gchar *s = N_("Show the contents in less detail");
-gchar *s = N_("Show the contents in more detail");
-gchar *s = N_("Start Profiling");
-gchar *s = N_("Stop");
-gchar *s = N_("Stop Profiling");
-gchar *s = N_("Stop loading this location");
-gchar *s = N_("Undo the last text change");
-gchar *s = N_("Up");
-gchar *s = N_("Use Advanced settings");
-gchar *s = N_("Use Beginner settings");
-gchar *s = N_("Use Intermediate settings");
-gchar *s = N_("Web Search");
-gchar *s = N_("Zoom _In");
-gchar *s = N_("Zoom _Out");
-gchar *s = N_("_About Nautilus...");
-gchar *s = N_("_Add Bookmark");
-gchar *s = N_("_Back");
-gchar *s = N_("_Bookmarks");
-gchar *s = N_("_Close Window");
-gchar *s = N_("_Copy Text");
-gchar *s = N_("_Edit");
-gchar *s = N_("_Edit Bookmarks...");
-gchar *s = N_("_File");
-gchar *s = N_("_Find");
-gchar *s = N_("_Forward");
-gchar *s = N_("_Go");
-gchar *s = N_("_Help");
-gchar *s = N_("_Home");
-gchar *s = N_("_Nautilus User Manual");
-gchar *s = N_("_New Window");
-gchar *s = N_("_Normal Size");
-gchar *s = N_("_Paste Text");
-gchar *s = N_("_Profiler");
-gchar *s = N_("_Refresh");
-gchar *s = N_("_Report Profiling");
-gchar *s = N_("_Reset Profiling");
-gchar *s = N_("_Select All");
-gchar *s = N_("_Start Profiling");
-gchar *s = N_("_Stop Profiling");
-gchar *s = N_("_Undo");
-gchar *s = N_("_Up a Level");
-gchar *s = N_("_View");
-gchar *s = N_("_Web Search");
-gchar *s = N_(" Advanced");
-gchar *s = N_(" Beginner");
-gchar *s = N_(" Intermediate");
-gchar *s = N_("Add a bookmark for the current location to this menu");
-gchar *s = N_("Back");
-gchar *s = N_("C_hange Appearance...");
-gchar *s = N_("C_lear Text");
-gchar *s = N_("Change the visibility of this window's location bar");
-gchar *s = N_("Change the visibility of this window's sidebar");
-gchar *s = N_("Change the visibility of this window's status bar");
-gchar *s = N_("Change the visibility of this window's tool bar");
-gchar *s = N_("Clear contents of Go menu and Back/Forward lists");
-gchar *s = N_("Close _All Windows");
-gchar *s = N_("Close all Nautilus windows");
-gchar *s = N_("Close this window");
-gchar *s = N_("Copy the selected text to the clipboard");
-gchar *s = N_("Custo_mization...");
-gchar *s = N_("Cut _Text");
-gchar *s = N_("Cut the selected text to the clipboard");
-gchar *s = N_("Display a window that allows editing the bookmarks in this menu");
-gchar *s = N_("Display credits for the creators of Nautilus");
-gchar *s = N_("Display on-line help for Nautilus");
-gchar *s = N_("Display the Property Browser, containing patterns, colors, and emblems");
-gchar *s = N_("Display the latest contents of the current location");
-gchar *s = N_("Display the set of available appearance themes");
-gchar *s = N_("Edit Settings...");
-gchar *s = N_("Edit settings for the current user level");
-gchar *s = N_("Find");
-gchar *s = N_("For_get History");
-gchar *s = N_("Forward");
-gchar *s = N_("Go to Eazel Services");
-gchar *s = N_("Go to the home location");
-gchar *s = N_("Go to the location that contains this one");
-gchar *s = N_("Go to the next visited location");
-gchar *s = N_("Go to the previous visited location");
-gchar *s = N_("Hide Location Bar");
-gchar *s = N_("Hide Sidebar");
-gchar *s = N_("Hide Status Bar");
-gchar *s = N_("Hide Tool Bar");
-gchar *s = N_("Home");
-gchar *s = N_("Nautilus _Feedback...");
-gchar *s = N_("Open another Nautilus window for the displayed location");
-gchar *s = N_("Paste the text stored on the clipboard");
-gchar *s = N_("Refresh");
-gchar *s = N_("Removes the selected text without putting it on the clipboard");
-gchar *s = N_("Report Profiling");
-gchar *s = N_("Reset Profiling");
-gchar *s = N_("Search the World Wide Web");
-gchar *s = N_("Search this computer for files");
-gchar *s = N_("Show a page from which you can send feedback about Nautilus to its creators");
-gchar *s = N_("Show the contents at the normal size");
-gchar *s = N_("Show the contents in less detail");
-gchar *s = N_("Show the contents in more detail");
-gchar *s = N_("Start Profiling");
-gchar *s = N_("Stop");
-gchar *s = N_("Stop Profiling");
-gchar *s = N_("Stop loading this location");
-gchar *s = N_("Undo the last text change");
-gchar *s = N_("Up");
-gchar *s = N_("Use Advanced settings");
-gchar *s = N_("Use Beginner settings");
-gchar *s = N_("Use Intermediate settings");
-gchar *s = N_("Web Search");
-gchar *s = N_("Zoom _In");
-gchar *s = N_("Zoom _Out");
-gchar *s = N_("_About Nautilus...");
-gchar *s = N_("_Add Bookmark");
-gchar *s = N_("_Back");
-gchar *s = N_("_Bookmarks");
-gchar *s = N_("_Close Window");
-gchar *s = N_("_Copy Text");
-gchar *s = N_("_Edit");
-gchar *s = N_("_Edit Bookmarks...");
-gchar *s = N_("_File");
-gchar *s = N_("_Find");
-gchar *s = N_("_Forward");
-gchar *s = N_("_Go");
-gchar *s = N_("_Help");
-gchar *s = N_("_Home");
-gchar *s = N_("_Nautilus User Manual");
-gchar *s = N_("_New Window");
-gchar *s = N_("_Normal Size");
-gchar *s = N_("_Paste Text");
-gchar *s = N_("_Profiler");
-gchar *s = N_("_Refresh");
-gchar *s = N_("_Report Profiling");
-gchar *s = N_("_Reset Profiling");
-gchar *s = N_("_Select All");
-gchar *s = N_("_Start Profiling");
-gchar *s = N_("_Stop Profiling");
-gchar *s = N_("_Undo");
-gchar *s = N_("_Up a Level");
-gchar *s = N_("_View");
-gchar *s = N_("_Web Search");