Default name should be 'Universal Editor', not 'Universal Editor Platform' (that looks ugly)
This commit is contained in:
parent
a9bf2896d5
commit
9cbdaf1a9b
@ -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;
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
|
||||
@ -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"];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user