mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-17 09:22:19 +00:00
Duplicating 2 strings for better i18n
Duplicating strings "Pets Found" and "Mounts Tamed" used in inventory and in stats with different order of numbers - words
This commit is contained in:
parent
f4c89f9379
commit
c711074809
3 changed files with 4 additions and 2 deletions
|
|
@ -1,10 +1,12 @@
|
|||
{
|
||||
"pets": "Pets",
|
||||
"petsFound": "Pets Found",
|
||||
"petsFoundEnding": "Pets Found",
|
||||
"rarePets": "Rare Pets",
|
||||
"questPets": "Quest Pets",
|
||||
"mounts": "Mounts",
|
||||
"mountsTamed": "Mounts Tamed",
|
||||
"mountsTamedEnding": "Mounts Tamed",
|
||||
"questMounts": "Quest Mounts",
|
||||
"rareMounts": "Rare Mounts",
|
||||
"etherealLion": "Ethereal Lion",
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ mixin mountList(source)
|
|||
a(target='_blank', href='http://www.kickstarter.com/profile/mattboch')=env.t('mattBoch')
|
||||
.popover-content
|
||||
p=env.t('mattShall', {name: "{{user.profile.name}}"})
|
||||
h4= env.t('mountMasterProgress') + ': {{::mountMasterProgress}} ' + env.t('mountsTamed')
|
||||
h4= env.t('mountMasterProgress') + ': {{::mountMasterProgress}} ' + env.t('mountsTamedEnding')
|
||||
.row: .col-md-12
|
||||
+mountList(env.Content.dropEggs)
|
||||
.row: .col-md-12
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ mixin petList(source)
|
|||
a(target='_blank', href='http://www.kickstarter.com/profile/mattboch')=env.t('mattBoch')
|
||||
.popover-content
|
||||
p=env.t('mattBochText1')
|
||||
h4=env.t('beastMasterProgress') + ': {{::beastMasterProgress}} ' + env.t('petsFound')
|
||||
h4=env.t('beastMasterProgress') + ': {{::beastMasterProgress}} ' + env.t('petsFoundEnding')
|
||||
|
||||
.row: .col-md-12
|
||||
+petList(env.Content.dropEggs)
|
||||
|
|
|
|||
Loading…
Reference in a new issue