Skip to content

Commit

Permalink
TF-2241 Change display text
Browse files Browse the repository at this point in the history
  • Loading branch information
hieutbui authored and hoangdat committed Dec 27, 2023
1 parent 8eb7ea5 commit 4b963c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ class LanguageAndRegionHeaderWidget extends StatelessWidget {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(AppLocalizations.of(context).languageAndRegion,
Text(AppLocalizations.of(context).language,
style: const TextStyle(
fontSize: 17,
fontWeight: FontWeight.bold,
color: Colors.black)),
const SizedBox(height: 4),
Text(AppLocalizations.of(context).languageAndRegionSubtitle,
Text(AppLocalizations.of(context).languageSubtitle,
style: const TextStyle(
fontSize: 15,
fontWeight: FontWeight.normal,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ enum AccountMenuItem {
case AccountMenuItem.profiles:
return AppLocalizations.of(context).profiles;
case AccountMenuItem.languageAndRegion:
return AppLocalizations.of(context).languageAndRegion;
return AppLocalizations.of(context).language;
case AccountMenuItem.emailRules:
return AppLocalizations.of(context).emailRules;
case AccountMenuItem.forward:
Expand Down

0 comments on commit 4b963c0

Please sign in to comment.