taler-android

Android apps for GNU Taler (wallet, PoS, cashier)
Log | Files | Refs | README | LICENSE

commit c7834ba68ef909825caf9a321dc4aec6849a208f
parent bf617bda2d1144b2f60bb8d339cda2da7a197d40
Author: Iván Ávalos <avalos@disroot.org>
Date:   Wed, 24 Jul 2024 08:44:38 -0600

[wallet] Confirm with bank -> Authorize in bank

Diffstat:
Mwallet/src/main/java/net/taler/wallet/transactions/ActionButtonComposable.kt | 3++-
Mwallet/src/main/res/values/strings.xml | 4++--
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/wallet/src/main/java/net/taler/wallet/transactions/ActionButtonComposable.kt b/wallet/src/main/java/net/taler/wallet/transactions/ActionButtonComposable.kt @@ -20,6 +20,7 @@ import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.size import androidx.compose.material.icons.Icons import androidx.compose.material.icons.filled.AccountBalance +import androidx.compose.material.icons.filled.Link import androidx.compose.material3.Button import androidx.compose.material3.ButtonDefaults import androidx.compose.material3.Icon @@ -85,7 +86,7 @@ private fun ConfirmBankButton( ) { val label = stringResource(R.string.withdraw_button_confirm_bank) Icon( - Icons.Default.AccountBalance, + Icons.Default.Link, label, modifier = Modifier.size(ButtonDefaults.IconSize) ) diff --git a/wallet/src/main/res/values/strings.xml b/wallet/src/main/res/values/strings.xml @@ -138,7 +138,7 @@ GNU Taler is immune against many types of fraud, such as phishing of credit card <string name="transaction_state_expired">This transaction has expired</string> <string name="transaction_state_failed">This transaction has failed</string> <string name="transaction_state_pending">This transaction is pending</string> - <string name="transaction_state_pending_bank">Waiting for confirmation in the bank</string> + <string name="transaction_state_pending_bank">Waiting for authorization in the bank</string> <string name="transaction_state_suspended">This transaction is suspended</string> <string name="transactions_abort">Abort</string> <string name="transactions_abort_dialog_message">Are you sure you want to abort this transaction? Funds still in transit might get lost.</string> @@ -232,7 +232,7 @@ GNU Taler is immune against many types of fraud, such as phishing of credit card <string name="withdraw_account_currency">Account #%1$d (%2$s)</string> <string name="withdraw_amount_error">Enter valid amount</string> <string name="withdraw_button_confirm">Confirm Withdraw</string> - <string name="withdraw_button_confirm_bank">Confirm with bank</string> + <string name="withdraw_button_confirm_bank">Authorize in bank</string> <string name="withdraw_button_tos">Review Terms</string> <string name="withdraw_error_message">Withdrawing is currently not possible. Please try again later!</string> <string name="withdraw_error_test">Error withdrawing TESTKUDOS</string>