mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
fix(strings): remove some trailing spaces
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user