Updated string names

This commit is contained in:
Blade Barringer 2015-01-12 13:12:40 -06:00
parent a72ae097d6
commit 1557907a1c
4 changed files with 11 additions and 11 deletions

View file

@ -41,7 +41,7 @@ script(type='text/ng-template', id='partials/options.inventory.mounts.html')
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') + ': {{mountCount}} / {{totalMounts}} ' + env.t('mountsTamed')
h4= env.t('mountMasterProgress') + ': {{mountCount}} / {{totalMounts}} ' + env.t('mountsTamed')
.col-md-12
+mountList(env.Content.dropEggs)
.col-md-12
@ -67,7 +67,7 @@ script(type='text/ng-template', id='partials/options.inventory.pets.html')
a(target='_blank', href='http://www.kickstarter.com/profile/mattboch')=env.t('mattBoch')
.popover-content
p=env.t('mattBochText1')
h4= env.t('beastmasterProgress') + ': {{petCount}} / {{totalPets}} ' + env.t('petsFound')
h4= env.t('beastMasterProgress') + ': {{petCount}} / {{totalPets}} ' + env.t('petsFound')
.col-md-12
+petList(env.Content.dropEggs)

View file

@ -18,7 +18,7 @@ script(type='text/ng-template', id='modals/pet-key.html')
.modal-header
// Checks if user has 90 pets and 90 mounts. If so, displays "Beast Master/Mount Master".
// Else if user has 90 pets, displays "Beast Master". Else, displays "Mount Master"
- var masterTitle='{{petCount >= 90 && mountCount >= 90 ? env.t("beastMastName") + "/" + env.t("mountMastName") : petCount >= 90 ? env.t("beastMastName") : env.t("mountMastName")}}'
- var masterTitle='{{petCount >= 90 && mountCount >= 90 ? env.t("beastMountMasterName") : petCount >= 90 ? env.t("beastMasterName") : env.t("mountMasterName")}}'
h4=env.t('petKeyBegin', {title: masterTitle})
.modal-body
+gemButton

View file

@ -81,19 +81,19 @@ div(ng-if='::user._id == profile._id')
div(ng-if='profile.achievements.beastMaster || user._id == profile._id')
.achievement.achievement-rat(ng-show='profile.achievements.beastMaster')
div(ng-class='{muted: !profile.achievements.beastMaster}')
h5=env.t('beastMastName')
small=env.t('beastMastText')
h5=env.t('beastMasterName')
small=env.t('beastMasterText')
small(ng-if='profile.achievements.beastMasterCount')
=env.t('beastMastText2', {count: "{{profile.achievements.beastMasterCount}}"})
=env.t('beastMasterText2', {count: "{{profile.achievements.beastMasterCount}}"})
hr
div(ng-if='profile.achievements.mountMaster || user._id == profile._id')
.achievement.achievement-wolf(ng-show='profile.achievements.mountMaster')
div(ng-class='{muted: !profile.achievements.mountMaster}')
h5=env.t('mountMastName')
small=env.t('mountMastText')
h5=env.t('mountMasterName')
small=env.t('mountMasterText')
small(ng-if='profile.achievements.mountMasterCount')
=env.t('mountMastText2', {count: "{{profile.achievements.mountMasterCount}}"})
=env.t('mountMasterText2', {count: "{{profile.achievements.mountMasterCount}}"})
hr
div(ng-if='profile.achievements.rebirths')

View file

@ -72,7 +72,7 @@ table.table.table-striped(ng-if='user.flags.dropsEnabled')
| : {{_.size(profile.items.pets)}}
tr
td
strong=env.t('beastProgress')
strong=env.t('beastMasterProgress')
| : {{profile.petCount}}/90
h4(class=mobile?'item item-divider':'', ng-if='user.flags.dropsEnabled')=env.t('mounts')
@ -83,5 +83,5 @@ table.table.table-striped(ng-if='user.flags.dropsEnabled')
| : {{_.size(profile.items.mounts)}}
tr
td
strong=env.t('mountmasterProgress')
strong=env.t('mountMasterProgress')
| : {{profile.mountCount}}/90