Click here to Skip to main content
15,895,656 members
Articles / Desktop Programming / Windows Forms

Storm - the world's best IDE framework for .NET

Rate me:
Please Sign up or sign in to vote.
4.96/5 (82 votes)
4 Feb 2010LGPL311 min read 277.8K   6.5K   340  
Create fast, flexible, and extensible IDE applications easily with Storm - it takes nearly no code at all!

namespace Storm.TextEditor.Localization
{
	public sealed class Localizations
	{
		#region Fields

		private static string findDialogText           = "Find";
		private static string findNextButtonText       = "Next next";
		private static string findReplaceButtonText    = "Replace";
		private static string findMarkAllButtonText    = "Mark all";
		private static string findCloseButtonText      = "Close";
		private static string findWhatLabelText        = "Find what:";
		private static string findReplaceWithLabelText = "Replace with:";
		private static string findMatchCaseLabel       = "Match case";
		private static string findMatchWholeWordLabel  = "Match whole word";
		private static string findUseRegExLabel        = "Use regular expressions";
		private static string replaceDialogText        = "Replace";
		private static string findReplaceAllButtonText = "Replace all";

		#endregion

		#region Properties

		public static string FindReplaceAllButtonText
		{
			get { return Localizations.findReplaceAllButtonText; }
			set { Localizations.findReplaceAllButtonText = value; }
		}

		public static string ReplaceDialogText
		{
			get { return Localizations.replaceDialogText; }
			set { Localizations.replaceDialogText = value; }
		}

		public static string FindUseRegExLabel
		{
			get { return Localizations.findUseRegExLabel; }
			set { Localizations.findUseRegExLabel = value; }
		}

		public static string FindMatchWholeWordLabel
		{
			get { return Localizations.findMatchWholeWordLabel; }
			set { Localizations.findMatchWholeWordLabel = value; }
		}

		public static string FindMatchCaseLabel
		{
			get { return Localizations.findMatchCaseLabel; }
			set { Localizations.findMatchCaseLabel = value; }
		}

		public static string FindReplaceWithLabelText
		{
			get { return Localizations.findReplaceWithLabelText; }
			set { Localizations.findReplaceWithLabelText = value; }
		}

		public static string FindWhatLabelText
		{
			get { return Localizations.findWhatLabelText; }
			set { Localizations.findWhatLabelText = value; }
		}

		public static string FindCloseButtonText
		{
			get { return Localizations.findCloseButtonText; }
			set { Localizations.findCloseButtonText = value; }
		}

		public static string FindMarkAllButtonText
		{
			get { return Localizations.findMarkAllButtonText; }
			set { Localizations.findMarkAllButtonText = value; }
		}

		public static string FindReplaceButtonText
		{
			get { return Localizations.findReplaceButtonText; }
			set { Localizations.findReplaceButtonText = value; }
		}

		public static string FindNextButtonText
		{
			get { return Localizations.findNextButtonText; }
			set { Localizations.findNextButtonText = value; }
		}

		public static string FindDialogText
		{
			get { return Localizations.findDialogText; }
			set { Localizations.findDialogText = value; }
		}

		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)



Comments and Discussions