mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-13 02:35:27 +00:00
More translations
This commit is contained in:
2
lib/l10n
2
lib/l10n
Submodule lib/l10n updated: 0b7d0314cb...58e2c5027b
@ -98,7 +98,7 @@ class _InvenTreeLoginSettingsState extends State<InvenTreeLoginSettingsWidget> {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
Divider(),
|
Divider(),
|
||||||
Text("Account Details"),
|
Text(I18N.of(context).accountDetails),
|
||||||
TextFormField(
|
TextFormField(
|
||||||
initialValue: _username,
|
initialValue: _username,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
|
@ -34,7 +34,7 @@ class _InvenTreeSettingsState extends State<InvenTreeSettingsWidget> {
|
|||||||
child: ListView(
|
child: ListView(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("Server Settings"),
|
title: Text(I18N.of(context).serverSettings),
|
||||||
subtitle: Text("Configure server and login settings"),
|
subtitle: Text("Configure server and login settings"),
|
||||||
leading: FaIcon(FontAwesomeIcons.server),
|
leading: FaIcon(FontAwesomeIcons.server),
|
||||||
onTap: _editServerSettings,
|
onTap: _editServerSettings,
|
||||||
@ -47,13 +47,13 @@ class _InvenTreeSettingsState extends State<InvenTreeSettingsWidget> {
|
|||||||
onTap: _about,
|
onTap: _about,
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("Release Notes"),
|
title: Text(I18N.of(context).releaseNotes),
|
||||||
subtitle: Text("Display app release notes"),
|
subtitle: Text("Display app release notes"),
|
||||||
leading: FaIcon(FontAwesomeIcons.fileAlt),
|
leading: FaIcon(FontAwesomeIcons.fileAlt),
|
||||||
onTap: _releaseNotes,
|
onTap: _releaseNotes,
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("Report Bug"),
|
title: Text(I18N.of(context).reportBug),
|
||||||
subtitle: Text("Report bug or suggest new feature"),
|
subtitle: Text("Report bug or suggest new feature"),
|
||||||
leading: FaIcon(FontAwesomeIcons.bug),
|
leading: FaIcon(FontAwesomeIcons.bug),
|
||||||
onTap: null,
|
onTap: null,
|
||||||
|
Reference in New Issue
Block a user