From 080f1697e97e13461ec6df4d31c8924d01257a1b Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Tue, 9 Apr 2019 01:47:48 +0300 Subject: MERGE --- .../Tango.Scripting.Editors/Search/Localization.cs | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs') diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs new file mode 100644 index 000000000..cbe8c9bb0 --- /dev/null +++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs @@ -0,0 +1,64 @@ +// 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 Tango.Scripting.Editors.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!"; } + } + } +} -- cgit v1.3.1