// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.ComponentModel; namespace ICSharpCode.AvalonEdit.Search { /// /// Holds default texts for buttons and labels in the SearchPanel. Override properties to add other languages. /// public class Localization { /// /// Default: 'Match case' /// public virtual string MatchCaseText { get { return "Match case"; } } /// /// Default: 'Match whole words' /// public virtual string MatchWholeWordsText { get { return "Match whole words"; } } /// /// Default: 'Use regular expressions' /// public virtual string UseRegexText { get { return "Use regular expressions"; } } /// /// Default: 'Find next (F3)' /// public virtual string FindNextText { get { return "Find next (F3)"; } } /// /// Default: 'Find previous (Shift+F3)' /// public virtual string FindPreviousText { get { return "Find previous (Shift+F3)"; } } /// /// Default: 'Error: ' /// public virtual string ErrorText { get { return "Error: "; } } /// /// Default: 'No matches found!' /// public virtual string NoMatchesFoundText { get { return "No matches found!"; } } } }