Skip to content

Commit

Permalink
Localize labels in first run ass
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMStraub committed Sep 24, 2022
1 parent 8617c6c commit d92e556
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/GrampsjsFirstRun.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,30 +146,30 @@ class GrampsjsFirstRun extends GrampsjsTranslateMixin(LitElement) {
outlined
required
id="username"
label="Username"
label="${this._('Username')}"
type="text"
></mwc-textfield>
<mwc-textfield
@input="${this.checkValidity}"
outlined
required
id="password"
label="Password"
label="${this._('Password')}"
type="password"
></mwc-textfield>
<mwc-textfield
@input="${this.checkValidity}"
outlined
required
id="email"
label="E-mail"
label="${this._('E-mail')}"
type="email"
></mwc-textfield>
<mwc-textfield
@input="${this.checkValidity}"
outlined
id="full_name"
label="Full name"
label="${this._('Full Name')}"
type="text"
></mwc-textfield>
Expand Down Expand Up @@ -268,7 +268,7 @@ class GrampsjsFirstRun extends GrampsjsTranslateMixin(LitElement) {
<mwc-button
raised
label="submit"
label="${this._('Submit')}"
type="submit"
@click="${this._submit}"
?disabled=${this.stateUser !== STATE_READY}
Expand Down

0 comments on commit d92e556

Please sign in to comment.