mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 07:15:35 +01:00
Merge pull request #2343 from BlueWallet/confirmationslabel
FIX: Confirmations locale
This commit is contained in:
commit
7f6559c8f9
3 changed files with 7 additions and 1 deletions
|
@ -304,6 +304,7 @@
|
|||
"cancel_explain": "We will replace this transaction with the one that pays you and has higher fees. This effectively cancels transaction. This is called RBF—Replace by Fee.",
|
||||
"cancel_no": "This transaction is not replaceable.",
|
||||
"cancel_title": "Cancel this transaction (RBF)",
|
||||
"confirmations_lowercase": "{confirmations} confirmations",
|
||||
"cpfp_create": "Create",
|
||||
"cpfp_exp": "We will create another transaction that spends your unconfirmed transaction. The total fee will be higher than the original transaction fee, so it should be mined faster. This is called CPFP - Child Pays For Parent.",
|
||||
"cpfp_no_bump": "This transaction is not bumpable",
|
||||
|
|
|
@ -388,6 +388,7 @@
|
|||
"cancel_explain": "Reemplazaremos esta transacción con la que te paga y tiene tasas más altas, lo que cancelará la transacción. A esto se le llama RBF (Replace By Fee).",
|
||||
"cancel_no": "Esta transacción no se puede reemplazar",
|
||||
"cancel_title": "Cancelar esta transacción (RBF)",
|
||||
"confirmations_lowercase": "{confirmations} confirmaciones",
|
||||
"cpfp_create": "Crear",
|
||||
"cpfp_exp": "Crearemos otra transacción que gastará tu otra transacción aun no confirmada. La comisión total será mayor que la comisión original, lo cual debería hacer que sea minada antes. A esto se le llama CPFP (Child Pays For Parent).",
|
||||
"cpfp_no_bump": "Esta transacción no se puede acelerar",
|
||||
|
|
|
@ -336,7 +336,11 @@ const TransactionsStatus = () => {
|
|||
)}
|
||||
|
||||
<View style={[styles.confirmations, stylesHook.confirmations]}>
|
||||
<Text style={styles.confirmationsText}>{tx.confirmations > 6 ? '6+' : tx.confirmations} confirmations</Text>
|
||||
<Text style={styles.confirmationsText}>
|
||||
{loc.formatString(loc.transactions.confirmations_lowercase, {
|
||||
confirmations: tx.confirmations > 6 ? '6+' : tx.confirmations,
|
||||
})}
|
||||
</Text>
|
||||
</View>
|
||||
</BlueCard>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue