mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-11 13:33:33 +08:00
Translate Git Remote Settings title/subtitle
This commit is contained in:
@ -35,6 +35,8 @@ settings:
|
|||||||
subtitle: Notes which have not been synced will be lost
|
subtitle: Notes which have not been synced will be lost
|
||||||
ok: Ok
|
ok: Ok
|
||||||
cancel: Cancel
|
cancel: Cancel
|
||||||
|
title: Git Remote Settings
|
||||||
|
subtitle: Configure where your notes are synced
|
||||||
noteMetaData:
|
noteMetaData:
|
||||||
title: Note Metadata Settings
|
title: Note Metadata Settings
|
||||||
subtitle: Configure how the YAML Metadata is saved
|
subtitle: Configure how the YAML Metadata is saved
|
||||||
|
@ -87,7 +87,7 @@ class _GitRemoteSettingsScreenState extends State<GitRemoteSettingsScreen> {
|
|||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: const Text('Git Remote Settings'),
|
title: Text(tr("settings.gitRemote.title")),
|
||||||
leading: IconButton(
|
leading: IconButton(
|
||||||
icon: const Icon(Icons.arrow_back),
|
icon: const Icon(Icons.arrow_back),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
|
@ -179,8 +179,8 @@ class SettingsListState extends State<SettingsList> {
|
|||||||
ListTile(title: gitAuthorForm),
|
ListTile(title: gitAuthorForm),
|
||||||
ListTile(title: gitAuthorEmailForm),
|
ListTile(title: gitAuthorEmailForm),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: const Text("Git Remote Settings"),
|
title: Text(tr("settings.gitRemote.title")),
|
||||||
subtitle: const Text("Configure where your notes are synced"),
|
subtitle: Text(tr("settings.gitRemote.subtitle")),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
var route = MaterialPageRoute(
|
var route = MaterialPageRoute(
|
||||||
builder: (context) => GitRemoteSettingsScreen(),
|
builder: (context) => GitRemoteSettingsScreen(),
|
||||||
|
Reference in New Issue
Block a user