mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 10:17:16 +08:00
Add Localization as a Feature
This commit is contained in:
@ -241,6 +241,9 @@ feature:
|
|||||||
encryptedHosting: Encrypted Git Hosting
|
encryptedHosting: Encrypted Git Hosting
|
||||||
desktop: Desktop App
|
desktop: Desktop App
|
||||||
markdownToolbar: Markdown Toolbar
|
markdownToolbar: Markdown Toolbar
|
||||||
|
localization:
|
||||||
|
title: Localization
|
||||||
|
subtitle: Allow GitJournal to be translated
|
||||||
|
|
||||||
feature_timeline:
|
feature_timeline:
|
||||||
title: Feature Timeline
|
title: Feature Timeline
|
||||||
|
@ -36,6 +36,7 @@ class Features {
|
|||||||
Feature.yamlCreatedKey,
|
Feature.yamlCreatedKey,
|
||||||
Feature.yamlTagsKey,
|
Feature.yamlTagsKey,
|
||||||
Feature.customMetaData,
|
Feature.customMetaData,
|
||||||
|
Feature.localization,
|
||||||
];
|
];
|
||||||
|
|
||||||
static final inProgress = <String>[
|
static final inProgress = <String>[
|
||||||
@ -310,6 +311,14 @@ class Feature {
|
|||||||
"",
|
"",
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
static final localization = Feature(
|
||||||
|
"localization",
|
||||||
|
DateTime(2020, 08, 18),
|
||||||
|
tr("feature.localization.title"),
|
||||||
|
tr("feature.localization.subtitle"),
|
||||||
|
false,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Feature Adding checklist
|
// Feature Adding checklist
|
||||||
|
Reference in New Issue
Block a user