Default name should be 'Universal Editor', not 'Universal Editor Platform' (that looks ugly)

This commit is contained in:
Michael Becker 2014-07-22 15:40:39 -04:00
parent a9bf2896d5
commit 9cbdaf1a9b
3 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@ namespace UniversalEditor.UserInterface.WindowsForms.Dialogs
Font = SystemFonts.MenuFont;
lblApplicationTitle.Font = new Font(Font, FontStyle.Bold);
lblApplicationTitle.Text = Engine.CurrentEngine.DefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor Platform");
lblPlatform.Visible = (lblApplicationTitle.Text != "Universal Editor Platform");
lblApplicationTitle.Text = Engine.CurrentEngine.DefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor");
lblPlatform.Visible = (lblApplicationTitle.Text != "Universal Editor");
this.Text = "About " + lblApplicationTitle.Text;

View File

@ -53,7 +53,7 @@ namespace UniversalEditor.UserInterface.WindowsForms
pnlSolutionExplorer.ParentWindow = this;
this.Icon = LocalConfiguration.MainIcon;
this.Text = Engine.CurrentEngine.DefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor Platform");
this.Text = Engine.CurrentEngine.DefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor");
mnuContextDocumentTypeDataFormat.Font = new Font(SystemFonts.MenuFont, FontStyle.Bold);

View File

@ -243,7 +243,7 @@ namespace UniversalEditor.UserInterface
Command helpAboutPlatform = mvarCommands["HelpAboutPlatform"];
if (helpAboutPlatform != null)
{
helpAboutPlatform.Title = String.Format(helpAboutPlatform.Title, mvarDefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor Platform"));
helpAboutPlatform.Title = String.Format(helpAboutPlatform.Title, mvarDefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor"));
}
Command helpLanguage = mvarCommands["HelpLanguage"];