1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

apply i18n strings

This commit is contained in:
Kyle Spearrin
2018-01-24 16:32:24 -05:00
parent c49ac847d6
commit 4f62792bda
6 changed files with 96 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
<form (ngSubmit)="onSubmit()" #heroForm="ngForm">
<label for="email">Email Address</label>
<label for="email">{{'emailAddress' | i18n}}</label>
<input id="email" type="text" [(ngModel)]="email" name="email" required /><br /><br />
<label for="master-password">Master Password</label>
<label for="master-password">{{'masterPassword' | i18n}}</label>
<input id="master-password" type="password" [(ngModel)]="masterPassword"
name="masterPassword" required /><br /><br />
<button type="submit">Submit</button>