Skip to content

Commit

Permalink
feat: Remove WIP indicator from french language
Browse files Browse the repository at this point in the history
  • Loading branch information
astubenbord committed Mar 3, 2023
1 parent d1bd761 commit 3a97571
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class _LanguageSelectionSettingState extends State<LanguageSelectionSetting> {
context: context,
builder: (_) => RadioSettingsDialog<String>(
footer: const Text(
"* Work in progress, not fully translated yet. Some words may be displayed in English!",
"* Not fully translated yet. Some words may be displayed in English!",
),
titleText: S.of(context)!.language,
options: [
Expand All @@ -47,7 +47,7 @@ class _LanguageSelectionSettingState extends State<LanguageSelectionSetting> {
),
RadioOption(
value: 'fr',
label: _languageOptions['fr']! + "*",
label: _languageOptions['fr']!,
),
RadioOption(
value: 'cs',
Expand Down

0 comments on commit 3a97571

Please sign in to comment.