summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Schulman <rebecka@eazel.com>2001-02-20 21:59:27 +0000
committerRebecca Schulman <rebecka@src.gnome.org>2001-02-20 21:59:27 +0000
commit2b93c3e9df3560a6b73f69bc72c6fd4de64b74fa (patch)
treec83362b9a10185582459953e2a41384f371fe7de
parent49471a4068e4d96ef4a4d106b03c35101555708c (diff)
downloadnautilus-2b93c3e9df3560a6b73f69bc72c6fd4de64b74fa.tar.gz
reviewed by: John Sullivan <sullivan@eazel.com>
2001-02-20 Rebecca Schulman <rebecka@eazel.com> reviewed by: John Sullivan <sullivan@eazel.com> * src/file-manager/nautilus-indexing-info.c: (show_indexing_info_dialog): Complete fix for 6417, by swapping Vera's text into the new index status dialog
-rw-r--r--ChangeLog9
-rw-r--r--src/file-manager/nautilus-indexing-info.c30
2 files changed, 28 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b727624c..285adea9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2001-02-20 Rebecca Schulman <rebecka@eazel.com>
+
+ reviewed by: John Sullivan <sullivan@eazel.com>
+
+ * src/file-manager/nautilus-indexing-info.c:
+ (show_indexing_info_dialog):
+ Complete fix for 6417, by swapping Vera's text into the
+ new index status dialog
+
2001-02-20 Gene Z. Ragan <gzr@eazel.com>
Fixed bug 6384, Nautilus program chooser uses
diff --git a/src/file-manager/nautilus-indexing-info.c b/src/file-manager/nautilus-indexing-info.c
index b03737734..ef29a52eb 100644
--- a/src/file-manager/nautilus-indexing-info.c
+++ b/src/file-manager/nautilus-indexing-info.c
@@ -337,11 +337,13 @@ show_indexing_info_dialog (void)
int callback_id;
if (medusa_system_services_are_blocked ()) {
- dialog_shown = nautilus_show_info_dialog (_("An index of your files is not available because "
- "creating a nightly index of files has been disabled "
- "by your system administrator."),
- _("No index of your system is available"),
- NULL);
+ dialog_shown = nautilus_show_info_dialog (_("To do a fast search, Find requires "
+ "an index of the files on your system. "
+ "Your system administrator has disabled "
+ "fast search on your computer, so no "
+ "index is available."),
+ _("Fast searches are not available on your computer."),
+ NULL);
callback_id = medusa_execute_once_when_system_state_changes (MEDUSA_SYSTEM_STATE_ENABLED | MEDUSA_SYSTEM_STATE_DISABLED,
dialog_close_cover,
dialog_shown);
@@ -354,12 +356,18 @@ show_indexing_info_dialog (void)
}
if (!medusa_system_services_are_enabled ()) {
- dialog_shown = nautilus_show_info_dialog (_("An index of your files is not available, because you "
- "have elected to turn the indexing feature off. You can "
- "set your computer up to index your files nightly by changing "
- "your search preferences."),
- _("No index of your system is available"),
- NULL);
+ dialog_shown = nautilus_show_info_dialog_with_details (_("To do a fast search, Find requires an index "
+ "of the files on your system. Fast search is "
+ "disabled in your Search preferences, so no "
+ "index is available."),
+ _("Fast searches are not available on your computer."),
+ _("To enable fast search, open the Preferences menu "
+ "and choose Preferences. Then select Search "
+ "preferences and put a checkmark in the Enable "
+ "Fast Search checkbox. An index will be generated "
+ "while your computer is idle, so your index won't "
+ "be available immediately."),
+ NULL);
callback_id = medusa_execute_once_when_system_state_changes (MEDUSA_SYSTEM_STATE_ENABLED | MEDUSA_SYSTEM_STATE_BLOCKED,
dialog_close_cover,