diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json index c4ca376975..d858f1bc33 100644 --- a/website/common/locales/en/content.json +++ b/website/common/locales/en/content.json @@ -3,7 +3,7 @@ "potionNotes": "Recover 15 Health (Instant Use)", "armoireText": "Enchanted Armoire", - "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining: ", + "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:", "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.", "armoireNotesEmpty": "The Armoire will have new Equipment in the first week of every month. Until then, keep clicking for Experience and Food!", @@ -364,7 +364,7 @@ "foodCandyWhite": "Vanilla Candy", "foodCandyWhiteThe": "the Vanilla Candy", "foodCandyWhiteA": "Vanilla Candy", - "foodCandyGolden": "Honey Candy ", + "foodCandyGolden": "Honey Candy", "foodCandyGoldenThe": "the Honey Candy", "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Rotten Candy", diff --git a/website/common/script/content/index.js b/website/common/script/content/index.js index e87ace6cbd..f96800c4e5 100644 --- a/website/common/script/content/index.js +++ b/website/common/script/content/index.js @@ -265,7 +265,7 @@ api.armoire = { if (user.flags.armoireEmpty) { return t('armoireNotesEmpty')(); } - return t('armoireNotesFull')() + count; + return `${t('armoireNotesFull')()} ${count}`; }, value: 100, key: 'armoire',