beagle r4784 - trunk/beagle/search/Beagle.Search
- From: dbera svn gnome org
- To: svn-commits-list gnome org
- Subject: beagle r4784 - trunk/beagle/search/Beagle.Search
- Date: Sat, 14 Jun 2008 11:07:05 +0000 (UTC)
Author: dbera
Date: Sat Jun 14 11:07:05 2008
New Revision: 4784
URL: http://svn.gnome.org/viewvc/beagle?rev=4784&view=rev
Log:
Explicitly inform the user if too many results were found. It would be better if somehow we could also display a suggestion to "narrow your search scope".
Modified:
trunk/beagle/search/Beagle.Search/SearchWindow.cs
Modified: trunk/beagle/search/Beagle.Search/SearchWindow.cs
==============================================================================
--- trunk/beagle/search/Beagle.Search/SearchWindow.cs (original)
+++ trunk/beagle/search/Beagle.Search/SearchWindow.cs Sat Jun 14 11:07:05 2008
@@ -520,7 +520,8 @@
if (tile_count == this.total_matches)
message = String.Format (Catalog.GetPluralString ("Showing {0} match", "Showing all {0} matches", this.total_matches), this.total_matches);
else
- message = String.Format (Catalog.GetPluralString ("Showing the top {0} of {1} total matches", "Showing the top {0} of {1} total matches", this.total_matches), view.TileCount, this.total_matches);
+ // .
+ message = String.Format (Catalog.GetString ("Too many matches. Showing latest {0} of total {1}"), view.TileCount, this.total_matches);
this.statusbar.Push (0, message);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]