Bloom.CollectionCreating.NewCollectionWizard.SetLocalizedStrings C# (CSharp) Method

SetLocalizedStrings() private method

private SetLocalizedStrings ( ) : void
return void
        private void SetLocalizedStrings()
        {
            this.wizardControl1.Title = LocalizationManager.GetString("NewCollectionWizard.NewCollectionWindowTitle",
                                                                      "Create New Bloom Collection");
            this._welcomePage.Text = LocalizationManager.GetString("NewCollectionWizard.WelcomePage",
                                                                   "Welcome To Bloom!");
            this._kindOfCollectionPage.Text = LocalizationManager.GetString("NewCollectionWizard.KindOfCollectionPage",
                                                                            "Choose the Collection Type");
            _collectionNamePage.Text = LocalizationManager.GetString("NewCollectionWizard.ProjectName",
                                                                            "Project Name");
            _collectionNameProblemPage.Text = LocalizationManager.GetString("NewCollectionWizard.CollectionNameProblem",
                                                                            "Collection Name Problem");
            this._languageLocationPage.Text = LocalizationManager.GetString("NewCollectionWizard.LocationPage",
                                                                            "Give Language Location");
            this._languageFontPage.Text = LocalizationManager.GetString("NewCollectionWizard.FontAndScriptPage",
                                                                        "Font and Script");
            this._vernacularLanguagePage.Text = LocalizationManager.GetString("NewCollectionWizard.ChooseLanguagePage",
                                                                              "Choose the Main Language For This Collection");
            this._finishPage.Text = LocalizationManager.GetString("NewCollectionWizard.FinishPage",
                                                                  "Ready To Create New Collection");
            wizardControl1.NextButtonText = LocalizationManager.GetString("Common.Next", "&Next",
                                                                          "Used for the Next button in wizards, like that used for making a New Collection");
            wizardControl1.FinishButtonText = LocalizationManager.GetString("Common.Finish", "&Finish",
                                                                            "Used for the Finish button in wizards, like that used for making a New Collection");
            wizardControl1.CancelButtonText = LocalizationManager.GetString("Common.CancelButton", "&Cancel");

            var one = L10NSharp.LocalizationManager.GetString("NewCollectionWizard.WelcomePage.WelcomeLine1",
                                                                "You are almost ready to start making books.");
            var two = L10NSharp.LocalizationManager.GetString("NewCollectionWizard.WelcomePage.WelcomeLine2",
                                                                "In order to keep things simple and organized, Bloom keeps all the books you make in one or more <i>Collections</i>. The first thing we need to do is make one for you.");
            var three = L10NSharp.LocalizationManager.GetString("NewCollectionWizard.WelcomePage.WelcomeLine3",
                                                                "Click 'Next' to get started.");
            _welcomeHtml.HTML = one + "<br/>" + two + "<br/>" + three;
        }