configure.in, AssemblyInfo.cs: For those unfortunate earthlings without libchm, libwv...
[beagle.git] / search / Pages / QuickTips.cs
bloba8e0971644f58b1dcc9956410fb177ffda244c7e
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>";
20 foreach (string tip in tips)
21 Append (tip);