mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-21 21:28:52 +00:00
fix(strings): Make plural more greppable
This commit is contained in:
parent
16878af76f
commit
2d1ad12cbd
2 changed files with 2 additions and 2 deletions
|
|
@ -71,7 +71,7 @@
|
|||
"achievementDilatoryText": "Helped defeat the Dread Drag'on of Dilatory during the 2014 Summer Splash Event!",
|
||||
"costumeContest": "Costume Contestant",
|
||||
"costumeContestText": "Participated in the Habitoween Costume Contest. See some of the entries <a href='http://blog.habitrpg.com/tagged/cosplay' target='_blank'>on the Habitica blog</a>!",
|
||||
"costumeContestPluralText": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries <a href='http://blog.habitrpg.com/tagged/cosplay' target='_blank'>on the Habitica blog</a>!",
|
||||
"costumeContestTextPlural": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries <a href='http://blog.habitrpg.com/tagged/cosplay' target='_blank'>on the Habitica blog</a>!",
|
||||
"memberSince": "- Member since",
|
||||
"lastLoggedIn": "- Last logged in",
|
||||
"notPorted": "This feature is not yet ported from the original site.",
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ div(ng-if='::profile.achievements.costumeContests')
|
|||
small(ng-if='::profile.achievements.costumeContests === 1')
|
||||
!=env.t('costumeContestText')
|
||||
small(ng-if='::profile.achievements.costumeContests > 1')
|
||||
!=env.t('costumeContestPluralText', {number: "{{::profile.achievements.costumeContests}}"})
|
||||
!=env.t('costumeContestTextPlural', {number: "{{::profile.achievements.costumeContests}}"})
|
||||
hr
|
||||
|
||||
each card in ['greeting', 'thankyou', 'nye', 'valentine']
|
||||
|
|
|
|||
Loading…
Reference in a new issue