mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
Name corrections in a few places
This commit is contained in:
parent
7a0fe26b30
commit
f371032ecd
4 changed files with 7 additions and 7 deletions
|
@ -601,7 +601,7 @@ namespace CodeImp.DoomBuilder.Config
|
|||
{
|
||||
// Error in configuration
|
||||
General.WriteLogLine("Error in program configuration near line " + cfg.ErrorLine + ": " + cfg.ErrorDescription);
|
||||
General.ShowErrorMessage("Default program configuration is corrupted. Please re-install Doom Builder.", MessageBoxButtons.OK);
|
||||
General.ShowErrorMessage("Default program configuration is corrupted. Please re-install Zone Builder.", MessageBoxButtons.OK);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -628,7 +628,7 @@ namespace CodeImp.DoomBuilder.Config
|
|||
{
|
||||
// Error in configuration
|
||||
General.WriteLogLine("Error in program configuration near line " + cfg.ErrorLine + ": " + cfg.ErrorDescription);
|
||||
General.ShowErrorMessage("Default program configuration is corrupted. Please re-install Doom Builder.", MessageBoxButtons.OK);
|
||||
General.ShowErrorMessage("Default program configuration is corrupted. Please re-install Zone Builder.", MessageBoxButtons.OK);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3150,13 +3150,13 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
//head
|
||||
html.AppendLine("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">" + Environment.NewLine +
|
||||
"<html xmlns=\"http://www.w3.org/1999/xhtml\">" + Environment.NewLine +
|
||||
"<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /><title>GZDoom Builder Actions Reference</title></head>" + Environment.NewLine +
|
||||
"<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /><title>Zone Builder Actions Reference</title></head>" + Environment.NewLine +
|
||||
"<body bgcolor=\"#666666\">" + Environment.NewLine +
|
||||
"<div style=\"padding-left:60px; padding-right:60px; padding-top:20px; padding-bottom:20px;\">" + Environment.NewLine);
|
||||
|
||||
//table header
|
||||
html.AppendLine("<table bgcolor=\"#FFFFFF\" width=\"100%\" border=\"0\" cellspacing=\"6\" cellpadding=\"6\" style=\"font-family: 'Trebuchet MS',georgia,Verdana,Sans-serif;\">" + Environment.NewLine +
|
||||
"<tr><td colspan=\"4\" bgcolor=\"#333333\"><span style=\"font-size: 24px\"><a name=\"top\" id=\"top\"></a><strong style=\"color:#FFFFFF\">GZDoom Builder Actions Reference</strong></span></td></tr>");
|
||||
"<tr><td colspan=\"4\" bgcolor=\"#333333\"><span style=\"font-size: 24px\"><a name=\"top\" id=\"top\"></a><strong style=\"color:#FFFFFF\">Zone Builder Actions Reference</strong></span></td></tr>");
|
||||
|
||||
//categories navigator
|
||||
List<string> catnames = new List<string>(sortedActions.Count);
|
||||
|
|
|
@ -119,7 +119,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// Now make a fine description
|
||||
switch(buttons)
|
||||
{
|
||||
case 0: description += " Doom Builder could not find a solution to fix this line."; break;
|
||||
case 0: description += " Zone Builder could not find a solution to fix this line."; break;
|
||||
case 1: description += " Click Create One Side to rebuild a single sidedef, making this line single-sided."; break;
|
||||
case 2: description += " Click Create Both Side to rebuild both sides of the line, making this line double-sided."; break;
|
||||
}
|
||||
|
|
|
@ -146,7 +146,7 @@ namespace CodeImp.DoomBuilder.BuilderModes.IO
|
|||
//create mtl
|
||||
StringBuilder mtl = new StringBuilder();
|
||||
mtl.Append("# MTL for " + General.Map.FileTitle + ", map " + General.Map.Options.LevelName + Environment.NewLine);
|
||||
mtl.Append("# Created by GZDoom Builder " + Application.ProductVersion + Environment.NewLine + Environment.NewLine);
|
||||
mtl.Append("# Created by Zone Builder " + Application.ProductVersion + Environment.NewLine + Environment.NewLine);
|
||||
|
||||
if(settings.Textures != null)
|
||||
{
|
||||
|
@ -238,7 +238,7 @@ namespace CodeImp.DoomBuilder.BuilderModes.IO
|
|||
|
||||
//add header
|
||||
obj.Insert(0, "o " + General.Map.Options.LevelName + Environment.NewLine); //name
|
||||
obj.Insert(0, "# Created by GZDoom Builder " + Application.ProductVersion + Environment.NewLine + Environment.NewLine);
|
||||
obj.Insert(0, "# Created by Zone Builder " + Application.ProductVersion + Environment.NewLine + Environment.NewLine);
|
||||
obj.Insert(0, "# " + General.Map.FileTitle + ", map " + General.Map.Options.LevelName + Environment.NewLine);
|
||||
data.Obj = obj.ToString();
|
||||
|
||||
|
|
Loading…
Reference in a new issue