mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-18 03:52:54 +00:00
fix(strings): remove some trailing spaces
This commit is contained in:
parent
bb395a7ad8
commit
431cec7634
2 changed files with 3 additions and 3 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue