Fixing button caption for selling Eggs and Potions in the Market
This commit is contained in:
@@ -79,5 +79,7 @@
|
||||
"welcome3": "Complete tasks to earn Experience (XP) and Gold, which unlock awesome features and rewards!",
|
||||
"welcome4": "Avoid bad habits that drain Health (HP), or your avatar will die!",
|
||||
"welcome5": "Now you'll customize your avatar and set up your tasks...",
|
||||
"imReady": "I'm Ready!"
|
||||
"imReady": "I'm Ready!",
|
||||
"sellEggForGold": "Sell <%= itemType %> Egg for <%= gold %> Gold",
|
||||
"sellPotionForGold": "Sell <%= itemType %> Potion for <%= gold %> Gold"
|
||||
}
|
||||
|
||||
@@ -181,8 +181,8 @@ script(type='text/ng-template', id='partials/options.inventory.drops.html')
|
||||
.popover-content
|
||||
p=env.t('welcomeMarket')
|
||||
p
|
||||
button.btn.btn-primary(ng-show='selectedEgg', ng-click='sellInventory()')=env.t('sellForGold', {item: "{{selectedEgg.text()}}", gold: "{{selectedEgg.value}}"})
|
||||
button.btn.btn-primary(ng-show='selectedPotion', ng-click='sellInventory()')=env.t('sellForGold', {item: "{{selectedPotion.text()}}", gold: "{{selectedPotion.value}}"})
|
||||
button.btn.btn-primary(ng-show='selectedEgg', ng-click='sellInventory()')=env.t('sellEggForGold', {itemType: "{{selectedEgg.text()}}", gold: "{{selectedEgg.value}}"})
|
||||
button.btn.btn-primary(ng-show='selectedPotion', ng-click='sellInventory()')=env.t('sellPotionForGold', {itemType: "{{selectedPotion.text()}}", gold: "{{selectedPotion.value}}"})
|
||||
button.btn.btn-primary(ng-show='selectedFood', ng-click='sellInventory()')=env.t('sellForGold', {item: "{{selectedFood.text()}}", gold: "{{selectedFood.value}}"})
|
||||
menu.inventory-list(type='list')
|
||||
li.customize-menu
|
||||
|
||||
Reference in New Issue
Block a user