Better information when sclosing trade

This commit is contained in:
koalasat
2025-07-10 22:40:44 +02:00
parent 1ba0711b6d
commit b3b29b95cb
22 changed files with 223 additions and 108 deletions

View File

@ -73,11 +73,11 @@ const OrderPage = (): React.JSX.Element => {
if ([1].includes(currentOrder.status)) {
setOrderStep(1);
} else if ([6, 7, 8].includes(currentOrder.status)) {
setOrderStep(2);
} else if ([9, 10, 11, 12, 13].includes(currentOrder.status)) {
setOrderStep(3);
} else if ([14, 15, 16, 17, 18].includes(currentOrder.status)) {
setOrderStep(4);
setOrderStep(currentOrder.is_taker ? 1 : 2);
} else if ([9, 10, 11, 12].includes(currentOrder.status)) {
setOrderStep(currentOrder.is_taker ? 2 : 3);
} else if ([13, 14, 15, 16, 17, 18].includes(currentOrder.status)) {
setOrderStep(5);
}
}, [currentOrder?.status]);
@ -120,7 +120,9 @@ const OrderPage = (): React.JSX.Element => {
<></>
);
const steps = ['Publish', 'Wait', 'Setup', 'Trade', 'Finished'];
const steps = currentOrder?.is_taker
? ['Take', 'Setup', 'Trade', 'Finished']
: ['Publish', 'Wait', 'Setup', 'Trade', 'Finished'];
return (
<Box>

View File

@ -17,7 +17,7 @@ const Coordinators = (): React.JSX.Element => {
const [error, setError] = useState<string>();
const [open, setOpen] = useState<boolean>(false);
// Regular expression to match a valid .onion URL
const onionUrlPattern = /^((http|https):\/\/)?[a-zA-Z2-7]{16,56}\.onion$\/?/;
const onionUrlPattern = /^((http|https):\/\/)?([a-zA-Z2-7]{16,56}\.onion)(\/.*)?$/;
const addNewCoordinator: (alias: string, url: string) => void = (alias, url) => {
if (!federation.getCoordinator(alias)) {
@ -47,11 +47,11 @@ const Coordinators = (): React.JSX.Element => {
if (federation.getCoordinator(newAlias)) {
setError(t('Alias already exists'));
} else {
if (onionUrlPattern.test(newUrl)) {
let fullNewUrl = newUrl;
if (!/^((http|https):\/\/)/.test(fullNewUrl)) {
fullNewUrl = `http://${newUrl}`;
}
const match = newUrl.match(onionUrlPattern);
console.log(match);
if (match) {
const onionUrl = match[3];
const fullNewUrl = `http://${onionUrl}`;
addNewCoordinator(newAlias, fullNewUrl);
garage.syncCoordinator(federation, newAlias);
setNewAlias('');

View File

@ -7,6 +7,8 @@ import {
DialogContent,
DialogContentText,
Button,
Typography,
Box,
} from '@mui/material';
import { type Order } from '../../../models';
import currencies from '../../../../static/assets/currencies.json';
@ -37,14 +39,39 @@ export const ConfirmFiatReceivedDialog = ({
return (
<Dialog open={open} onClose={onClose}>
<DialogTitle>
{t('Confirm you received {{amount}} {{currencyCode}}?', { currencyCode, amount })}
{t('Confirm you received {{amount}} {{currencyCode}}?', { currencyCode, amount })}
</DialogTitle>
<DialogContent>
<DialogContentText id='alert-dialog-description'>
{t(
'Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.',
{ currencyCode, amount },
)}
<DialogContentText component='div'>
<Typography variant='body1' gutterBottom>
{t('Confirming will finalize the trade.', { currencyCode, amount })}
</Typography>
<Typography variant='body2' color='warning.main' sx={{ mt: 2, fontWeight: 'bold' }}>
{t('⚠️ This action cannot be undone!')}
</Typography>
<Typography variant='body2' sx={{ mt: 2 }}>
{t('The satoshis in the escrow will be released to the buyer:')}
</Typography>
<Box component='ul' sx={{ mt: 1, pl: 2 }}>
<Typography component='li' variant='body2'>
{t('Only confirm after {{amount}} {{currencyCode}} have arrived to your account.', {
currencyCode,
amount,
})}
</Typography>
<Typography component='li' variant='body2'>
{t(
'If you have received the payment and do not click confirm, you risk losing your bond.',
)}
</Typography>
<Typography component='li' variant='body2'>
{t(
'Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.',
)}
</Typography>
</Box>
</DialogContentText>
</DialogContent>
<DialogActions>

View File

@ -5,8 +5,8 @@ import {
DialogTitle,
DialogActions,
DialogContent,
DialogContentText,
Button,
Typography,
} from '@mui/material';
import { type Order } from '../../../models';
import currencies from '../../../../static/assets/currencies.json';
@ -37,15 +37,22 @@ export const ConfirmFiatSentDialog = ({
return (
<Dialog open={open} onClose={onClose}>
<DialogTitle>
{t('Confirm you sent {{amount}} {{currencyCode}}?', { currencyCode, amount })}
{t('Confirm you sent {{amount}} {{currencyCode}}?', { currencyCode, amount })}
</DialogTitle>
<DialogContent>
<DialogContentText id='alert-dialog-description'>
<Typography variant='body1' gutterBottom>
{t('Confirming will allow your peer to finalize the trade.', { currencyCode, amount })}
</Typography>
<Typography variant='body2' color='warning.main' sx={{ mt: 2, fontWeight: 'bold' }}>
{t('⚠️ This action cannot be undone!')}
</Typography>
<Typography variant='body2' sx={{ mt: 2 }}>
{t(
'Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.',
{ currencyCode, amount },
'If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.',
)}
</DialogContentText>
</Typography>
</DialogContent>
<DialogActions>
<Button onClick={onClose} autoFocus>

View File

@ -46,7 +46,6 @@ export const ChatPrompt = ({
const [enableDisputeButton, setEnableDisputeButton] = useState<boolean>(false);
const [enableDisputeTime, setEnableDisputeTime] = useState<Date>(new Date(order.expires_at));
const [text, setText] = useState<string>('');
const [showWarning, setShowWarning] = useState<boolean>(false);
const currencyCode: string = currencies[`${order.currency}`];
const amount: string = pn(
@ -88,7 +87,6 @@ export const ChatPrompt = ({
setSentButton(false);
setUndoSentButton(false);
setReceivedButton(false);
setShowWarning(true);
setText(
t(
'Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.',
@ -127,20 +125,16 @@ export const ChatPrompt = ({
<Grid item>
<Typography variant='body2' align='center'>
{text}{' '}
{showWarning ? (
<>
{'⚠️ '}
<a
href='https://robosats.org/docs/payment-methods/#scams'
target='_blank'
rel='noreferrer'
>
{t('Beware scams')}
</a>
</>
) : (
''
)}
<>
{'⚠️ '}
<a
href='https://robosats.org/docs/payment-methods/#scams'
target='_blank'
rel='noreferrer'
>
{t('Beware scams')}
</a>
</>
</Typography>
</Grid>

View File

@ -578,11 +578,16 @@
"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.": "L'equip de RoboSats examinarà les declaracions i evidències presentades. Com l'equip no pot llegir el xat necessites escriure una declaració completa i exhaustiva. És millor donar un mètode de contacte d'usar i llençar amb la teva declaració. Els Sats del col·lateral seran enviats al guanyador de la disputa, mientres que el perdedor perderà la seva fiança.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Confirmar",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirmes que has rebut {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "En confirmar que has rebut {{amount}} {{currencyCode}} finalitzarà la transacció. Els satoshis del dipòsit es lliuraran al comprador. Confirmar només després que {{amount}} {{currencyCode}} hagin arribat al teu compte. Tingues en compte que si has rebut el pagament i no fas clic a confirmar, corres el risc de perdre la teva fiança.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirmes que has enviat {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirmant que has enviat {{amount}} {{currencyCode}} permetràs al teu company finalitzar l'operació. Si encara no ho has enviat i malgrat això procedeixes a confirmar falsament, t'arrisques a perdre la teva fiança.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "LLEGEIX. En cas que el pagament al venedor s'hagi bloquejat i sigui absolutament impossible acabar l'intercanvi, podeu revertir la vostra confirmació de \"Fiat enviat\". Fes-ho només si tu i el venedor ja heu acordat pel xat procedir a una cancel·lació col·laborativa. Després de confirmar, el botó \"Cancel·lar col·laborativament\" tornarà a ser visible. Només feu clic en aquest botó si sabeu el que esteu fent. Es desaconsella als usuaris novells de RoboSats realitzar aquesta acció! Assegureu-vos al 100% que el pagament ha fallat i que l'import és al vostre compte.",
"Revert the confirmation of fiat sent?": "Revertir la confirmació del FIAT enviat?",

View File

@ -578,11 +578,16 @@
"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.": "Personál RoboSats prověří předložená vyjádření a důkazy. Musíš vytvořit ucelený důkazní materiál, protože personál nemůže číst chat. Nejlépe spolu s výpovědí uvést jednorázový kontakt. Satoshi v úschově budou zaslány vítězi sporu, zatímco poražený ve sporu přijde o kauci.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Potvrdit",
"Confirm you received {{amount}} {{currencyCode}}?": "Potvrdit obdržení {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "Das RoboSats-Team wird die Aussagen und Beweise prüfen. Du musst die vollständige Situation erklären, wir können den Chat nicht sehen. Benutze am besten Wegwerf-Kontakt-Infos. Die hinterlegten Satoshis gehen an den Fall-Gewinner, der Verlierer verliert seine Kaution.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Bestätigen",
"Confirm you received {{amount}} {{currencyCode}}?": "Bestätige den Erhalt von {{amount}} {{currencyCode}}",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "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.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Confirm",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirm you received {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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, debes escribir una declaración completa y detallada. Es mejor aportar un método de contacto de usar y tirar en tu declaración. El ganador de la disputa recuperará su fianza, pero el perdedor no.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Confirmar",
"Confirm you received {{amount}} {{currencyCode}}?": "¿Confirmas que has recibido {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "RoboSatseko langileek baieztapenak eta frogak aztertuko dituzte. Kasu oso bat eraiki behar duzu, langileek ezin baitute txateko berriketa irakurri. Hobe da behin erabiltzeko kontaktu metodo bat ematea zure adierazpenarekin. Blokeatutako Satosiak eztabaidako irabazleari bidaliko zaizkio, eta galtzaileak, berriz, fidantza galduko du.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Baieztatu",
"Confirm you received {{amount}} {{currencyCode}}?": "Baieztatu {{amount}} {{currencyCode}} jaso duzula?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "Le personnel de RoboSats examinera les déclarations et les preuves fournies. Vous devez constituer un dossier complet, car le personnel ne peut pas lire le chat. Il est préférable de fournir une méthode de contact jetable avec votre déclaration. Les satoshis dans le dépôt seront envoyés au gagnant du litige, tandis que le perdant du litige perdra la caution.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Confirmer",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirmez que vous avez reçu les {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirmer que vous avez reçu {{amount}} {{currencyCode}} finalisera la transaction. Les satoshis en caution seront remis à l'acheteur. Ne confirmez qu'une fois que {{amount}} {{currencyCode}} sont arrivés sur votre compte. Notez que si vous avez reçu le paiement et que vous ne cliquez pas sur confirmer, vous risquez de perdre votre caution.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirmez votre envoi {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirmer que vous avez envoyé {{amount}} {{currencyCode}} permettra à votre correspondant de finaliser la transaction. Si vous ne l'avez pas encore envoyé et que vous procédez à une fausse confirmation, vous risquez de perdre votre caution.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "LIRE. Si votre paiement au vendeur a été bloqué et qu'il est absolument impossible de terminer la transaction, vous pouvez annuler votre confirmation de vente de \"Fiat envoyé\". Ne le faites que si vous et le vendeur avez DÉJÀ ACCORDÉ dans le chat de procéder à une annulation collaborative. Après avoir confirmé, le bouton \"Annulation collaborative\" sera à nouveau visible. Ne cliquez sur ce bouton que si vous savez ce que vous faites. Il est fortement déconseillé aux nouveaux utilisateurs de RoboSats d'effectuer cette action ! Assurez-vous à 100 % que votre paiement a échoué et que le montant est sur votre compte.",
"Revert the confirmation of fiat sent?": "Revenir sur la confirmation de l'envoi fiat ?",

View File

@ -578,11 +578,16 @@
"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.": "Lo staff di RoboSats esaminerà le dichiarazioni e le prove fornite. È necessario essere più precisi possibile, poiché lo staff non può leggere la chat. È meglio fornire un metodo di contatto temporaneo insieme alla propria dichiarazione. I satoshi presenti nel deposito saranno inviati al vincitore della disputa, mentre il perdente perderà il deposito",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Conferma",
"Confirm you received {{amount}} {{currencyCode}}?": "Confermi la ricezione di {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confermando di aver ricevuto {{amount}} {{currencyCode}} concluderai lo scambio. I satoshi in deposito saranno rilasciati all'acquirente. Conferma solo dopo che {{amount}} {{currencyCode}} sono arrivati sul tuo conto. Si noti che se si riceve il pagamento e non si clicca su conferma, si rischia di perdere la propria cauzione.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confermi di aver inviato {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confermando di aver inviato {{amount}} {{currencyCode}} consentirai al tuo pari di finalizzare la transazione. Se non lo si è ancora inviato e si procede comunque a una falsa conferma, si rischia di perdere la propria cauzione.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "LEGGERE. Nel caso in cui il pagamento al venditore sia stato bloccato e sia assolutamente impossibile concludere la compravendita, puoi annullare la tua conferma di \"Fiat inviate\". Questo solo se tu e il venditore avete già concordato in chat di procedere a un annullamento collaborativo. Dopo la conferma, il pulsante \"Annullamento collaborativo\" sarà nuovamente visibile. Fare clic su questo pulsante solo se si sa cosa si sta facendo. Agli utenti che utilizzano RoboSats per la prima volta è caldamente sconsigliato eseguire questa azione! Assicurarsi al 100% che il pagamento non sia andato a buon fine e che l'importo sia presente nel conto.",
"Revert the confirmation of fiat sent?": "Annullare la conferma dell'invio di fiat?",

View File

@ -578,11 +578,16 @@
"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.": "RoboSatsスタッフは、提供された声明と証拠を調査します。スタッフはチャットを読めないため、完全な証拠を提供する必要があります。声明とともに使い捨ての連絡方法を提供するのが最善です。トレードのエスクローにあるSatsは、紛争の勝者に送られ、紛争の敗者は担保金を失います。",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "確認する",
"Confirm you received {{amount}} {{currencyCode}}?": "{{amount}} {{currencyCode}}を受け取ったことを確認しますか?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "{{amount}} {{currencyCode}}を受け取ったことを確認すると、取引が完了します。 エスクローにあるSatsが買い手に解放されます。 {{amount}} {{currencyCode}}があなたのアカウントに到着した後にのみ確認してください。 支払いを受け取った場合に確認しない場合、担保金を失うリスクがあることに注意してください。",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "{{amount}} {{currencyCode}} を送信したことを確認しますか?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "{{amount}} {{currencyCode}}を送信したことを確認することで、取引を最終的に完了することができます。まだ送信していない場合、偽の確認を続けると、担保金を失う可能性があります。",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "Pracownicy RoboSats przeanalizują przedstawione oświadczenia i dowody. Musisz zbudować kompletną sprawę, ponieważ personel nie może czytać czatu. W oświadczeniu najlepiej podać metodę kontaktu z palnikiem. Satoshi w depozycie handlowym zostaną wysłane do zwycięzcy sporu, podczas gdy przegrany sporu straci obligację.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Potwierdzać",
"Confirm you received {{amount}} {{currencyCode}}?": "Potwierdź otrzymanie {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "A equipe do RoboSats examinará as declarações e evidências fornecidas. Você precisa construir um caso completo, pois a equipe não pode ler o chat. É melhor fornecer um método de contato do queimador com sua declaração. Os satoshis no depósito de garantia serão enviados ao vencedor da disputa, enquanto o perdedor da disputa perderá o vínculo.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "confirmar",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirme que você recebeu {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "Персонал RoboSats рассмотрит предоставленные заявления и доказательства. Вам необходимо построить полное дело, так как сотрудники не могут читать чат. Лучше всего указать одноразовый метод контакта вместе с Вашим заявлением. Сатоши в эскроу сделки будут отправлены победителю диспута, а проигравший в диспуте потеряет залог.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Подтвердить",
"Confirm you received {{amount}} {{currencyCode}}?": "Подтвердить получение {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Подтвердив, что вы получили {{amount}} {{currencyCode}}, сделка будет завершена. Сатоши на эскроу будут переданы покупателю. Подтверждайте только после того, как {{amount}} {{currencyCode}} поступит на ваш счёт. Обратите внимание: если вы получили платеж и не нажали «Подтвердить», вы рискуете потерять залог.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Подтвердите, что отправили {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Подтверждение того, что вы отправили {{amount}} {{currencyCode}}, позволит вашему партнеру завершить сделку. Если вы ещё не отправили его и все равно продолжите ложное подтверждение, вы рискуете потерять залог.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "ЧИТАЙТЕ. В случае, если ваш платёж продавцу заблокирован и завершить сделку абсолютно невозможно, вы можете отменить подтверждение \"Fiat sent\". Делайте это только в том случае, если вы и продавец УЖЕ ДОГОВОРИЛИСЬ в чате о совместной отмене. После подтверждения кнопка \"Collaborative cancel\" снова станет видна. Нажимайте эту кнопку только в том случае, если вы знаете, что делаете. Пользователям впервые использующим RoboSats, крайне не рекомендуется выполнять это действие! Убедитесь на 100 %, что ваш платёж не прошел и сумма поступила на ваш счет.",
"Revert the confirmation of fiat sent?": "Отменить подтверждение отправленного распоряжения?",

View File

@ -578,11 +578,16 @@
"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.": "Personalen på RoboSats kommer att utvärdera de redogörelser och bevis som läggs fram. Du behöver bygga ett komplett fall eftersom personalen inte kan läsa chatten. Det är bäst att dela en tillfällig kontaktmetod tillsammans med din redogörelse. Depositionen av sats kommer att skickas till vinnaren av dispyten, medan förloraren förlorar obligationen.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Bekräfta",
"Confirm you received {{amount}} {{currencyCode}}?": "Bekräfta att du mottagit {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "Wafanyikazi wa RoboSats watachunguza taarifa na ushahidi uliotolewa. Unahitaji kujenga kesi kamili, kwani wafanyikazi hawawezi kusoma gumzo. Ni bora kutoa njia ya mawasiliano ya burner na taarifa yako. Satoshis katika escrow ya biashara zitatumwa kwa mshindi wa mzozo, wakati mpotezaji wa mzozo atapoteza dhamana.",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "Thibitisha",
"Confirm you received {{amount}} {{currencyCode}}?": "Thibitisha ulipokea {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Kuthibitisha kuwa umepokea {{amount}} {{currencyCode}} kutahitimisha biashara. Satoshis katika escrow itatolewa kwa mnunuzi. Thibitisha tu baada ya {{amount}} {{currencyCode}} kuwasili kwenye akaunti yako. Kumbuka kuwa ikiwa umepokea malipo na haukubonyeza uthibitisho, una hatari ya kupoteza dhamana yako.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Thibitisha uliyotuma {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Kuthibitisha kuwa umetuma {{amount}} {{currencyCode}} itaruhusu mwenzako kukamilisha biashara. Ikiwa haujatuma bado na bado unaendelea kuthibitisha uongo, una hatari ya kupoteza dhamana yako.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "SOMA. Ikiwa malipo yako kwa muuzaji yamezuiwa na haiwezekani kabisa kukamilisha biashara, unaweza kurejesha uthibitisho wako wa \"Fiat imetumwa\". Fanya hivyo tu ikiwa wewe na muuzaji TUMESHAAKUBALIANA kwenye gumzo kuendelea na kughairiwa kwa ushirikiano. Baada ya kuthibitisha, kitufe cha \"Kughairi kwa Ushirikiano\" kitaonekana tena. Bonyeza tu kitufe hiki ikiwa unajua unachofanya. Watumiaji wapya wa RoboSats hawashauriwi kabisa kufanya kitendo hiki! Hakikisha kuwa malipo yako yameshindwa na kiasi hicho kiko kwenye akaunti yako.",
"Revert the confirmation of fiat sent?": "Rudisha uthibitisho wa fiat uliotumwa?",

View File

@ -578,11 +578,16 @@
"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.": "ทีมงาน RoboSats จะตรวจสอบคำแถลงและหลักฐานที่ได้รับ คุณจะต้องให้ข้อมูลเหตุการณ์ทั้งหมดอย่างละเอียดเนื่องจากทีมงานไม่สามารถอ่านข้อความในแชทซื้อขายได้ และคุณจะต้องระบุช่องทางสำหรับติดต่อคุณกลับมาในคำแถลงด้วย เหรียญที่ถูกกักกันไว้เพื่อซื้อขายจะถูกส่งให้ผู้ชนะการร้องเรียน และผู้แพ้จะสูญเสียเหรียญที่กักกันใน bond",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "ยืนยัน",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirm you received {{amount}} {{currencyCode}}?",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "Confirm you sent {{amount}} {{currencyCode}}?",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "RoboSats 工作人员将检查所提供的声明和证据。你需要建立一个完整的案例,因为工作人员无法阅读聊天内容。最好在你的声明中提供抛弃式的联系方式。交易托管中的聪将被发送给争议获胜者,而争议失败者将失去保证金。",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "确认",
"Confirm you received {{amount}} {{currencyCode}}?": "确认你已收到 {{amount}} {{currencyCode}}",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "确认你已收到{{amount}} {{currencyCode}}时交易会被结算。在托管中的聪会被释放给买方。仅当{{amount}} {{currencyCode}}已到达你的帐户后才应确认。请注意,如果你已收到付款但是不点击确认,则可能失去你的保证金。",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "确认你已发送{{amount}} {{currencyCode}}",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "确认你已发送{{amount}} {{currencyCode}}将允许你的对等方结算交易。如果你还没有付款但仍然虚假确认,则有可能失去你的保证金。",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",

View File

@ -578,11 +578,16 @@
"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.": "RoboSats 工作人員將檢查所提供的聲明和證據。你需要建立一個完整的案例,因為工作人員無法閱讀聊天內容。最好在你的聲明中提供拋棄式的聯繫方式。交易託管中的聰將被發送給爭議獲勝者,而爭議失敗者將失去保證金。",
"#59": "Phrases in components/TradeBox/Dialogs/ConfirmFiatReceived.tsx",
"Confirm": "確認",
"Confirm you received {{amount}} {{currencyCode}}?": "確認你已收到 {{amount}} {{currencyCode}}",
"Confirming that you received {{amount}} {{currencyCode}} will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after {{amount}} {{currencyCode}} have arrived to your account. Note that if you have received the payment and do not click confirm, you risk losing your bond.": "確認你已收到{{amount}} {{currencyCode}}時交易會被結算。在託管中的聰會被釋放給買方。僅當{{amount}} {{currencyCode}}已到達你的帳戶時才應確認。請注意,如果你已收到付款但是不點擊確認,則可能失去你的保證金。",
"Confirming will finalize the trade.": "Confirming will finalize the trade.",
"If you have received the payment and do not click confirm, you risk losing your bond.": "If you have received the payment and do not click confirm, you risk losing your bond.",
"Only confirm after {{amount}} {{currencyCode}} have arrived to your account.": "Only confirm after {{amount}} {{currencyCode}} have arrived to your account.",
"Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.": "Some fiat payment methods might reverse their transactions up to 2 weeks after they are completed. Please keep this token and your order data in case you need to use them as proof.",
"The satoshis in the escrow will be released to the buyer:": "The satoshis in the escrow will be released to the buyer:",
"✅ Confirm you received {{amount}} {{currencyCode}}?": "✅ Confirm you received {{amount}} {{currencyCode}}?",
"#60": "Phrases in components/TradeBox/Dialogs/ConfirmFiatSent.tsx",
"Confirm you sent {{amount}} {{currencyCode}}?": "確認你已發送{{amount}} {{currencyCode}}",
"Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "確認你已發送{{amount}} {{currencyCode}}將允許你的對等方結算交易。如果你還沒有付款但仍然虛假確認,則可能失去你的保證金。",
"Confirming will allow your peer to finalize the trade.": "Confirming will allow your peer to finalize the trade.",
"If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.": "If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.",
"✅ Confirm you sent {{amount}} {{currencyCode}}?": "✅ Confirm you sent {{amount}} {{currencyCode}}?",
"#61": "Phrases in components/TradeBox/Dialogs/ConfirmUndoFiatSent.tsx",
"READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.": "READ. In case your payment to the seller has been blocked and it is absolutely impossible to finish the trade, you can revert your confirmation of \"Fiat sent\". Do so only if you and the seller have ALREADY AGREED in the chat to proceed to a collaborative cancellation. After confirming, the \"Collaborative cancel\" button will be visible again. Only click this button if you know what you are doing. First time users of RoboSats are highly discouraged from performing this action! Make 100% sure your payment has failed and the amount is in your account.",
"Revert the confirmation of fiat sent?": "Revert the confirmation of fiat sent?",