|
7 | 7 | <div class="form-row form-row--half"> |
8 | 8 | <div class="form-field" id="account_firstname_id"> |
9 | 9 | <label class="form-label" for="account_firstname"> |
10 | | - {{lang 'account.settings.first_name' }} |
| 10 | + {{#if (lang 'account.settings.first_name') '!==' 'First Name'}} |
| 11 | + {{lang 'account.settings.first_name'}} |
| 12 | + {{else}} |
| 13 | + {{forms.edit_account.first_name_label}} |
| 14 | + {{/if}} |
11 | 15 | <small>{{lang 'common.required' }}</small> |
12 | 16 | </label> |
13 | 17 | <input aria-labelledby="account_firstname_id" aria-live="polite" autocomplete="given-name" type="text" class="form-input" name="account_firstname" id="account_firstname" value="{{forms.edit_account.first_name}}"> |
14 | 18 | </div> |
15 | 19 | <div class="form-field" id="account_lastname_id"> |
16 | 20 | <label class="form-label" for="account_lastname"> |
17 | | - {{lang 'account.settings.last_name' }} |
| 21 | + {{#if (lang 'account.settings.last_name') '!==' 'Last Name'}} |
| 22 | + {{lang 'account.settings.last_name'}} |
| 23 | + {{else}} |
| 24 | + {{forms.edit_account.last_name_label}} |
| 25 | + {{/if}} |
18 | 26 | <small>{{lang 'common.required' }}</small> |
19 | 27 | </label> |
20 | 28 | <input aria-labelledby="account_lastname_id" aria-live="polite" autocomplete="family-name" type="text" class="form-input" name="account_lastname" id="account_lastname" value="{{forms.edit_account.last_name}}"> |
21 | 29 | </div> |
22 | 30 | <div class="form-field" id="account_companyname_id"> |
23 | 31 | <label class="form-label" for="account_companyname"> |
24 | | - {{lang 'account.settings.company' }} |
| 32 | + {{#if (lang 'account.settings.company') '!==' 'Company'}} |
| 33 | + {{lang 'account.settings.company'}} |
| 34 | + {{else}} |
| 35 | + {{forms.edit_account.company_label}} |
| 36 | + {{/if}} |
25 | 37 | </label> |
26 | 38 | <input aria-labelledby="account_companyname_id" aria-live="polite" autocomplete="organization" type="text" class="form-input" name="account_companyname" id="account_companyname" value="{{forms.edit_account.company_name}}"> |
27 | 39 | </div> |
28 | 40 | <div class="form-field" id="account_phone_id"> |
29 | 41 | <label class="form-label" for="account_phone"> |
30 | | - {{lang 'account.settings.phone' }} |
| 42 | + {{#if (lang 'account.settings.phone') '!==' 'Phone Number'}} |
| 43 | + {{lang 'account.settings.phone'}} |
| 44 | + {{else}} |
| 45 | + {{forms.edit_account.phone_label}} |
| 46 | + {{/if}} |
31 | 47 | </label> |
32 | 48 | <input aria-labelledby="account_phone_id" aria-live="polite" autocomplete="tel" type="text" class="form-input" name="account_phone" id="account_phone" value="{{forms.edit_account.phone}}"> |
33 | 49 | </div> |
|
0 commit comments