2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 13:36:50 +00:00

More translations

This commit is contained in:
Oliver Walters 2021-02-02 21:24:07 +11:00
parent c3bc6a94b0
commit 18229fbfe2
3 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 0b7d0314cb27fd51422836d3b0dcb3285689898a Subproject commit 58e2c5027b481a3a620c27b90ae20b888a02bd96

View File

@ -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(

View File

@ -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,