Use full sentence rather than combining words

This commit is contained in:
SGKoishi 2022-10-25 08:49:39 -07:00
parent 23c44793e9
commit 95d6baaf6c
No known key found for this signature in database
GPG key ID: 8FFC399070653828
4 changed files with 72 additions and 58 deletions

View file

@ -102,10 +102,10 @@ namespace TShockAPI
public Settings()
{
this.IncludeHeader = true;
this.headerFormat = "Page {0} of {1}";
this.headerFormat = GetString("Page {{0}} of {{1}}");
this.HeaderTextColor = Color.Green;
this.IncludeFooter = true;
this.footerFormat = "Type /<command> {0} for more.";
this.footerFormat = GetString("Type /<command> {{0}} for more.");
this.FooterTextColor = Color.Yellow;
this.NothingToDisplayString = null;
this.LineFormatter = null;