Subtitles added in payment tabs with Localizations
This commit is contained in:
@@ -43,7 +43,7 @@ class FundTransferScreen extends StatelessWidget {
|
|||||||
child: FundTransferManagementTile(
|
child: FundTransferManagementTile(
|
||||||
icon: Symbols.person,
|
icon: Symbols.person,
|
||||||
label: "Self Pay",
|
label: "Self Pay",
|
||||||
subtitle: "Move money between your own accounts with ease. Your funds, your way.",
|
subtitle: AppLocalizations.of(context).ftselfpaysubtitle,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.push(
|
Navigator.push(
|
||||||
context,
|
context,
|
||||||
@@ -65,7 +65,7 @@ class FundTransferScreen extends StatelessWidget {
|
|||||||
child: FundTransferManagementTile(
|
child: FundTransferManagementTile(
|
||||||
icon: Symbols.input_circle,
|
icon: Symbols.input_circle,
|
||||||
label: AppLocalizations.of(context).ownBank,
|
label: AppLocalizations.of(context).ownBank,
|
||||||
subtitle: "Send money to your saved beneficiaries within Kangra Bank.",
|
subtitle: AppLocalizations.of(context).ftownsubtitle,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.push(
|
Navigator.push(
|
||||||
context,
|
context,
|
||||||
@@ -86,7 +86,7 @@ class FundTransferScreen extends StatelessWidget {
|
|||||||
child: FundTransferManagementTile(
|
child: FundTransferManagementTile(
|
||||||
icon: Symbols.output_circle,
|
icon: Symbols.output_circle,
|
||||||
label: AppLocalizations.of(context).outsideBank,
|
label: AppLocalizations.of(context).outsideBank,
|
||||||
subtitle: "Transfer funds to your saved beneficiaries in any other bank across India.",
|
subtitle: AppLocalizations.of(context).ftoutsidesubtitle,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.push(
|
Navigator.push(
|
||||||
context,
|
context,
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class _QuickPayScreen extends State<QuickPayScreen> {
|
|||||||
child: QuickPayManagementTile(
|
child: QuickPayManagementTile(
|
||||||
icon: Symbols.input_circle,
|
icon: Symbols.input_circle,
|
||||||
label: AppLocalizations.of(context).ownBank,
|
label: AppLocalizations.of(context).ownBank,
|
||||||
subtitle: "Seamlessly send money to your loved ones within Kangra Bank. Fast, secure, and always at your fingertips!",
|
subtitle: AppLocalizations.of(context).quickownsubtitle,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.push(
|
Navigator.push(
|
||||||
context,
|
context,
|
||||||
@@ -50,7 +50,7 @@ class _QuickPayScreen extends State<QuickPayScreen> {
|
|||||||
child: QuickPayManagementTile(
|
child: QuickPayManagementTile(
|
||||||
icon: Symbols.output_circle,
|
icon: Symbols.output_circle,
|
||||||
label: AppLocalizations.of(context).outsideBank,
|
label: AppLocalizations.of(context).outsideBank,
|
||||||
subtitle: "Transfer funds to any bank across India with ease. Your transactions are secure and processed quickly.",
|
subtitle: AppLocalizations.of(context).quickoutsidesubtitle,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.push(
|
Navigator.push(
|
||||||
context,
|
context,
|
||||||
|
|||||||
@@ -406,5 +406,10 @@
|
|||||||
"rbiCode2": "RBI Code 2",
|
"rbiCode2": "RBI Code 2",
|
||||||
"latitude": "Latitude",
|
"latitude": "Latitude",
|
||||||
"address": "Customer Address",
|
"address": "Customer Address",
|
||||||
"transactions": "Transactions"
|
"transactions": "Transactions",
|
||||||
|
"quickownsubtitle": "Seamlessly send money to your loved ones within Kangra Bank. Fast, secure, and always at your fingertips",
|
||||||
|
"quickoutsidesubtitle": "Transfer funds to any bank across India with ease. Your transactions are secure and processed quickly",
|
||||||
|
"ftselfpaysubtitle": "Move money between your own accounts with ease. Your funds, your way",
|
||||||
|
"ftownsubtitle": "Send money to your saved beneficiaries within Kangra Bank",
|
||||||
|
"ftoutsidesubtitle": "Transfer funds to your saved beneficiaries in any other bank across India"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -407,5 +407,10 @@
|
|||||||
"rbiCode2": "आरबीआई कोड 2",
|
"rbiCode2": "आरबीआई कोड 2",
|
||||||
"latitude": "अक्षांश",
|
"latitude": "अक्षांश",
|
||||||
"address": "ग्राहक का पता",
|
"address": "ग्राहक का पता",
|
||||||
"transactions": "लेनदेन"
|
"transactions": "लेनदेन",
|
||||||
|
"quickownsubtitle": "कांगड़ा बैंक के ज़रिए अपने प्रियजनों को आसानी से पैसे भेजें। तेज़, सुरक्षित और हमेशा आपकी उंगलियों पर",
|
||||||
|
"quickoutsidesubtitle": "भारत भर में किसी भी बैंक में आसानी से धनराशि स्थानांतरित करें। आपके लेन-देन सुरक्षित और शीघ्रता से संसाधित होते हैं",
|
||||||
|
"ftselfpaysubtitle": "अपने खातों के बीच आसानी से पैसे ट्रांसफर करें। आपका पैसा, आपकी सुविधानुसार",
|
||||||
|
"ftownsubtitle": "कांगड़ा बैंक के माध्यम से अपने बचत लाभार्थियों को पैसे भेजें",
|
||||||
|
"ftoutsidesubtitle": "भारत भर में किसी भी अन्य बैंक में अपने सहेजे गए लाभार्थियों को धनराशि हस्तांतरित करें"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user