Add space in "spool up"

This commit is contained in:
DarkPhoenix
2018-12-12 10:05:53 +03:00
parent 46c95d722c
commit 85a834d1a3
4 changed files with 4 additions and 4 deletions

View File

@@ -153,7 +153,7 @@ class FirepowerViewFull(StatsView):
if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec):
return ""
else:
return "Spoolup {}: {}-{}".format(
return "Spool up {}: {}-{}".format(
statName,
formatAmount(preSpool, prec, lowest, highest),
formatAmount(fullSpool, prec, lowest, highest))

View File

@@ -96,7 +96,7 @@ class OutgoingViewFull(StatsView):
if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec):
return text
else:
return "{}, spoolup {}-{}".format(
return "{}, spool up {}-{}".format(
text,
formatAmount(preSpool, prec, lowest, highest),
formatAmount(fullSpool, prec, lowest, highest))

View File

@@ -95,7 +95,7 @@ class OutgoingViewMinimal(StatsView):
if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec):
return text
else:
return "{}, spoolup {}-{}".format(
return "{}, spool up {}-{}".format(
text,
formatAmount(preSpool, prec, lowest, highest),
formatAmount(fullSpool, prec, lowest, highest))

View File

@@ -348,7 +348,7 @@ class Miscellanea(ViewColumn):
if not rps:
return "", None
text = "{0}/s".format(formatAmount(rps, 3, 0, 3, forceSign=True))
tooltip = "Armor repaired per second, spoolup {}-{}".format(
tooltip = "Armor repaired per second, spool up {}-{}".format(
formatAmount(rpsPreSpool, 3, 0, 3),
formatAmount(rpsFullSpool, 3, 0, 3))
return text, tooltip