fix(translations): correct misspelled translate directives

This commit is contained in:
Jason Dreyzehner 2016-10-13 00:00:25 -04:00
commit 04672a779d
3 changed files with 4 additions and 4 deletions

View file

@ -14,7 +14,7 @@
<form name="aliasForm" ng-submit="save(aliasForm)" novalidate>
<div class="list settings-input-group">
<label class="item item-input item-stacked-label">
<span class="input-label" transalate>Name</span>
<span class="input-label" translate>Name</span>
<input type="text" id="alias" name="alias" ng-model="alias.value" placeholder="Personal Wallet" required>
</label>
</div>

View file

@ -15,7 +15,7 @@
<form name="emailForm" ng-submit="save(emailForm)" novalidate>
<div class="list settings-input-group">
<label class="item item-input item-stacked-label">
<span class="input-label" transalate>Email Address</span>
<span class="input-label" translate>Email Address</span>
<input type="email" id="email" name="email" ng-model="email.value" required></input>
</label>
</div>

View file

@ -7,12 +7,12 @@
<form name="exportForm" novalidate>
<div class="card">
<label class="item item-input item-stacked-label">
<span class="input-label" transalate>Set up a password</span>
<span class="input-label" translate>Set up a password</span>
<input type="password" placeholder="{{'Your password'|translate}}" ng-model="formData.password">
</label>
<label class="item item-input item-stacked-label">
<span class="input-label" transalate>Repeat the password</span>
<span class="input-label" translate>Repeat the password</span>
<input type="password" placeholder="{{'Repeat password'|translate}}" ng-model="formData.repeatpassword">
</label>
</div>