diff --git a/views/shared/modals/drops.jade b/views/shared/modals/drops.jade index d9c25b5859..e423e2d68a 100644 --- a/views/shared/modals/drops.jade +++ b/views/shared/modals/drops.jade @@ -1,28 +1,23 @@ div(modal='modals.dropsEnabled') .modal-header - h3 Drops Enabled! + h3=env.t('dropsEnabled') .modal-body - //-p // TODO how to handle random first drop? - span.item-drop-icon(class='Pet_Egg_{{user.items.eggs.0.key}}', style='margin-left: 0px') - | You've unlocked the Drop System! Now when you complete tasks, you have a small chance of finding an item. You just found a - strong {{user.items.eggs.0.text}} Egg - | ! {{user.items.eggs.0.notes}}. p span.item-drop-icon(class='Pet_Egg_Wolf', style='margin-left: 0px') - span. - You've unlocked the Drop System! Now when you complete tasks, you have a small chance of finding an item. You just found a {{Content.eggs.Wolf.text}} Egg! {{Content.eggs.Wolf.notes}} + span!=env.t('firstDrop', {eggText: "{{Content.eggs.Wolf.text}}", eggNotes: "{{Content.eggs.Wolf.notes}}"}) br - p. - If you've got your eye on a pet, but can't wait any longer for it to drop, use Gems in Options > Inventory to buy one! + p + span.item-drop-icon(class='Pet_Currency_Gem') + span!=env.t('useGems') .modal-footer - button.btn.btn-default.cancel(ng-click='modals.dropsEnabled = false') Close + button.btn.btn-default.cancel(ng-click='modals.dropsEnabled = false')=env.t('close') div(modal='modals.drop') .modal-header - h3 An item has dropped! + h3=env.t('itemDrop') .modal-body p span.item-drop-icon(class='Pet_{{user._tmp.drop.type}}_{{user._tmp.drop.key}}') | {{user._tmp.drop.dialog}} .modal-footer - button.btn.btn-default.cancel(ng-click='modals.drop = false') Close \ No newline at end of file + button.btn.btn-default.cancel(ng-click='modals.drop = false')=env.t('close') \ No newline at end of file