Change the GC.GetTotalMemory() threshold to 10%; otherwise there are just too many...
[beagle.git] / search / Pages / QuickTips.cs
blob459946de3f1ce1bbd70a1adcbe7971b4935fa71b
1 using Gtk;
2 using System;
3 using Mono.Unix;
5 namespace Search.Pages {
7 public class QuickTips : Base {
9 static string[] tips = new string[] {
10 Catalog.GetString ("You can use upper and lower case; search is case-insensitive."),
11 Catalog.GetString ("To search for optional terms, use OR. ex: <b>George OR Ringo</b>"),
12 Catalog.GetString ("To exclude search terms, use the minus symbol in front, such as <b>-cats</b>"),
13 Catalog.GetString ("When searching for a phrase, add quotes. ex: <b>\"There be dragons\"</b>")
16 public QuickTips ()
18 HeaderIcon = Beagle.Images.GetPixbuf ("quick-tips.png");
19 HeaderMarkup = "<big><b>" + Catalog.GetString ("Quick Tips") + "</b></big>";
21 foreach (string tip in tips)
22 Append (tip);