Fix for UI & Spanish translation. Implement concurrent invoice payments.

This commit is contained in:
Reckless_Satoshi 2022-04-15 16:26:39 -07:00
parent 7bca5ecdc7
commit 14b4c16fa3
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
14 changed files with 377 additions and 3382 deletions

View File

@ -153,9 +153,7 @@ class Command(BaseCommand):
queryset = queryset.union(queryset_retries)
for lnpayment in queryset:
success, _ = follow_send_payment(
lnpayment
) # Do follow_send_payment.delay() for further concurrency.
success, _ = follow_send_payment.delay(lnpayment.payment_hash)
# If failed, reset mision control. (This won't scale well, just a temporary fix)
if not success:

View File

@ -63,7 +63,7 @@ def users_cleansing():
return results
@shared_task(name="follow_send_payment")
def follow_send_payment(lnpayment):
def follow_send_payment(hash):
"""Sends sats to buyer, continuous update"""
from decouple import config
@ -73,6 +73,7 @@ def follow_send_payment(lnpayment):
from api.lightning.node import LNNode, MACAROON
from api.models import LNPayment, Order
lnpayment = LNPayment.objects.get(payment_hash=hash)
fee_limit_sat = int(
max(
lnpayment.num_satoshis *

View File

@ -27,7 +27,7 @@ services:
build: ./frontend
container_name: npm-dev
restart: always
command: npm run dev
command: npm run build
volumes:
- ./frontend:/usr/src/frontend
@ -73,6 +73,7 @@ services:
REDIS_URL: redis://localhost:6379
volumes:
- .:/usr/src/robosats
- /mnt/development/lnd:/lnd
network_mode: service:tor
tor:

View File

@ -262,7 +262,7 @@ class BookPage extends Component {
{t("I want to")}
</FormHelperText>
<Select
sx={{width:130}}
sx={{width:110}}
autoWidth={true}
label={t("Select Order Type")}
required="true"
@ -285,7 +285,7 @@ class BookPage extends Component {
</FormHelperText>
<Select
//autoWidth={true}
sx={{width:130}}
sx={{width:120}}
label={t("Select Payment Currency")}
required="true"
value={this.props.currency}

View File

@ -157,12 +157,12 @@ class Chat extends Component {
/>
</Grid>
<Grid item alignItems="stretch" style={{ display: "flex" }}>
<Button disabled={!this.state.connected} type="submit" variant="contained" color="primary">{t("Send")} </Button>
<Button sx={{'width':68}} disabled={!this.state.connected} type="submit" variant="contained" color="primary">{t("Send")} </Button>
</Grid>
</Grid>
</form>
<FormHelperText>
{t("The chat has no memory: if you leave, messages are lost.")} <Link target="_blank" href="https://github.com/Reckless-Satoshi/robosats/blob/main/docs/sensitive-data-PGP-guide.md/"> {t("Learn easy PGP encryption.")}</Link>
{t("The chat has no memory: if you leave, messages are lost.")} <Link target="_blank" href={t("PGP_guide_url")}> {t("Learn easy PGP encryption.")}</Link>
</FormHelperText>
</Container>
)

View File

@ -315,7 +315,7 @@ class MakerPage extends Component {
error={this.state.badPaymentMethod}
helperText={this.state.badPaymentMethod ? t("Must be shorter than 65 characters"):""}
label={this.state.currency==1000 ? t("Swap Destination(s)") : t("Fiat Payment Method(s)")}
listHeaderText={t("You can add any method")}
listHeaderText={t("You can add new methods")}
addNewButtonText={t("Add New")}
/>
</Tooltip>

View File

@ -27,6 +27,8 @@ function pn(x) {
}
class TradeBox extends Component {
invoice_escrow_duration = 3;
constructor(props) {
super(props);
this.state = {
@ -260,7 +262,7 @@ class TradeBox extends Component {
<Typography color="green" component="subtitle1" variant="subtitle1" align="center">
<div style={{display:'flex',alignItems:'center', justifyContent:'center', flexWrap:'wrap'}}>
<LockOpenIcon/>
{this.props.data.is_maker ? t("Your maker bond was unlock") : t("Your taker bond was unlocked")}
{this.props.data.is_maker ? t("Your maker bond was unlocked") : t("Your taker bond was unlocked")}
</div>
</Typography>
</Grid>
@ -285,7 +287,7 @@ class TradeBox extends Component {
<QRCode value={this.props.data.escrow_invoice} size={305} style={{position:'relative', top:'3px'}}/>
</Box>
<Tooltip disableHoverListener enterTouchDelay="0" title={t("Copied!")}>
<Button size="small" color="inherit" onClick={() => {navigator.clipboard.writeText(this.props.data.escrow_invoice)}} align="center"> <ContentCopy/>Copy to clipboard</Button>
<Button size="small" color="inherit" onClick={() => {navigator.clipboard.writeText(this.props.data.escrow_invoice)}} align="center"> <ContentCopy/>{t("Copy to clipboard")}</Button>
</Tooltip>
</Grid>
<Grid item xs={12} align="center">
@ -381,8 +383,8 @@ class TradeBox extends Component {
<Divider/>
<ListItem>
<Typography component="body2" variant="body2" align="left">
<p>{t("Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.")} </p>
<p>{t("Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).")}</p>
<p>{t("Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.", {invoice_escrow_duration: pn(this.invoice_escrow_duration)})} </p>
<p>{t("If the order expires untaken, your bond will return to you and no action needed.")}</p>
</Typography>
</ListItem>
<Grid item xs={12} align="center">
@ -535,7 +537,7 @@ class TradeBox extends Component {
: null }
<Grid item xs={12} align="center">
<IconButton><QrCodeScannerIcon onClick={this.handleQRbutton}/></IconButton>
<Button onClick={this.handleClickSubmitInvoiceButton} variant='contained' color='primary'>Submit</Button>
<Button onClick={this.handleClickSubmitInvoiceButton} variant='contained' color='primary'>{t("Submit")}</Button>
</Grid>
{this.showBondIsLocked()}

View File

@ -42,7 +42,7 @@
"Explicit":"Explicit",
"Set a fix amount of satoshis":"Set a fix amount of satoshis",
"Satoshis":"Satoshis",
"Let the taker chose an amount within the range":"Let the taker chose an amount within the range",
"Let the taker chose an amount within the range":"Let the taker choose an amount within the range",
"Enable Amount Range":"Enable Amount Range",
"From": "From",
"to":"to",
@ -216,7 +216,7 @@
"Collaborative Cancel":"Collaborative Cancel",
"Invalid Order Id":"Invalid Order Id",
"You must have a robot avatar to see the order details":"You must have a robot avatar to see the order details",
"This order has been cancelled collaborativelly":"This order has been cancelled collaborativelly",
"This order has been cancelled collaborativelly":"This order has been cancelled collaboratively",
"You are not allowed to see this order":"You are not allowed to see this order",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues":"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues",
@ -230,6 +230,7 @@
"Send":"Send",
"The chat has no memory: if you leave, messages are lost.":"The chat has no memory: if you leave, messages are lost.",
"Learn easy PGP encryption.":"Learn easy PGP encryption.",
"PGP_guide_url":"https://github.com/Reckless-Satoshi/robosats/blob/main/docs/sensitive-data-PGP-guide.md/",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box":"Contract Box",
@ -244,11 +245,11 @@
"Your taker bond is locked":"Your taker bond is locked",
"Your maker bond was settled":"Your maker bond was settled",
"Your taker bond was settled":"Your taker bond was settled",
"Your maker bond was unlock":"Your maker bond was unlock",
"Your maker bond was unlocked":"Your maker bond was unlocked",
"Your taker bond was unlocked":"Your taker bond was unlocked",
"Your order is public":"Your order is public",
"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.":"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.",
"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).":"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.":"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.",
"If the order expires untaken, your bond will return to you (no action needed).":"If the order expires untaken, your bond will return to you (no action needed).",
"Enable Telegram Notifications":"Enable Telegram Notifications",
"Enable TG Notifications":"Enable TG Notifications",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.":"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.",

View File

@ -230,6 +230,7 @@
"Send":"Send",
"The chat has no memory: if you leave, messages are lost.":"The chat has no memory: if you leave, messages are lost.",
"Learn easy PGP encryption.":"Learn easy PGP encryption.",
"PGP_guide_url":"https://github.com/Reckless-Satoshi/robosats/blob/main/docs/sensitive-data-PGP-guide.md/",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box":"Contract Box",
@ -244,11 +245,11 @@
"Your taker bond is locked":"Your taker bond is locked",
"Your maker bond was settled":"Your maker bond was settled",
"Your taker bond was settled":"Your taker bond was settled",
"Your maker bond was unlock":"Your maker bond was unlock",
"Your maker bond was unlocked":"Your maker bond was unlocked",
"Your taker bond was unlocked":"Your taker bond was unlocked",
"Your order is public":"Your order is public",
"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.":"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.",
"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).":"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.":"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.",
"If the order expires untaken, your bond will return to you (no action needed).":"If the order expires untaken, your bond will return to you (no action needed).",
"Enable Telegram Notifications":"Enable Telegram Notifications",
"Enable TG Notifications":"Enable TG Notifications",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.":"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.",

View File

@ -1,53 +1,53 @@
{
"UNSAFE-ALERT": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "No estás usando RoboSats de forma privada",
"You are not using RoboSats privately": "No usas RoboSats de forma privada",
"desktop_unsafe_alert": "Algunas funciones (como el chat) están deshabilitadas para protegerte y sin ellas no podrás completar un intercambio. Para proteger tu privacidad y habilitar RoboSats por completo, usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"phone_unsafe_alert": "No podrás completar un intercambio. Usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"Hide": "Ocultar",
"UserGenPage": "User Generation Page and Landing Page",
"Simple and Private LN P2P Exchange": "Intercambio de Lightning P2P Fácil y Privado",
"Simple and Private LN P2P Exchange": "Intercambio LN P2P Fácil y Privado",
"This is your trading avatar": "Este es tu Robot de compraventa",
"Store your token safely":"Guarda tu token con cuidado",
"Store your token safely":"Guarda tu token de forma segura",
"A robot avatar was found, welcome back!": "Se encontró un Robot, ¡bienvenido de nuevo!",
"Copied!":"¡Copiado!",
"Generate a new token":"Genera un nuevo token",
"Generate Robot":"Generar Robot",
"You must enter a new token first":"Primero introduce un nuevo token",
"You must enter a new token first": "Primero introduce un nuevo token",
"Make Order":"Crear orden",
"Info": "Información",
"Info": "Info",
"View Book": "Ver libro",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order":"Orden",
"Customize":"Personalizar",
"Buy or Sell Bitcoin?":"¿Comprar o vender bitcoin?",
"Buy or Sell Bitcoin?":"¿Comprar o Vender Bitcoin?",
"Buy":"Comprar",
"Sell":"Vender",
"Amount":"Cantidad",
"Amount of fiat to exchange for bitcoin":"Cantidad de fiat a cambiar por bitcoin",
"Amount":"Monto",
"Amount of fiat to exchange for bitcoin":"Monto de fiat a cambiar por bitcoin",
"Invalid":"No válido",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Introduce tus métodos de pago. Se recomiendan encarecidamente métodos rápidos.",
"Must be shorter than 65 characters":"Debe tener menos de 65 caracteres",
"Swap Destination(s)": "Destino(s) del intercambio",
"Fiat Payment Method(s)":"Método(s) de pago en fiat",
"You can add any method":"Puedes añadir cualquier método",
"Swap Destination(s)": "Destino(s) del Swap",
"Fiat Payment Method(s)":"Método(s) de Pago en Fiat",
"You can add new methods":"Puedes añadir nuevos métodos",
"Add New":"Añadir nuevo",
"Choose a Pricing Method":"Elige un método de precio",
"Choose a Pricing Method":"Elige Cómo Establecer el Precio",
"Relative":"Relativo",
"Let the price move with the market":"EL precio se moverá con el mercado",
"Premium over Market (%)": "Prima (%) sobre mercado",
"Let the price move with the market":"EL precio se moverá relativo al mercado",
"Premium over Market (%)": "Prima sobre el mercado (%)",
"Explicit":"Fijo",
"Set a fix amount of satoshis": "Establece una cantidad fija de Sats",
"Satoshis": "Sats",
"Let the taker chose an amount within the range":"Permite que el tomador elija una cantidad dentro del rango.",
"Enable Amount Range":"Activar rango",
"Set a fix amount of satoshis": "Establece un monto fijo de Sats",
"Satoshis": "Satoshis",
"Let the taker chose an amount within the range":"Permite que el tomador elija un monto dentro del rango.",
"Enable Amount Range":"Activar Monto con Rango",
"From": "Desde",
"to":"hasta",
"to":"a ",
"Public Duration (HH:mm)": "Duración pública (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Establece la implicación requerida, aumenta para mayor seguridad",
"Set the skin-in-the-game, increase for higher safety assurance": "Establece la implicación requerida (aumentar para mayor seguridad)",
"Fidelity Bond Size": "Tamaño de la fianza",
"Allow bondless takers":"Permitir tomadores sin fianza",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "PRÓXIMAMENTE - ¡Alto riesgo! Limitado a {{limitSats}}K Sats",
@ -102,38 +102,38 @@
"Lifetime contracted volume":"Volumen contratado total",
"Made with":"Hecho con",
"and":"y",
"... somewhere on Earth!": "... ¡en algún lugar de la tierra!",
"... somewhere on Earth!": "... en algún lugar de la tierra!",
"Community":"Comunidad",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Sólo se ofrece soporte a través de canales públicos. Únete a nuestra comunidad de Telegram si tienes preguntas o quieres pasar el rato con otros Robots geniales. Por favor, utiliza nuestro GitHub para notificar un error o proponer nuevas funcionalidades.",
"Join the RoboSats group": "Únete al grupo de RoboSats",
"Telegram (English / Main)":"Telegram (Inglés / Principal)",
"RoboSats Telegram Communities":"Comunidades de RoboSats en Telegram:",
"RoboSats Telegram Communities":"Comunidades de RoboSats",
"Join RoboSats Spanish speaking community!": "¡Únete a la comunidad de RoboSats en español!",
"Join RoboSats Russian speaking community!": "¡Únete a la comunidad de RoboSats en ruso!",
"Join RoboSats Chinese speaking community!": "¡Únete a la comunidad de RoboSats en chino!",
"Join RoboSats English speaking community!": "¡Únete a la comunidad de RoboSats en inglés!",
"Tell us about a new feature or a bug":"Coméntanos nuevas funcionalidades o errores",
"Tell us about a new feature or a bug":"Propón funcionalidades o notifica errores",
"Github Issues - The Robotic Satoshis Open Source Project": "Issues de GitHub - The Robotic Satoshis Open Source Project",
"Your Profile":"Tu perfil",
"Your robot": "Tu Robot",
"One active order #{{orderID}}":"Una orden activa #{{orderID}}",
"One active order #{{orderID}}":"Ir a orden activa #{{orderID}}",
"Your current order":"Tu orden actual",
"No active orders":"Sin órdenes activas",
"No active orders":"No hay órdenes activas",
"Your token (will not remain here)":"Tu token (no permanecerá aquí)",
"Back it up!":"¡Guárdalo!",
"Cannot remember":"No lo recuerdo",
"Cannot remember":"Se olvidó",
"Rewards and compensations":"Recompensas y compensaciones",
"Share to earn 100 Sats per trade": "Comparte para ganar 100 Sats por intercambio",
"Your referral link":"Tu enlace de referidos",
"Your earned rewards":"Tus recompensas ganadas",
"Claim":"Reclamar",
"Claim":"Retirar",
"Invoice for {{amountSats}} Sats": "Factura por {{amountSats}} Sats",
"Submit":"Enviar",
"There it goes, thank you!🥇": "Ahí va, ¡gracias!🥇",
"You have an active order":"Tienes una orden activa",
"You can claim satoshis!": "¡Puedes reclamar Sats!",
"Public Buy Orders":"Órdenes de compra públicas",
"Public Sell Orders":"Órdenes de venta públicas",
"You can claim satoshis!": "¡Puedes retirar Sats!",
"Public Buy Orders":"Órdenes de compra",
"Public Sell Orders":"Órdenes de venta",
"Today Active Robots":"Robots activos hoy",
"24h Avg Premium": "Prima media en 24h",
"Trade Fee":"Comisión",
@ -152,16 +152,16 @@
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Ventana de orden",
"Order Box": "Orden",
"Contract":"Contrato",
"Active":"Activo",
"Seen recently":"Visto recientemente",
"Inactive":"Inactivo",
"(Seller)":"(Vendedor)",
"(Buyer)":"(Comprador)",
"Order maker": "Creador de la orden",
"Order taker": "Tomador de la orden",
"Order Details":"Detalles de la orden",
"Order maker": "Creador",
"Order taker": "Tomador",
"Order Details":"Detalles",
"Order status":"Estado de la orden",
"Waiting for maker bond":"Esperando la fianza del creador",
"Public":"Pública",
@ -181,27 +181,27 @@
"Wait for dispute resolution":"Espera a la resolución de la disputa",
"Maker lost dispute":"El creador perdió la disputa",
"Taker lost dispute":"El tomador perdió la disputa",
"Amount range":"Rango de cantidad",
"Amount range":"Rango del monto",
"Swap destination": "Destino del intercambio",
"Accepted payment methods":"Métodos de pago aceptados",
"Others":"Otros",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/bitcoin - Prima: {{premium}}%",
"Price and Premium":"Precio y prima",
"Amount of Satoshis": "Cantidad de Sats",
"Premium over market price":"Prima sobre precio de mercado",
"Premium over market price":"Prima sobre el mercado",
"Order ID":"ID de la orden",
"Expires in":"Expira en",
"{{nickname}} is asking for a collaborative cancel":"{{nickname}} solicita cancelar colaborativamente",
"You asked for a collaborative cancellation":"Solicitaste cancelar colaborativamente",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Factura caducada. No confirmaste la publicación de la orden a tiempo. Crea una nueva orden.",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Factura caducada: no confirmaste la publicación de la orden a tiempo. Puedes crear una nueva orden.",
"This order has been cancelled by the maker":"El creador ha cancelado esta orden",
"Penalty lifted, good to go!":"Sanción revocada, ¡vamos!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s":"¡No puedes tomar una orden aún! Espera {{timeMin}}m {{timeSec}}s",
"Too low": "Demasiado bajo",
"Too high":"Demasiado alto",
"Enter amount of fiat to exchange for bitcoin": "Introduce la cantidad de fiat a cambiar por bitcoin",
"Amount {{currencyCode}}":"Cantidad {{currencyCode}}",
"You must specify an amount first":"Primero debes especificar una cantidad",
"Too low": "Muy poco",
"Too high":"Demasiado",
"Enter amount of fiat to exchange for bitcoin": "Introduce el monto de fiat a cambiar por bitcoin",
"Amount {{currencyCode}}":"Monto {{currencyCode}}",
"You must specify an amount first":"Primero debes especificar el monto",
"Take Order":"Tomar orden",
"Wait until you can take an order":"Espera hasta poder tomar una orden",
"Cancel the order?": "¿Cancelar la orden?",
@ -210,7 +210,7 @@
"The maker is away": "El creador está ausente",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Tomando esta orden corres el riesgo de perder el tiempo. Si el creador no procede a tiempo, se te compensará en Sats con el 50% de la fianza del creador.",
"Collaborative cancel the order?":"¿Cancelar la orden colaborativamente?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Se ha bloqueado el colateral. La orden solo puede cancelarse si tanto el creador como el tomador lo acuerdan.",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Dado que el colateral está bloqueado, la orden solo puede cancelarse si tanto el creador como el tomador lo acuerdan.",
"Ask for Cancel":"Solicitar cancelación",
"Cancel":"Cancelar",
"Collaborative Cancel":"Cancelación colaborativa",
@ -222,50 +222,51 @@
"CHAT BOX - Chat.js": "Ventana del chat",
"You": "Tú",
"Peer": "Compañero",
"Peer": "Él",
"connected": "conectado",
"disconnected": "desconectado",
"Type a message": "Escribe un mensaje",
"Connecting...": "Conectando...",
"Send": "Enviar",
"The chat has no memory: if you leave, messages are lost.": "El chat no tiene memoria: si lo cierras, los mesajes se perderan.",
"Learn easy PGP encryption.": "Aprende encriptación fácil PGP.",
"The chat has no memory: if you leave, messages are lost.": "Chat sin memoria: si lo cierras, los mensajes se pierden.",
"Learn easy PGP encryption.": "Aprende encriptación PGP.",
"PGP_guide_url":"https://github.com/Reckless-Satoshi/robosats/blob/main/docs/sensitive-data-PGP-guide_es.md/",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Ventana del contrato",
"Robots show commitment to their peers": "Los Robots muestran su compromiso con sus compañeros",
"Lock {{amountSats}} Sats to PUBLISH order": "Bloquear {{amountSats}} Sats para PUBLICAR la orden",
"Lock {{amountSats}} Sats to TAKE order": "Bloquear {{amountSats}} Sats para TOMAR la orden",
"Lock {{amountSats}} Sats as collateral": "Bloquear {{amountSats}} Sats como colateral",
"Contract Box": "Contrato",
"Robots show commitment to their peers": "Los Robots deben mostrar su compromiso",
"Lock {{amountSats}} Sats to PUBLISH order": "Bloquea {{amountSats}} Sats para PUBLICAR",
"Lock {{amountSats}} Sats to TAKE order": "Bloquea {{amountSats}} Sats para TOMAR",
"Lock {{amountSats}} Sats as collateral": "Bloquea {{amountSats}} Sats como colateral",
"Copy to clipboard": "Copiar al portapapeles",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Esto es una factura de retención, será retenida en tu cartera. Solo se cobrará si cancelas o pierdes una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Esto es una factura de retención, será retenida en tu cartera. Será liberada al comprador cuando confirmes que has recibido el {{currencyCode}}.",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Esto es una factura retenida, los Sats se bloquean en tu cartera. Solo se cobrará si cancelas o pierdes una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Esto es una factura retenida, los Sats se bloquean en tu cartera. Será liberada al comprador cuando confirmes que has recibido el {{currencyCode}}.",
"Your maker bond is locked": "Tu fianza de creador está bloqueada",
"Your taker bond is locked": "Tu fianza de tomador está bloqueada",
"Your maker bond was settled": "Tu fianza de creador se ha publicado",
"Your taker bond was settled": "Tu fianza de tomador se ha publicado",
"Your maker bond was unlock": "Tu fianza de creador se ha desbloqueado",
"Your taker bond was unlocked": "Tu fianza de tomador se ha desbloqueado",
"Your order is public": "Tu orden es póblica",
"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.": "Se paciente mientras los Robots comprueban el libro. Puede llevar un tiempo. Esta ventana sonará 🔊 una vez que algún Robot tome tu orden.",
"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).": "Ten en cuenta que si tu prima es excesiva o tu moneda o metodos de pago no son populares, tu oferta puede expirar sin ser tomada. Tu fianza será devuelta a tu cartera automáticamente.",
"Enable Telegram Notifications": "Activar Notificaciones de Telegram",
"Enable TG Notifications": "Habilitar Notificaciones TG",
"Your maker bond was settled": "Tu fianza se ha cobrado",
"Your taker bond was settled": "Tu fianza se ha cobrado",
"Your maker bond was unlocked": "Tu fianza se ha desbloqueado",
"Your taker bond was unlocked": "Tu fianza se ha desbloqueado",
"Your order is public": "Tu orden es pública",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.": "Se paciente hasta que un robot tome tu orden. Esta ventana sonará 🔊 una vez que algún Robot tome tu orden. Entonces tendrás {{invoice_escrow_duration}} horas para responder, si no respondes arriesgas perder tu fianza.",
"If the order expires untaken, your bond will return to you (no action needed).": "Si tu oferta expira sin ser tomada, tu fianza será desbloqueada en tu cartera automáticamente.",
"Enable Telegram Notifications": "Notificar en Telegram",
"Enable TG Notifications": "Activar Notificaciones TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Serás llevado a un chat con el bot de Telegram de RoboSats. Simplemente pulsa Empezar. Ten en cuenta que si activas las notificaciones de Telegram reducirás tu anonimato.",
"Go back": "Volver",
"Enable": "Activar",
"Telegram enabled": "Telegram activado",
"Public orders for {{currencyCode}}": "Órdenes publicas para {{currencyCode}}",
"Public orders for {{currencyCode}}": "Órdenes públicas para {{currencyCode}}",
"Premium rank": "Rango de prima",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre ordenes públicas de {{currencyCode}} (más alto, más barato)",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre las órdenes públicas de {{currencyCode}} (más alto, más barato)",
"A taker has been found!": "¡Un tomador ha sido encontrado!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Por favor, espera a que el tomador bloquee su fianza. Si no lo hace a tiempo, la orden será pública de nuevo.",
"Submit an invoice for {{amountSats}} Sats": "Envía una factura por {{amountSats}} Sats",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "¡El tomador está comprometido! Antes de dejarte enviar {{amountFiat}} {{currencyCode}}, queremos asegurarnos de que puedes recibir en Lightning. Por favor proporciona una factura valida por {{amountSats}} Sats.",
"Payout Lightning Invoice": "Paga la factura Lightning",
"Your invoice looks good!": "¡Tu factura se ve bien!",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "¡El tomador está comprometido! Antes de dejarte enviar {{amountFiat}} {{currencyCode}}, queremos asegurarnos de que puedes recibir en Lightning. Por favor proporciona una factura válida por {{amountSats}} Sats.",
"Payout Lightning Invoice": "Factura Lightning",
"Your invoice looks good!": "¡Tu factura es buena!",
"We are waiting for the seller lock the trade amount.": "Esperando a que el vendedor bloquee el colateral.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el vendedor no deposita, recuperarás tu fianza automáticamente. Además, conseguirás una compensación (comprueba las recompensas en tu perfil).",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el vendedor no deposita, recuperarás tu fianza automáticamente. Además, recibirás una compensación (comprueba las recompensas en tu perfil).",
"The trade collateral is locked!": "¡El colateral está bloqueado!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estamos esperando a que el comprador envíe una factura Lightning. Cuando lo haga, podrás comunicarle directamente los detalles del pago en fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el comprador no coopera, se te devolverá el colateral y tu fianza automáticamente. Además, recibiras una compensación (comprueba las recompensas en tu perfil).",
@ -273,11 +274,11 @@
"Confirm {{currencyCode}} received": "Confirmar {{currencyCode}} recibido",
"Open Dispute": "Abrir Disputa",
"The order has expired": "La orden ha expirado",
"Chat with the buyer": "Chat con el comprador",
"Chat with the seller": "Chat con el vendedor",
"Say hi! Be helpful and concise. Let them know how to send you {{currencyCode}}.": "¡Di hola! Se útil y conciso. Escríbele como puede enviarte {{currencyCode}}.",
"Chat with the buyer": "Habla con el comprador",
"Chat with the seller": "Habla con el vendedor",
"Say hi! Be helpful and concise. Let them know how to send you {{currencyCode}}.": "¡Di hola! Sé claro y conciso. Escríbele como puede enviarte {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "El comprador a enviado el fiat. Presiona 'Confirmar recibido' cuando lo hayas recibido.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "¡Di hola! Pregunta por los detalles del pago y presiona 'Confirmar enviado' en cuanto lo hayas enviado.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "¡Di hola! Pide los detalles de pago y pulsa 'Confirmar enviado' en cuanto pagues.",
"Wait for the seller to confirm he has received the payment.": "Espera a que el vendedor confirme que ha recibido el pago.",
"Confirm you received {{currencyCode}}?": "¿Confirmas que has recibido {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{currencyCode}} has arrived to your account. In addition, if you have received {{currencyCode}} and do not confirm the receipt, you risk losing your bond.": "Confirmando que has recibido el fiat finalizará el intercambio. Los Sats del colateral se enviarán al comparador. Confirma sólo después de asegurar que te ha llegado {{currencyCode}}. Además, si lo has recibido {{currencyCode}} y no confirmas la recepción, te arriesgas a perder tu fianza.",
@ -285,33 +286,33 @@
"🎉Trade finished!🥳": "🎉¡Intercambio finalizado!🥳",
"rate_robosats": "¿Qué opinas de 🤖<1>RoboSats</1>⚡?",
"Thank you! RoboSats loves you too ❤️": "¡Muchas gracias! RoboSats te quiere también ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats es mejor con más liquidez y usuarios. ¡Cuéntale a un amigo bitcoiner sobre RoboSats!",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats mejora con más liquidez y usuarios. ¡Cuéntale a un amigo bitcoiner sobre RoboSats!",
"Thank you for using Robosats!": "¡Gracias por usar RoboSats!",
"let_us_know_hot_to_improve": "Dinos cómo podría mejorar la plataforma (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Empezar de nuevo",
"Attempting Lightning Payment": "Intentando el pago en Lightning",
"Attempting Lightning Payment": "Intentando el pago Lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats está intentando pagar tu factura de Lightning. Recuerda que los nodos Lightning deben estar en línea para recibir pagos.",
"Retrying!": "¡Reintentando!",
"Lightning Routing Failed": "Fallo en el enrutamiento de Lightning",
"Your invoice has expired or more than 3 payment attempts have been made. Muun wallet is not recommended. ": "Tu factura ha expirado o se han hecho más de 3 intentos de pago. La cartera Muun no está recomendada. ",
"Check the list of compatible wallets": "Comprueba la lista de carteras compatibles",
"RoboSats will try to pay your invoice 3 times every 5 minutes. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats intentará pagar tu factura 3 veces cada 5 minutos. Si sigue fallando, deberías poder presentar una nueva factura. Comprueba si tienes suficiente liquidez entrante. Recuerda que los nodos de Lightning tienen que estar en línea para poder recibir pagos.",
"Check the list of compatible wallets": "Mira la lista de carteras compatibles",
"RoboSats will try to pay your invoice 3 times every 5 minutes. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats intentará pagar tu factura 3 veces cada 5 minutos. Si sigue fallando, podras presentar una nueva factura. Comprueba si tienes suficiente liquidez entrante. Recuerda que los nodos de Lightning tienen que estar en línea para poder recibir pagos.",
"Next attempt in": "Próximo intento en",
"Do you want to open a dispute?": "¿Quieres abrir una disputa?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "El equipo de RoboSats examinará las declaraciones y evidencias presentadas. Como el equipo no puede leer el chat, necesitas crear un caso completo. Es mejor dar un método de contacto de usar y tirar con tu declaración. Los Sats del colateral serán enviados al ganador de la disputa, mientras que el perdedor perderá la fianza.",
"Disagree": "Desacuerdo",
"Agree and open dispute": "Aceptar y abrir disputa",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "El equipo de RoboSats examinará las declaraciones y evidencias presentadas. Como el equipo no puede leer el chat, necesitas escribir una declaració completa y exhaustiva. Es mejor dar un método de contacto de usar y tirar con tu declaración. Los Sats del colateral serán enviados al ganador de la disputa, mientras que el perdedor perderá la fianza.",
"Disagree": "Volver",
"Agree and open dispute": "Abrir disputa",
"A dispute has been opened": "Una disputa ha sido abierta",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Por favor, presenta tu declaración. Se claro y conciso sobre que pasó y entrega la evidencia necesaria. DEBES dar un metodo de contacto para comunicarte con el equipo: método de contacto de usar y tirar, XMPP o usuario de Telegram. Las disputas son resueltas con la discreción de los Robots reales (también conocidos como humanos), así que ayuda en lo posible para asegurar un resultado justo. 5000 caracteres máx.",
"Submit dispute statement": "Presentar la declaración de la disputa",
"Submit dispute statement": "Presentar declaración",
"We have received your statement": "Hemos recibido tu declaración",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estamos esperando la declaración de tu compañero. Si dudas sobre el estado de la disputa o quieres añadir más información, contacta en robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Por favor, guarda la información necesaria para identificar tu orden y tus pagos: ID de orden; claves del pago de la fianza o el colateral (comprueba tu cartera Lightning); cantidad exacta de Sats; y nombre del Robot. Tendrás que identificarte como el usuario involucrado en este intercambio por email (u otro método de contacto).",
"We have the statements": "Tenemos la declaración",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambas declaraciones se han recibido, espera a que el equipo resuelva la disputa. Si dudas sobre el estado de la disputa o quieres añadir información, contacta con robosats@protonmail.com. Si no diste un método de contacto, o dudas de si lo escribiste bien, escribenos inmediatamente.",
"You have won the dispute": "Has ganado la diputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Puedes reclamar la cantidad de la resolución de la disputa (fianza y colateral) desde las recompensas de tu perfil. Si hay algo que el equipo pueda hacer, no dudes en contactar con robosats@protonmail.com (o a través del método de contacto de usar y tirar que especificaste).",
"You have lost the dispute": "Has perdido la diputa",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambas declaraciones se han recibido, espera a que el equipo resuelva la disputa. Si dudas sobre el estado de la disputa o quieres añadir información, contacta con robosats@protonmail.com. Si no diste un método de contacto, o dudas de si lo escribiste bien, escríbenos inmediatamente.",
"You have won the dispute": "Has ganado la disputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Puedes retirar la cantidad de la resolución de la disputa (fianza y colateral) desde las recompensas de tu perfil. Si hay algo que el equipo pueda hacer, no dudes en contactar con robosats@protonmail.com (o a través del método de contacto de usar y tirar que especificaste).",
"You have lost the dispute": "Has perdido la disputa",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Desafortunadamente has perdido la disputa. Si piensas que es un error también puedes pedir reabrir el caso por email a robosats@protonmail.com. De todas formas, las probabilidades de ser investigado de nuevo son bajas.",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
@ -328,22 +329,22 @@
"How it works": "Cómo funciona",
"You can also check the full guide in ": "También puedes revisar la guía entera en ",
"How to use": "Cómo utilizar",
"What payment methods are accepted?": "¿Qué metodos de pago son aceptados?",
"What payment methods are accepted?": "¿Qué métodos de pago son aceptados?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Todos siempre que sean rápidos. Puedes escribir abajo tu método de pago preferido(s). Tendrás que encontrar un compañero que acepte ese método. El paso para intercambiar el fiat tiene un tiempo de expiración de 24 horas antes de que se abra una disputa automáticamente. Te recomendamos métodos instantáneos de envío de fiat.",
"Are there trade limits?": "¿Hay límites de intercambios?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Para minimizar fallos en el enrutamiento Lightning, el máximo por intercambio es de {{maxAmount}} Sats. No hay límite de intercambios en el tiempo. Aunque un Robot solo puede intervenir en una orden a la vez, puedes usar varios Robots en diferentes navegadores (¡recuerda guardar los tokens de tus Robots!).",
"Is RoboSats private?": "¿RoboSats es privado?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats no custodia tus fondos y no recolecta o custodia ningún dato personal, pues no le importa quien eres. RoboSats nunca te preguntará por tu nombre, país o número de documento. Para mejorar tu privacidad, usa el Navegador Tor y visita el sitio cebolla.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Tu compañero de intercambio es el único que puede pontencialmente adivinar algo sobre ti. Manten tu conversación corta y concisa. Evita dar datos que no sean estrictamente necesarios para el pago del fiat.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Tu compañero de intercambio es el único que puede potencialmente adivinar algo sobre ti. Mantén tu conversación corta y concisa. Evita dar datos que no sean estrictamente necesarios para el pago del fiat.",
"What are the risks?": "¿Cuáles son los riesgos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Esta es una aplicación experimental, algo puede ir mal. ¡Intercambia en pequeñas cantidades!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "El vendedor tiene los mismos riesgos de devolución como con cualquier servicio P2P. PayPal o tarjetas de crédito no están recomendadas.",
"What is the trust model?": "¿Cuál es el modelo de confianza?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "El comprador y el vendedor nunca deben de confiar el uno en el otro. Una minima confiaza en RoboSats es necesaria, pues es el enlace entre la fianza del vendedor y el pago del comprador, que no es atómico (todavía). Además, las disputas se resuelven por el personal de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Con total claridad, los requerimentos de confianza son minimizados. De todas formas, todavía hay una forma en que RoboSats podría huir con tus Sats: no enviándoselos al comprador. Podría argumentarse que ese movimiento dañaría la reputación de RoboSats por un pequeño importe. De todas formas, deberías dudar y solo intercambiar pequeñas cantidades a la vez. Para grandes cantidades usa un exchange de primera capa como Bisq",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "El comprador y el vendedor nunca deben de confiar el uno en el otro. Una mínima confianza en RoboSats es necesaria, pues es el enlace entre la fianza del vendedor y el pago del comprador, que no es atómico (todavía). Además, las disputas se resuelven por el personal de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Con total claridad, los requerimentos de confianza son minimizados. De todas formas, todavía hay una forma en que RoboSats podría huir con tus Sats: no enviándoselos al comprador. Podría argumentarse que ese movimiento dañaría la reputación de RoboSats por un pequeño importe. De todas formas, deberías dudar y solo intercambiar pequeños montos cada vez. Para montos grandes usa un exchange de primera capa como Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Puedes aumentar la confianza en RoboSats inspeccionando el código fuente.",
"Project source code": "Código fuente del proyecto",
"What happens if RoboSats suddenly disappears?": "¿Que pasaría si RoboSats desapareciera?",
"What happens if RoboSats suddenly disappears?": "¿Qué pasaría si RoboSats desapareciera?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Tus Sats te serán devueltos. Cualquier factura no asentada será automaticamente devuelta incluso aunque RoboSats desaparezca. Esto es cierto tanto para las fianzas como para los colaterales. De todas formas, entre que el vendedor confirma haber recibido el fiat y el comprador recibe los Sats, hay un tiempo de aprox. 1 segundo en que los fondos podrían perderse si RoboSats desapareciera. Asegurate de tener suficiente liquidez entrante para evitar fallos de enrutamiento. Si tienes algún problema, busca en los canales públicos de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "En muchos países usar RoboSats no es diferente a usar Ebay o WallaPop. Tu regulación puede variar, es tu responsabilidad su cumplimiento.",
"Is RoboSats legal in my country?": "¿Es RoboSats legal en mi país?",

View File

@ -42,7 +42,7 @@
"Explicit":"Explicit",
"Set a fix amount of satoshis":"Set a fix amount of satoshis",
"Satoshis":"Satoshis",
"Let the taker chose an amount within the range":"Let the taker chose an amount within the range",
"Let the taker chose an amount within the range":"Let the taker choose an amount within the range",
"Enable Amount Range":"Enable Amount Range",
"From": "From",
"to":"to",
@ -216,7 +216,7 @@
"Collaborative Cancel":"Collaborative Cancel",
"Invalid Order Id":"Invalid Order Id",
"You must have a robot avatar to see the order details":"You must have a robot avatar to see the order details",
"This order has been cancelled collaborativelly":"This order has been cancelled collaborativelly",
"This order has been cancelled collaborativelly":"This order has been cancelled collaboratively",
"You are not allowed to see this order":"You are not allowed to see this order",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues":"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues",
@ -230,6 +230,7 @@
"Send":"Send",
"The chat has no memory: if you leave, messages are lost.":"The chat has no memory: if you leave, messages are lost.",
"Learn easy PGP encryption.":"Learn easy PGP encryption.",
"PGP_guide_url":"https://github.com/Reckless-Satoshi/robosats/blob/main/docs/sensitive-data-PGP-guide.md/",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box":"Contract Box",
@ -244,11 +245,11 @@
"Your taker bond is locked":"Your taker bond is locked",
"Your maker bond was settled":"Your maker bond was settled",
"Your taker bond was settled":"Your taker bond was settled",
"Your maker bond was unlock":"Your maker bond was unlock",
"Your maker bond was unlocked":"Your maker bond was unlocked",
"Your taker bond was unlocked":"Your taker bond was unlocked",
"Your order is public":"Your order is public",
"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.":"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.",
"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).":"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.":"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.",
"If the order expires untaken, your bond will return to you (no action needed).":"If the order expires untaken, your bond will return to you (no action needed).",
"Enable Telegram Notifications":"Enable Telegram Notifications",
"Enable TG Notifications":"Enable TG Notifications",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.":"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.",

View File

@ -42,7 +42,7 @@
"Explicit":"Explicit",
"Set a fix amount of satoshis":"Set a fix amount of satoshis",
"Satoshis":"Satoshis",
"Let the taker chose an amount within the range":"Let the taker chose an amount within the range",
"Let the taker chose an amount within the range":"Let the taker choose an amount within the range",
"Enable Amount Range":"Enable Amount Range",
"From": "From",
"to":"to",
@ -216,7 +216,7 @@
"Collaborative Cancel":"Collaborative Cancel",
"Invalid Order Id":"Invalid Order Id",
"You must have a robot avatar to see the order details":"You must have a robot avatar to see the order details",
"This order has been cancelled collaborativelly":"This order has been cancelled collaborativelly",
"This order has been cancelled collaborativelly":"This order has been cancelled collaboratively",
"You are not allowed to see this order":"You are not allowed to see this order",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues":"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues",
@ -230,6 +230,7 @@
"Send":"Send",
"The chat has no memory: if you leave, messages are lost.":"The chat has no memory: if you leave, messages are lost.",
"Learn easy PGP encryption.":"Learn easy PGP encryption.",
"PGP_guide_url":"https://github.com/Reckless-Satoshi/robosats/blob/main/docs/sensitive-data-PGP-guide.md/",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box":"Contract Box",
@ -244,11 +245,11 @@
"Your taker bond is locked":"Your taker bond is locked",
"Your maker bond was settled":"Your maker bond was settled",
"Your taker bond was settled":"Your taker bond was settled",
"Your maker bond was unlock":"Your maker bond was unlock",
"Your maker bond was unlocked":"Your maker bond was unlocked",
"Your taker bond was unlocked":"Your taker bond was unlocked",
"Your order is public":"Your order is public",
"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.":"Be patient while robots check the book. It might take some time. This box will ring 🔊 once a robot takes your order.",
"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).":"Please note that if your premium is excessive or your currency or payment methods are not popular, your order might expire untaken. Your bond will return to you (no action needed).",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.":"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} hours to reply. If you do not reply, you risk losing your bond.",
"If the order expires untaken, your bond will return to you (no action needed).":"If the order expires untaken, your bond will return to you (no action needed).",
"Enable Telegram Notifications":"Enable Telegram Notifications",
"Enable TG Notifications":"Enable TG Notifications",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.":"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.",

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff