diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-05-05 10:31:06 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-05-05 10:31:06 +0300 |
| commit | 79bd7bb6a22f1da1a77fcc3f527a0955028f2447 (patch) | |
| tree | 3e1c30dbbf7b6ccf70aa5631ad2f42ee356b4e25 /Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs | |
| parent | 4129b6caa72f8bafeeefe1a4a88a0d5e1568e245 (diff) | |
| parent | 661c55343a468a9c150e8d163711567f89a02889 (diff) | |
| download | Tango-79bd7bb6a22f1da1a77fcc3f527a0955028f2447.tar.gz Tango-79bd7bb6a22f1da1a77fcc3f527a0955028f2447.zip | |
merge tpf
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs')
| -rw-r--r-- | Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Search/Localization.cs | 64 |
1 files changed, 64 insertions, 0 deletions
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 +{ + /// <summary> + /// Holds default texts for buttons and labels in the SearchPanel. Override properties to add other languages. + /// </summary> + public class Localization + { + /// <summary> + /// Default: 'Match case' + /// </summary> + public virtual string MatchCaseText { + get { return "Match case"; } + } + + /// <summary> + /// Default: 'Match whole words' + /// </summary> + public virtual string MatchWholeWordsText { + get { return "Match whole words"; } + } + + + /// <summary> + /// Default: 'Use regular expressions' + /// </summary> + public virtual string UseRegexText { + get { return "Use regular expressions"; } + } + + /// <summary> + /// Default: 'Find next (F3)' + /// </summary> + public virtual string FindNextText { + get { return "Find next (F3)"; } + } + + /// <summary> + /// Default: 'Find previous (Shift+F3)' + /// </summary> + public virtual string FindPreviousText { + get { return "Find previous (Shift+F3)"; } + } + + /// <summary> + /// Default: 'Error: ' + /// </summary> + public virtual string ErrorText { + get { return "Error: "; } + } + + /// <summary> + /// Default: 'No matches found!' + /// </summary> + public virtual string NoMatchesFoundText { + get { return "No matches found!"; } + } + } +} |
