mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
Localize invalid invoice messages
This commit is contained in:
parent
d24e01f1f5
commit
9c0b07147b
@ -618,7 +618,7 @@ class TradeBox extends Component {
|
|||||||
<Grid item xs={12} align="center">
|
<Grid item xs={12} align="center">
|
||||||
<TextField
|
<TextField
|
||||||
error={this.state.badInvoice}
|
error={this.state.badInvoice}
|
||||||
helperText={this.state.badInvoice ? this.state.badInvoice : "" }
|
helperText={this.state.badInvoice ? t(this.state.badInvoice) : "" }
|
||||||
label={t("Payout Lightning Invoice")}
|
label={t("Payout Lightning Invoice")}
|
||||||
required
|
required
|
||||||
value={this.state.invoice}
|
value={this.state.invoice}
|
||||||
@ -1204,7 +1204,7 @@ handleRatingRobosatsChange=(e)=>{
|
|||||||
<Grid item xs={12} align="center">
|
<Grid item xs={12} align="center">
|
||||||
<TextField
|
<TextField
|
||||||
error={this.state.badInvoice}
|
error={this.state.badInvoice}
|
||||||
helperText={this.state.badInvoice ? this.state.badInvoice : "" }
|
helperText={this.state.badInvoice ? t(this.state.badInvoice) : "" }
|
||||||
label={t("Payout Lightning Invoice")}
|
label={t("Payout Lightning Invoice")}
|
||||||
required
|
required
|
||||||
inputProps={{
|
inputProps={{
|
||||||
|
@ -279,13 +279,7 @@
|
|||||||
"Keys":"Keys",
|
"Keys":"Keys",
|
||||||
"Save messages as a JSON file":"Save messages as a JSON file",
|
"Save messages as a JSON file":"Save messages as a JSON file",
|
||||||
"Messages":"Messages",
|
"Messages":"Messages",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
|
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
|
||||||
"Contract Box":"Contract Box",
|
"Contract Box":"Contract Box",
|
||||||
@ -388,6 +382,10 @@
|
|||||||
"A non-recoverable error has occurred.":"A non-recoverable error has occurred.",
|
"A non-recoverable error has occurred.":"A non-recoverable error has occurred.",
|
||||||
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).":"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).",
|
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).":"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).",
|
||||||
"Insufficient unlocked balance in RoboSats' node.":"Insufficient unlocked balance in RoboSats' node.",
|
"Insufficient unlocked balance in RoboSats' node.":"Insufficient unlocked balance in RoboSats' node.",
|
||||||
|
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com":"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com",
|
||||||
|
"The invoice provided has no explicit amount":"The invoice provided has no explicit amount",
|
||||||
|
"Does not look like a valid lightning invoice":"Does not look like a valid lightning invoice",
|
||||||
|
"The invoice provided has already expired":"The invoice provided has already expired",
|
||||||
|
|
||||||
|
|
||||||
"INFO DIALOG - InfoDiagog.js":"App information and clarifications and terms of use",
|
"INFO DIALOG - InfoDiagog.js":"App information and clarifications and terms of use",
|
||||||
|
@ -380,6 +380,10 @@
|
|||||||
"A non-recoverable error has occurred.":"A non-recoverable error has occurred.",
|
"A non-recoverable error has occurred.":"A non-recoverable error has occurred.",
|
||||||
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).":"Los detalles del pago son incorrectos (hash desconocido, cantidad inválida o CLTV delta final inválido).",
|
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).":"Los detalles del pago son incorrectos (hash desconocido, cantidad inválida o CLTV delta final inválido).",
|
||||||
"Insufficient unlocked balance in RoboSats' node.":"Balance libre de ser usado en el nodo de RoboSats insuficiente.",
|
"Insufficient unlocked balance in RoboSats' node.":"Balance libre de ser usado en el nodo de RoboSats insuficiente.",
|
||||||
|
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com":"La factura entregada parece solo tener rutas ocultas muy caras, estas usando una billetera incomptable(¿Quizás Muun?). Echa un vistazo a la lista de billeteras compatibles en wallets.robosats.com",
|
||||||
|
"The invoice provided has no explicit amount":"La factura entregada no contiene una cantidad explícita",
|
||||||
|
"Does not look like a valid lightning invoice":"No parece ser una factura lightning válida",
|
||||||
|
"The invoice provided has already expired":"La factura que has entregado ya ha caducado",
|
||||||
|
|
||||||
|
|
||||||
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
|
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
|
||||||
|
Loading…
Reference in New Issue
Block a user