FIX: Confirmations locale

This commit is contained in:
marcosrdz 2020-12-13 05:07:11 -05:00
parent 3770b5229a
commit 4bf87aeb98
3 changed files with 5 additions and 1 deletions

View file

@ -302,6 +302,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",
"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",

View file

@ -374,6 +374,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": "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",

View file

@ -336,7 +336,9 @@ const TransactionsStatus = () => {
)}
<View style={[styles.confirmations, stylesHook.confirmations]}>
<Text style={styles.confirmationsText}>{tx.confirmations > 6 ? '6+' : tx.confirmations} confirmations</Text>
<Text style={styles.confirmationsText}>
{tx.confirmations > 6 ? '6+' : tx.confirmations} {loc.transactions.confirmations_lowercase}
</Text>
</View>
</BlueCard>