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>")
18 HeaderIcon
= Beagle
.Images
.GetPixbuf ("quick-tips.png");
19 HeaderMarkup
= "<big><b>" + Catalog
.GetString ("Quick Tips") + "</b></big>";
20 foreach (string tip
in tips
)