someone forgot localization

This commit is contained in:
balazsmanus@chameleon
2025-02-28 15:04:29 +01:00
parent 16d473b8ea
commit 8e46ca1962
2 changed files with 8 additions and 2 deletions

View File

@@ -18,6 +18,8 @@ extension ScreensLocalization on String {
"task_content": "Task content...",
"task_name": "Task title...",
"new_task": "New Task",
"next": "Next",
"cancel": "Cancel",
},
"hu_hu": {
"notes": "Füzet",
@@ -34,6 +36,8 @@ extension ScreensLocalization on String {
"task_content": "Feladat tartalma...",
"task_name": "Feladat címe...",
"new_task": "Új feladat",
"next": "Tovább",
"cancel": "Mégse",
},
"de_de": {
"notes": "Broschüre",
@@ -50,6 +54,8 @@ extension ScreensLocalization on String {
"task_content": "Aufgabeninhalt...",
"task_name": "Aufgabentitel...",
"new_task": "Neue Aufgabe",
"next": "Weiter",
"cancel": "Abbrechen",
},
};

View File

@@ -116,10 +116,10 @@ class ShareThemeDialogState extends State<ShareThemeDialog> {
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16.0),
),
value: shareNick,
value: !shareNick,
onChanged: (value) {
setState(() {
shareNick = value;
shareNick = !value;
});
},
title: Text("shareNickname".i18n),