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:
GihHubSphinx 2015-08-12 23:39:11 +05:00
parent f4c89f9379
commit c711074809
3 changed files with 4 additions and 2 deletions

View file

@ -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",

View file

@ -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

View file

@ -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)