mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 04:29:40 +00:00
Correct party up/on achievement string names (#8313)
* Revert party up/on achievement string names * fix missed references to party up/on strings
This commit is contained in:
parent
12930a2bac
commit
b07ec18e33
2 changed files with 260 additions and 260 deletions
|
|
@ -172,8 +172,8 @@
|
|||
"requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them.",
|
||||
"partyUpName": "Party Up",
|
||||
"partyOnName": "Party On",
|
||||
"partyUpAchievement": "Joined a Party with another person! Have fun battling monsters and supporting each other.",
|
||||
"partyOnAchievement": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!",
|
||||
"partyUpText": "Joined a Party with another person! Have fun battling monsters and supporting each other.",
|
||||
"partyOnText": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!",
|
||||
"largeGroupNote": "Note: This Guild is now too large to support notifications! Be sure to check back every day to see new messages.",
|
||||
"groupIdRequired": "\"groupId\" must be a valid UUID",
|
||||
"groupNotFound": "Group not found or you don't have access.",
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ script(id='modals/achievements/partyUp.html', type='text/ng-template')
|
|||
.modal-body.text-center
|
||||
h3(style='margin-bottom:0')=env.t('modalAchievement')
|
||||
+achievementAvatar('partyUp',0)
|
||||
p=env.t('partyUpAchievement')
|
||||
p=env.t('partyUpText')
|
||||
br
|
||||
button.btn.btn-primary(ng-click='$close()')=env.t('huzzah')
|
||||
+achievementFooter
|
||||
|
|
@ -148,7 +148,7 @@ script(id='modals/achievements/partyOn.html', type='text/ng-template')
|
|||
.modal-body.text-center
|
||||
h3(style='margin-bottom:0')=env.t('modalAchievement')
|
||||
+achievementAvatar('partyOn',0)
|
||||
p=env.t('partyOnAchievement')
|
||||
p=env.t('partyOnText')
|
||||
br
|
||||
button.btn.btn-primary(ng-click='$close()')=env.t('huzzah')
|
||||
+achievementFooter
|
||||
|
|
|
|||
Loading…
Reference in a new issue