Use of language strings for placeholder in forms.

This commit is contained in:
Lionel Salabartan
2016-03-15 01:02:44 +01:00
parent a30bafb38e
commit b59b9ea8ad
4 changed files with 7 additions and 11 deletions

View File

@@ -5,7 +5,6 @@ form:
fields: fields:
- name: username - name: username
type: text type: text
placeholder: Username placeholder: PLUGIN_ADMIN.USERNAME
autofocus: true autofocus: true
--- ---

View File

@@ -9,12 +9,10 @@ form:
fields: fields:
- name: username - name: username
type: text type: text
placeholder: Username placeholder: PLUGIN_ADMIN.USERNAME
autofocus: true autofocus: true
- name: password - name: password
type: password type: password
placeholder: Password placeholder: PLUGIN_ADMIN.PASSWORD
--- ---

View File

@@ -5,10 +5,10 @@ form:
fields: fields:
- name: username - name: username
type: text type: text
placeholder: Username placeholder: PLUGIN_ADMIN.USERNAME
autofocus: true autofocus: true
- name: password - name: password
type: password type: password
placeholder: Password placeholder: PLUGIN_ADMIN.PASSWORD
--- ---

View File

@@ -5,13 +5,12 @@ form:
fields: fields:
- name: username - name: username
type: text type: text
placeholder: Username placeholder: PLUGIN_ADMIN.USERNAME
readonly: true readonly: true
- name: password - name: password
type: password type: password
placeholder: Password placeholder: PLUGIN_ADMIN.PASSWORD
autofocus: true autofocus: true
- name: token - name: token
type: hidden type: hidden
--- ---