2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 02:05:29 +00:00

More translations

This commit is contained in:
Oliver Walters
2021-05-19 23:15:49 +10:00
parent 34a6a43d35
commit b86025013d
4 changed files with 16 additions and 12 deletions

View File

@ -94,14 +94,14 @@ class _InvenTreeLoginSettingsState extends State<InvenTreeLoginSettingsWidget> {
),
StringField(
label: I18N.of(context).username,
hint: "Enter username",
hint: I18N.of(context).enterPassword,
initial: createNew ? '' : profile.username,
onSaved: (value) => _username = value,
validator: _validateUsername,
),
StringField(
label: I18N.of(context).password,
hint: "Enter password",
hint: I18N.of(context).enterUsername,
initial: createNew ? '' : profile.password,
onSaved: (value) => _password = value,
validator: _validatePassword,