Merge pull request 'fixed message' (#406) from mntx-404 into main
All checks were successful
ci/woodpecker/push/frontend Pipeline was successful
All checks were successful
ci/woodpecker/push/frontend Pipeline was successful
Reviewed-on: #406
This commit was merged in pull request #406.
This commit is contained in:
@@ -667,9 +667,9 @@
|
|||||||
"colComment": "Comment",
|
"colComment": "Comment",
|
||||||
"recipientNoPaymentDetails": "This recipient has no available payment details.",
|
"recipientNoPaymentDetails": "This recipient has no available payment details.",
|
||||||
"paymentInfo": "Payment info",
|
"paymentInfo": "Payment info",
|
||||||
"paymentStatusSuccessTitle": "Payment completed",
|
"paymentStatusSuccessTitle": "Payment submitted",
|
||||||
"paymentStatusFailureTitle": "Payment failed",
|
"paymentStatusFailureTitle": "Payment failed",
|
||||||
"paymentStatusSuccessMessage": "The payment was completed successfully.",
|
"paymentStatusSuccessMessage": "The payment was submitted successfully.",
|
||||||
"paymentStatusFailureMessage": "The payment could not be completed.",
|
"paymentStatusFailureMessage": "The payment could not be completed.",
|
||||||
"recipient": "Recipient",
|
"recipient": "Recipient",
|
||||||
"chooseAnotherRecipient": "Choose another recipient",
|
"chooseAnotherRecipient": "Choose another recipient",
|
||||||
|
|||||||
@@ -668,9 +668,9 @@
|
|||||||
"colComment": "Комментарий",
|
"colComment": "Комментарий",
|
||||||
"recipientNoPaymentDetails": "У этого получателя нет доступных платежных данных.",
|
"recipientNoPaymentDetails": "У этого получателя нет доступных платежных данных.",
|
||||||
"paymentInfo": "Платежная информация",
|
"paymentInfo": "Платежная информация",
|
||||||
"paymentStatusSuccessTitle": "Платеж выполнен",
|
"paymentStatusSuccessTitle": "Платеж отправлен",
|
||||||
"paymentStatusFailureTitle": "Платеж не выполнен",
|
"paymentStatusFailureTitle": "Платеж не выполнен",
|
||||||
"paymentStatusSuccessMessage": "Платеж прошел успешно.",
|
"paymentStatusSuccessMessage": "Платеж отправлен успешно.",
|
||||||
"paymentStatusFailureMessage": "Не удалось выполнить платеж.",
|
"paymentStatusFailureMessage": "Не удалось выполнить платеж.",
|
||||||
"recipient": "Получатель",
|
"recipient": "Получатель",
|
||||||
"chooseAnotherRecipient": "Выбрать другого получателя",
|
"chooseAnotherRecipient": "Выбрать другого получателя",
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ Future<void> showPaymentStatusDialog(BuildContext context, {required bool isSucc
|
|||||||
final l10n = AppLocalizations.of(dialogContext)!;
|
final l10n = AppLocalizations.of(dialogContext)!;
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
icon: isSuccess
|
icon: isSuccess
|
||||||
? const Icon(Icons.check_circle, color: Colors.green, size: 48)
|
? const Icon(Icons.hourglass_top, color: Colors.amber, size: 48)
|
||||||
: const Icon(Icons.error, color: Colors.red, size: 48),
|
: const Icon(Icons.error, color: Colors.red, size: 48),
|
||||||
title: Text(
|
title: Text(
|
||||||
isSuccess
|
isSuccess
|
||||||
|
|||||||
Reference in New Issue
Block a user