fix: translate cancel & save on icon selector

This commit is contained in:
2025-08-29 08:32:12 +02:00
parent 479122df7b
commit 0e31d3de3f
2 changed files with 3 additions and 3 deletions

View File

@@ -384,7 +384,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
children: [
GestureDetector(
child: FirkaButton(
text: "Mégse",
text: widget.data.l10n.cancel,
bgColor: appStyle.colors.buttonSecondaryFill,
fontStyle: appStyle.fonts.B_14R
.apply(color: appStyle.colors.textSecondary)),
@@ -394,7 +394,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
),
GestureDetector(
child: FirkaButton(
text: "Mentés",
text: widget.data.l10n.save,
bgColor: appStyle.colors.accent,
fontStyle: appStyle.fonts.B_14R
.apply(color: appStyle.colors.textSecondary)),