forked from firka/student-legacy
fixed translations
This commit is contained in:
parent
c55f4058c7
commit
8d84b2c65f
@ -80,6 +80,8 @@ extension SettingsLocalization on String {
|
|||||||
"app_icon": "App Icon",
|
"app_icon": "App Icon",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"personalization": "Personalization",
|
"personalization": "Personalization",
|
||||||
|
"edit": "Edit",
|
||||||
|
"switch_account": "Switch Account",
|
||||||
},
|
},
|
||||||
"hu_hu": {
|
"hu_hu": {
|
||||||
"personal_details": "Személyes információk",
|
"personal_details": "Személyes információk",
|
||||||
@ -158,6 +160,8 @@ extension SettingsLocalization on String {
|
|||||||
"app_icon": "Alkalmazásikon",
|
"app_icon": "Alkalmazásikon",
|
||||||
"settings": "Beállítások",
|
"settings": "Beállítások",
|
||||||
"personalization": "Személyre szabás",
|
"personalization": "Személyre szabás",
|
||||||
|
"edit": "Szerkesztés",
|
||||||
|
"switch_account": "Fiókváltás",
|
||||||
},
|
},
|
||||||
"de_de": {
|
"de_de": {
|
||||||
"personal_details": "Persönliche Angaben",
|
"personal_details": "Persönliche Angaben",
|
||||||
@ -236,6 +240,8 @@ extension SettingsLocalization on String {
|
|||||||
"app_icon": "App-Symbol",
|
"app_icon": "App-Symbol",
|
||||||
"settings": "Einstellungen",
|
"settings": "Einstellungen",
|
||||||
"personalization": "Personalisierung",
|
"personalization": "Personalisierung",
|
||||||
|
"edit": "Bearbeiten",
|
||||||
|
"switch_account": "Benutzer wechseln",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -58,7 +58,9 @@ class GeneralSettingsScreen extends StatelessWidget {
|
|||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(vertical: 16.0, horizontal: 24.0),
|
padding: const EdgeInsets.symmetric(vertical: 16.0, horizontal: 24.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [],
|
children: [
|
||||||
|
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -23,7 +23,7 @@ class MenuPersonalizeSettings extends StatelessWidget {
|
|||||||
CupertinoPageRoute(
|
CupertinoPageRoute(
|
||||||
builder: (context) => const PersonalizeSettingsScreen()),
|
builder: (context) => const PersonalizeSettingsScreen()),
|
||||||
),
|
),
|
||||||
title: Text("personalize".i18n),
|
title: Text("personalization".i18n),
|
||||||
leading: Icon(
|
leading: Icon(
|
||||||
FeatherIcons.droplet,
|
FeatherIcons.droplet,
|
||||||
size: 22.0,
|
size: 22.0,
|
||||||
@ -51,7 +51,7 @@ class PersonalizeSettingsScreen extends StatelessWidget {
|
|||||||
surfaceTintColor: Theme.of(context).scaffoldBackgroundColor,
|
surfaceTintColor: Theme.of(context).scaffoldBackgroundColor,
|
||||||
leading: BackButton(color: AppColors.of(context).text),
|
leading: BackButton(color: AppColors.of(context).text),
|
||||||
title: Text(
|
title: Text(
|
||||||
"personalize".i18n,
|
"personalization".i18n,
|
||||||
style: TextStyle(color: AppColors.of(context).text),
|
style: TextStyle(color: AppColors.of(context).text),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -5,12 +5,18 @@ extension SettingsLocalization on String {
|
|||||||
{
|
{
|
||||||
"en_en": {
|
"en_en": {
|
||||||
"general": "General",
|
"general": "General",
|
||||||
|
"personalization": "Personalization",
|
||||||
|
"extras": "Extras",
|
||||||
},
|
},
|
||||||
"hu_hu": {
|
"hu_hu": {
|
||||||
"general": "General",
|
"general": "Általános",
|
||||||
|
"personalization": "Személyre szabás",
|
||||||
|
"extras": "Extrák",
|
||||||
},
|
},
|
||||||
"de_de": {
|
"de_de": {
|
||||||
"general": "General",
|
"general": "Allgemeine",
|
||||||
|
"personalization": "Personalisierung",
|
||||||
|
"extras": "Extras",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user