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