1
0
mirror of https://gitlab.gnome.org/GNOME/nautilus synced 2024-07-04 17:30:47 +00:00

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!
This commit is contained in:
Darin Adler 2000-10-30 19:22:43 +00:00
parent 234699b8d3
commit d8d5d7bddc
24 changed files with 51 additions and 723 deletions

View File

@ -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

View File

@ -1,4 +1 @@
NULL =
%.xml.h: %.xml
$(BONOBO_UI_EXTRACT) $^ > $@

View File

@ -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)

View File

@ -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");

View File

@ -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)

View File

@ -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");

View File

@ -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)

View File

@ -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");

View File

@ -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)

View File

@ -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");

View File

@ -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)

View File

@ -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");

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -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)

View File

@ -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");

View File

@ -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

View File

@ -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)

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");