Fix successful prompt avatars, rate text and txid

This commit is contained in:
Reckless_Satoshi 2024-01-07 13:29:51 +00:00
parent 0d9dbe5962
commit 53037a3b18
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
21 changed files with 32 additions and 39 deletions

View File

@ -1,4 +1,4 @@
import React, { useState } from 'react';
import React, { useContext, useState } from 'react';
import { useTranslation, Trans } from 'react-i18next';
import {
Grid,
@ -20,6 +20,7 @@ import { LoadingButton } from '@mui/lab';
import { type Order } from '../../../models';
import { systemClient } from '../../../services/System';
import { FederationContext, UseFederationStoreType } from '../../../contexts/FederationContext';
interface SuccessfulPromptProps {
order: Order;
@ -27,7 +28,6 @@ interface SuccessfulPromptProps {
onClickStartAgain: () => void;
onClickRenew: () => void;
loadingRenew: boolean;
baseUrl: string;
}
export const SuccessfulPrompt = ({
@ -36,10 +36,10 @@ export const SuccessfulPrompt = ({
onClickStartAgain,
onClickRenew,
loadingRenew,
baseUrl,
}: SuccessfulPromptProps): JSX.Element => {
const { t } = useTranslation();
const currencyCode: string = currencies[`${order.currency}`];
const { federation } = useContext<UseFederationStoreType>(FederationContext);
const [rating, setRating] = useState<number | undefined>(undefined);
@ -54,9 +54,9 @@ export const SuccessfulPrompt = ({
>
<Grid item xs={12}>
<Typography variant='body2' align='center'>
<Trans i18nKey='rate_robosats'>
What do you think of <b>RoboSats</b>?
</Trans>
{t('What do you think your order host "{{coordinator}}"?', {
coordinator: federation.getCoordinator(order.shortAlias)?.longAlias,
})}
</Typography>
</Grid>
<Grid item>
@ -116,7 +116,7 @@ export const SuccessfulPrompt = ({
)}
{/* SHOW TXID IF USER RECEIVES ONCHAIN */}
<Collapse in={order.txid !== undefined}>
<Collapse in={Boolean(order.txid)}>
<Alert severity='success'>
<AlertTitle>
{t('Your TXID')}
@ -212,14 +212,13 @@ export const SuccessfulPrompt = ({
<Grid item>
<TradeSummary
isMaker={order.is_maker}
makerNick={order.maker_nick}
takerNick={order.taker_nick}
makerHashId={order.maker_hash_id}
takerHashId={order.taker_hash_id}
currencyCode={currencyCode}
makerSummary={order.maker_summary}
takerSummary={order.taker_summary}
platformSummary={order.platform_summary}
orderId={order.id}
baseUrl={baseUrl}
/>
</Grid>
) : (

View File

@ -40,26 +40,24 @@ import { systemClient } from '../../services/System';
interface Props {
isMaker: boolean;
makerNick: string;
takerNick: string;
makerHashId: string;
takerHashId: string;
currencyCode: string;
makerSummary: TradeRobotSummary;
takerSummary: TradeRobotSummary;
platformSummary: TradeCoordinatorSummary;
orderId: number;
baseUrl: string;
}
const TradeSummary = ({
isMaker,
makerNick,
takerNick,
makerHashId,
takerHashId,
currencyCode,
makerSummary,
takerSummary,
platformSummary,
orderId,
baseUrl,
}: Props): JSX.Element => {
const { t } = useTranslation();
const theme = useTheme();
@ -123,9 +121,8 @@ const TradeSummary = ({
}}
>
<RobotAvatar
baseUrl={baseUrl}
style={{ height: '1.5em', width: '1.5em' }}
nickname={makerNick}
hashId={makerHashId}
small={true}
/>
&nbsp;
@ -150,10 +147,9 @@ const TradeSummary = ({
{t('Taker')}
&nbsp;
<RobotAvatar
baseUrl={baseUrl}
avatarClass='smallAvatar'
style={{ height: '1.5em', width: '1.5em' }}
nickname={takerNick}
hashId={takerHashId}
small={true}
/>
</ToggleButton>

View File

@ -625,7 +625,6 @@ const TradeBox = ({ baseUrl, onStartAgain }: TradeBoxProps): JSX.Element => {
baseContract.prompt = function () {
return (
<SuccessfulPrompt
baseUrl={baseUrl}
order={order}
ratePlatform={ratePlatform}
onClickStartAgain={onStartAgain}

View File

@ -656,6 +656,7 @@
"Start Again": "Començar de nou",
"Thank you for using Robosats!": "Gràcies per fer servir RoboSats!",
"Thank you! RoboSats loves you too": "Gràcies! RoboSats també t'estima",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "El teu TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Si us plau, espera a que el prenedor bloquegi la seva fiança. Si no ho fa a temps, l'ordre serà pública de nou.",
@ -668,7 +669,6 @@
"Freeze viewports": "Congela l'àrea de visió",
"desktop_unsafe_alert": "Algunes funcions (com el xat) estan deshabilitades per protegir i sense elles no podràs completar un intercanvi. Per protegir la teva privacitat i habilitar RoboSats per complet, fes servir <1>Tor Browser</1> i visita el <3>Onion</3> site.",
"phone_unsafe_alert": "No podràs completar un intercanvi. Fes servir el navegador <1>Tor Browser</1> i visita la web <3>Onion</3> privada.",
"rate_robosats": "Què opines de <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Diga'ns com podria millorar la plataforma (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Per obrir una disputa has d'esperar <1><1/>",
"Waiting for maker bond": "Esperant la fiança del creador",

View File

@ -656,6 +656,7 @@
"Start Again": "Začít znovu",
"Thank you for using Robosats!": "Děkujeme, že používáš Robosats!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Tvé TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Vyčkej, až příjemce uzamkne kauci. Pokud příjemce neuzamkne kauci včas, nabídka se znovu zveřejní.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Některé funkce byly vypnuty pro tvou bezpečnost (např. chat) bez níchž nebudeš moct dokončit obchod. Abys využil všechny funkce a ochranil své soukromí, použij <1>Tor Browser</1> a navšťiv <3>Onion</3> stránku.",
"phone_unsafe_alert": "Nebudeš moct dokončit obchod. Použij <1>Tor Browser</1> a navšťiv <3>Onion</3> stránku.",
"rate_robosats": "Co si myslíš o <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Dej nám vědět jak vylepšit platformu (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Chceš-li otevřít spor, musíš počkat <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Nochmal",
"Thank you for using Robosats!": "Danke, dass du Robosats benutzt hast!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Your TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Bitte warte auf den Taker, um eine Kaution zu sperren. Wenn der Taker nicht rechtzeitig eine Kaution sperrt, wird die Order erneut veröffentlicht.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Einige Funktionen sind zu deinem Schutz deaktiviert (z.B. der Chat) und du kannst ohne sie keinen Handel abschließen. Um deine Privatsphäre zu schützen und RoboSats vollständig zu nutzen, verwende <1>Tor Browser</1> und besuche die <3>Onion</3> Seite.",
"phone_unsafe_alert": "Du wirst nicht in der Lage sein, einen Handel abzuschließen. Benutze <1>Tor Browser</1> und besuche die <3>Onion</3> Seite.",
"rate_robosats": "Was hältst du von <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Sag uns, was wir verbessern können (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "To open a dispute you need to wait <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Start Again",
"Thank you for using Robosats!": "Thank you for using Robosats!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Your TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "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.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Some features are disabled for your protection (e.g. chat) and you will not be able to complete a trade without them. To protect your privacy and fully enable RoboSats, use <1>Tor Browser</1> and visit the <3>Onion</3> site.",
"phone_unsafe_alert": "You will not be able to complete a trade. Use <1>Tor Browser</1> and visit the <3>Onion</3> site.",
"rate_robosats": "What do you think of <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Let us know how the platform could improve (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "To open a dispute you need to wait <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Empezar de nuevo",
"Thank you for using Robosats!": "¡Gracias por usar RoboSats!",
"Thank you! RoboSats loves you too": "¡Gracias! RoboSats también te quiere",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Tu TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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 volverá a publicarse.",
@ -668,7 +669,6 @@
"Freeze viewports": "Congelar vistas",
"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 los intercambios. Usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"rate_robosats": "¿Qué opinas de <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Dinos cómo podríamos mejorar la plataforma (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Para abrir una disputa debes esperar <1><1/>",
"Waiting for maker bond": "Esperando la fianza del creador",

View File

@ -656,6 +656,7 @@
"Start Again": "Berriz Hasi",
"Thank you for using Robosats!": "Mila esker Robosats erabiltzeagatik!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Zure TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Mesedez itxaron hartzaileak fidantza blokeatu harte. Hartzaileak fidantza garaiz blokeatzen ez badu, eskaera berriz publikatuko da.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Ezaugarri batzuk ezgaituta daude zure babeserako (adib. txata) eta ezingo duzu trukea osatu haiek gabe. Zure pribatutasuna babesteko eta Robosats osoki gaitzeko, erabili <1>Tor Browser</1> eta bisitatu <3>Onion</3> gunea.",
"phone_unsafe_alert": "Ezingo duzu trukea osatu. Erabili <1>Tor Browser</1> eta bisitatu <3>Onion</3> gunea.",
"rate_robosats": "Zer iruditu zaizu <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Kontaiguzu nola hobetu dezakegun (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Gatazka bat irekitzeko itxaron behar duzu <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Recommencer",
"Thank you for using Robosats!": "Merci d'utiliser Robosats!",
"Thank you! RoboSats loves you too": "Merci ! RoboSats vous aime aussi",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Votre TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Veuillez attendre que le preneur verrouille une caution. Si le preneur ne verrouille pas la caution à temps, l'ordre sera rendue publique à nouveau",
@ -668,7 +669,6 @@
"Freeze viewports": "Geler fenêtres d'affichage",
"desktop_unsafe_alert": "Certaines fonctionnalités sont désactivées pour votre protection (e.g, le chat) et vous ne pourrez pas effectuer une transaction sans elles. Pour protéger votre vie privée et activer pleinement RoboSats, utilisez <1>Tor Browser</1> et visitez le site <3>Onion</3>.",
"phone_unsafe_alert": "Vous ne serez pas en mesure d'effectuer un échange. Utilisez <1>Tor Browser</1> et visitez le site <3>Onion</3>.",
"rate_robosats": "Que pensez-vous de <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Faites-nous savoir comment la plateforme pourrait être améliorée (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Pour ouvrir un litige, vous devez attendre <1><1/>",
"Waiting for maker bond": "Attente de l'auteur de la caution",

View File

@ -12,7 +12,6 @@ phrases = OrderedDict(
"phone_unsafe_alert",
"You will not be able to complete a trade. Use <1>Tor Browser</1> and visit the <3>Onion</3> site.",
),
("rate_robosats", "What do you think of <1>RoboSats</1>?"),
(
"let_us_know_hot_to_improve",
"Let us know how the platform could improve (<1>Telegram</1> / <3>Github</3>)",

View File

@ -656,6 +656,7 @@
"Start Again": "Ricomincia",
"Thank you for using Robosats!": "Grazie per aver usato Robosats!",
"Thank you! RoboSats loves you too": "Grazie! Anche RoboSats ti ama",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Il tuo TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Per favore, attendi che l'acquirente blocchi una cauzione. Se l'acquirente non blocca una cauzione in tempo, l'ordine verrà reso nuovamente pubblico.",
@ -668,7 +669,6 @@
"Freeze viewports": "Fissa le finestre di visualizzazione",
"desktop_unsafe_alert": "Alcune funzionalità (come la chat) sono disabilitate per le tua sicurezza e non sarai in grado di completare un'operazione senza di esse. Per proteggere la tua privacy e abilitare completamente RoboSats, usa <1>Tor Browser</1> e visita il sito <3>Onion</3>",
"phone_unsafe_alert": "Non sarai in grado di completare un'operazione. Usa <1>Tor Browser</1> e visita il sito <3>Onion</3>",
"rate_robosats": "Cosa pensi di <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Facci sapere come migliorare la piattaforma (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Per aprire una contestazione devi attendere <1><1/>",
"Waiting for maker bond": "In attesa della cauzione del maker",

View File

@ -656,6 +656,7 @@
"Start Again": "最初からやり直す",
"Thank you for using Robosats!": "Robosatsをご利用いただきありがとうございます",
"Thank you! RoboSats loves you too": "ありがとうございます! RoboSatsもあなたを愛しています",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "あなたのTXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "テイカーが担保金をロックするまでお待ちください。タイムリミット内に担保金がロックされない場合、オーダーは再度公開されます。",
@ -668,7 +669,6 @@
"Freeze viewports": "表示を凍結",
"desktop_unsafe_alert": "いくつかの機能チャットなどは、保護のために無効になっており、それらなしでは取引を完了できません。プライバシーを保護し、RoboSatsを完全に有効にするには、<1> Torブラウザ</1>を使用して、<3>オニオンサイト</3>を訪問してください。",
"phone_unsafe_alert": "取引を完了できません。 <1> Torブラウザ</1>を使用して、<3>オニオンサイト</3>を訪問してください。",
"rate_robosats": "<1>RoboSats</1>の評価を教えてください!",
"let_us_know_hot_to_improve": "プラットフォームをどのように改善できるか教えてください (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "紛争を開始するには、<1>待機する必要があります</1>",
"Waiting for maker bond": "メーカーの担保金を待っています",

View File

@ -656,6 +656,7 @@
"Start Again": "Zacznij jeszcze raz",
"Thank you for using Robosats!": "Dziękujemy za korzystanie z Robosatów!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Your TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Poczekaj, aż przyjmujący zablokuje obligację. Jeśli przyjmujący nie zablokuje obligacji na czas, zlecenie zostanie ponownie upublicznione.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Niektóre funkcje są wyłączone dla Twojej ochrony (np. czat) i bez nich nie będziesz w stanie dokonać transakcji. Aby chronić swoją prywatność i w pełni włączyć RoboSats, użyj <1>Tor Browser</1> i odwiedź <3>onion<//3>.",
"phone_unsafe_alert": "Nie będziesz w stanie sfinalizować transakcji. Użyj <1>Tor Browser</1> i odwiedź witrynę <3>Onion</3>.",
"rate_robosats": "Co myślisz o <1>RoboSats<//1>?",
"let_us_know_hot_to_improve": "Daj nam znać, jak platforma mogłaby się ulepszyć (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "To open a dispute you need to wait <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Comece de novo",
"Thank you for using Robosats!": "Obrigado por usar Robosats!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Sua TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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, espere que o tomador bloqueie uma fiança. Se o tomador não fechar um vínculo a tempo, a ordem será tornada pública novamente.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Alguns recursos estão desativados para sua proteção (por exemplo, chat) e você não poderá concluir uma negociação sem eles. Para proteger sua privacidade e utilizar todas as possibilidades do RoboSats, use o <1>Navegador Tor</1> e visite o site <3>Onion</3>.",
"phone_unsafe_alert": "Você não será capaz de concluir uma negociação. Use o <1>Navegador Tor</1> e visite o site <3>Onion</3>.",
"rate_robosats": "O que você acha de <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Deixe-nos saber como a plataforma pode melhorar (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "To open a dispute you need to wait <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Начать Снова",
"Thank you for using Robosats!": "Спасибо за использование Robosats!",
"Thank you! RoboSats loves you too": "Спасибо! RoboSats тоже Вас любит",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Ваш TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Пожалуйста, подождите, пока тейкер заблокирует залог. Если тейкер не заблокирует залог вовремя, ордер будет снова опубликован",
@ -668,7 +669,6 @@
"Freeze viewports": "Заморозить видовые экраны",
"desktop_unsafe_alert": "Некоторые функции отключены для Вашей безопасности (чат) и без них у Вас не будет возможности завершить сделку. Чтобы защитить Вашу конфиденциальность и полностью включить RoboSats, используйте <1>Tor Browser</1> и посетите <3>Onion</3> сайт.",
"phone_unsafe_alert": "У Вас не будет возможности завершить сделку. Используйте <1>Tor Browser</1> и посетите <3>Onion</3> сайт.",
"rate_robosats": "Что Вы думаете о <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Сообщите нам, как можно улучшить платформу (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Для открытия диспута нужно подождать <1><1/>",
"Waiting for maker bond": "Ожидание залога мейкера",

View File

@ -656,6 +656,7 @@
"Start Again": "Börja om",
"Thank you for using Robosats!": "Tack för att du använder RoboSats!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Ditt TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Var god vänta på att takern låser sin obligation. Om den inte gör det i tid kommer ordern att göras publik igen.",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "Vissa funktioner är inaktiverade för din säkerhet (t.ex. chatten) och du kommer inte att kunna slutföra en trade utan dom. Använd <1>Tor Browser</1> och besök <3>Onion</3>-siten för att skydda din integritet och använda RoboSats till fullo.",
"phone_unsafe_alert": "Du kommer inte att kunna slutföra en trade. Använd <1>Tor Browser</1> och besök <3>Onion</3>-siten.",
"rate_robosats": "Vad tycker du om 🤖<1>RoboSats</1>⚡?",
"let_us_know_hot_to_improve": "Tala om för oss hur plattformen kan förbättras (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "För att öppna en dispyt behöver du vänta <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "Anza Tena",
"Thank you for using Robosats!": "Asante kwa kutumia Robosats!",
"Thank you! RoboSats loves you too": "Asante! RoboSats pia inakupenda",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "Kitambulisho chako cha TX",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "Tafadhali subiri mpokeaji aweke dhamana. Ikiwa mpokeaji hataweka dhamana kwa wakati, agizo litatangazwa tena kwa umma.",
@ -668,7 +669,6 @@
"Freeze viewports": "Gandamiza maoni",
"desktop_unsafe_alert": "Baadhi ya vipengele vimelemazwa kwa ajili ya ulinzi wako (k.m. mazungumzo) na hautaweza kukamilisha biashara bila hivyo. Ili kulinda faragha yako na kuwezesha kikamilifu RoboSats, tumia <1>Tor Browser</1> na tembelea tovuti ya <3>Onion</3>.",
"phone_unsafe_alert": "Hutaweza kukamilisha biashara. Tumia <1>Tor Browser</1> na tembelea tovuti ya <3>Onion</3>.",
"rate_robosats": "Unaonaje <1>RoboSats</1>?",
"let_us_know_hot_to_improve": "Tuambie jinsi jukwaa linavyoweza kuboreshwa (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "Kufungua mzozo unahitaji kusubiri <1><1/>",
"Waiting for maker bond": "Kusubiri dhamana ya mtengenezaji",

View File

@ -656,6 +656,7 @@
"Start Again": "Start Again",
"Thank you for using Robosats!": "ขอบคุณที่ใช้งาน Robosats!",
"Thank you! RoboSats loves you too": "Thank you! RoboSats loves you too",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "TXID ของคุณ",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "โปรดรอคู่ค้าทำการกักกันเหรียญใน bond ถ้าเขากักกันเหรียญไม่ทันในเวลาที่กำหนด รายการจะถูกประำกาศใหม่",
@ -668,7 +669,6 @@
"Freeze viewports": "Freeze viewports",
"desktop_unsafe_alert": "ฟีเจอร์บางอย่างถูกระงับเพื่อปกปิดตัวตนของคุณ (เช่น การแชท) และคุณไม่สามารถทำการซื้อขายบิตคอยน์ได้ หากต้องการใช้งานทุกฟีเจอร์ของ RoboSats อย่างปลอดภัย กรุณาติดตั้ง <1>Tor Browser</1> และใช้งานผ่านเว็บไซต์ <3>Onion</3>",
"phone_unsafe_alert": "คุณไม่สามารถซื้อขายได้ กรุณาใช้ <1>Tor Browser</1> และใช้งานผ่านเว็บไซต์ <3>Onion</3>",
"rate_robosats": "คุณคิดอย่างไรกับ 🤖<1>RoboSats</1>⚡?",
"let_us_know_hot_to_improve": "บอกเราว่าเราควรปรับปรุงอย่างไร (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "คุณต้องรอก่อนจึงจะสามารถร้องเรียนได้ <1><1/>",
"Waiting for maker bond": "Waiting for maker bond",

View File

@ -656,6 +656,7 @@
"Start Again": "重新开始",
"Thank you for using Robosats!": "感谢你使用 Robosats",
"Thank you! RoboSats loves you too": "谢谢RoboSats 也爱你",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "你的 TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "请等待吃单方锁定保证金。如果吃单方没有及时锁定保证金,订单将再次公开。",
@ -668,7 +669,6 @@
"Freeze viewports": "冻结视口",
"desktop_unsafe_alert": "为了你的安全,一些功能(比如聊天)被禁用了。没有禁用的功能你将无法完成交易。为了保护你的隐私并完全启用 RoboSats请使用 <1>Tor 浏览器</1>访问<3>洋葱</3>站点。",
"phone_unsafe_alert": "你将无法完成交易。请使用 <1>Tor 浏览器</1>访问<3>洋葱</3>站点。",
"rate_robosats": "你觉得 <1>RoboSats</1> 怎么样?",
"let_us_know_hot_to_improve": "让我们知道如何改进 (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "要开始争议的话需要等 <1><1/>",
"Waiting for maker bond": "正在等待挂单方的保证金",

View File

@ -656,6 +656,7 @@
"Start Again": "重新開始",
"Thank you for using Robosats!": "感謝你使用 Robosats!",
"Thank you! RoboSats loves you too": "謝謝RoboSats 也愛你",
"What do you think your order host \"{{coordinator}}\"?": "What do you think your order host \"{{coordinator}}\"?",
"Your TXID": "你的 TXID",
"#80": "Phrases in components/TradeBox/Prompts/TakerFound.tsx",
"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.": "請等待吃單方鎖定保證金。如果吃單方沒有及時鎖定保證金,訂單將再次公開。",
@ -668,7 +669,6 @@
"Freeze viewports": "凍結視口",
"desktop_unsafe_alert": "為了你的安全,一些功能(比如聊天)被禁用了。沒有禁用功能你將無法完成交易。為了保護你的隱私並完全啟用 Robosats請使用 <1>Tor 瀏覽器</1>訪問<3>洋蔥站點</3>。",
"phone_unsafe_alert": "你將無法完成交易。請使用 <1>Tor 瀏覽器</1>訪問<3>洋蔥站點</3>。",
"rate_robosats": "你覺得 <1>RoboSats</1> 怎麼樣?",
"let_us_know_hot_to_improve": "讓我們知道如何改進 (<1>Telegram</1> / <3>Github</3>)",
"open_dispute": "要開始爭議的話需要等 <1><1/>",
"Waiting for maker bond": "正在等待掛單方的保證金",