Language Change

This commit is contained in:
Nilanjan Chakrabarti
2025-07-10 13:19:31 +05:30
parent 9b439338a9
commit d4de89a91f
22 changed files with 334 additions and 227 deletions

View File

@@ -1,3 +1,5 @@
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:flutter/material.dart';
import 'package:kmobile/features/fund_transfer/screens/tpin_otp_screen.dart';
@@ -9,7 +11,7 @@ class TpinSetupPromptScreen extends StatelessWidget {
final theme = Theme.of(context);
return Scaffold(
appBar: AppBar(
title: const Text('Set TPIN'),
title: Text(AppLocalizations.of(context).setTpin),
),
body: Padding(
padding: const EdgeInsets.symmetric(vertical: 100.0),
@@ -20,7 +22,7 @@ class TpinSetupPromptScreen extends StatelessWidget {
size: 60, color: theme.colorScheme.primary),
const SizedBox(height: 18),
Text(
'TPIN Required',
AppLocalizations.of(context).tpinRequired,
style: theme.textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.bold,
color: theme.colorScheme.primary,
@@ -28,7 +30,7 @@ class TpinSetupPromptScreen extends StatelessWidget {
),
const SizedBox(height: 12),
Text(
'You need to set your TPIN to continue with secure transactions.',
AppLocalizations.of(context).tpinRequiredMessage,
textAlign: TextAlign.center,
style: theme.textTheme.bodyMedium?.copyWith(
color: Colors.grey[700],
@@ -37,8 +39,8 @@ class TpinSetupPromptScreen extends StatelessWidget {
const SizedBox(height: 32),
ElevatedButton.icon(
icon: const Icon(Icons.arrow_forward_rounded),
label: const Text(
'Set TPIN',
label: Text(
AppLocalizations.of(context).setTpin,
style: TextStyle(fontSize: 18, fontWeight: FontWeight.w600),
),
style: ElevatedButton.styleFrom(
@@ -62,7 +64,7 @@ class TpinSetupPromptScreen extends StatelessWidget {
Padding(
padding: const EdgeInsets.symmetric(horizontal: 18.0),
child: Text(
'Your TPIN is a 6-digit code used to authorize transactions. Keep it safe and do not share it with anyone.',
AppLocalizations.of(context).tpinInfo,
textAlign: TextAlign.center,
style: theme.textTheme.bodySmall?.copyWith(
color: Colors.grey[600],