Add Localization as a Feature

This commit is contained in:
Vishesh Handa
2020-08-31 11:21:57 +02:00
parent 0f5bb345d3
commit 4e1b2e2563
2 changed files with 12 additions and 0 deletions

View File

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

View File

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