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