From 8bb92577b02e2e271bdadea7ead2cccef05fc356 Mon Sep 17 00:00:00 2001 From: Kees Cook Date: Sun, 16 Oct 2016 19:16:42 -0700 Subject: [PATCH] quest progress reporting whitespace fixes (#8106) Notifications of other things (HP, GP, etc) have a regular format of "+/- NUM THING". For example: function gp(val, bonus) { _notify(_sign(val) + " " + coins(val - bonus), 'gp'); } However, the recent quest collection/damage notifications do not. This attempts to regularize the reporting by adding in the "missing" space. Signed-off-by: Kees Cook --- website/common/locales/en/quests.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/common/locales/en/quests.json b/website/common/locales/en/quests.json index a0b41bf2cb..b09ca39c77 100644 --- a/website/common/locales/en/quests.json +++ b/website/common/locales/en/quests.json @@ -26,8 +26,8 @@ "pending": "Pending", "questStart": "Once all members have either accepted or rejected, the quest begins. Only those that clicked \"accept\" will be able to participate in the quest and receive the drops. If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\". The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\".", "questStartBroken": "Once all members have either accepted or rejected, the quest begins... Only those that clicked \"accept\" will be able to participate in the quest and receive the drops... If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\"... The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\"...", - "questCollection": "+<%= val %> quest item(s) found", - "questDamage": "+<%= val %> damage to boss", + "questCollection": "+ <%= val %> quest item(s) found", + "questDamage": "+ <%= val %> damage to boss", "begin": "Begin", "bossHP": "Boss Health", "bossStrength": "Boss Strength", @@ -50,7 +50,7 @@ "leaveQuest": "Leave Quest", "sureLeave": "Are you sure you want to leave the active quest? All your quest progress will be lost.", "questOwner": "Quest Owner", - "questTaskDamage": "+<%= damage %> pending damage to boss", + "questTaskDamage": "+ <%= damage %> pending damage to boss", "questTaskCollection": "<%= items %> items collected today", "questOwnerNotInPendingQuest": "The quest owner has left the quest and can no longer begin it. It is recommended that you cancel it now. The quest owner will retain possession of the quest scroll.", "questOwnerNotInRunningQuest": "The quest owner has left the quest. You can abort the quest if you need to. You can also allow it to keep running and all remaining participants will receive the quest rewards when the quest finishes.",