Fix show coordinator warning only once

This commit is contained in:
Reckless_Satoshi 2024-01-02 17:13:20 +00:00
parent 807355ec42
commit 353897cf9d
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
22 changed files with 544 additions and 522 deletions

View File

@ -18,6 +18,7 @@ export interface OpenDialogs {
community: boolean;
info: boolean;
coordinator: string;
warning: boolean;
exchange: boolean;
client: boolean;
update: boolean;

View File

@ -6,18 +6,26 @@ import { useNavigate, useParams } from 'react-router-dom';
import TradeBox from '../../components/TradeBox';
import OrderDetails from '../../components/OrderDetails';
import { AppContext, type UseAppStoreType } from '../../contexts/AppContext';
import { AppContext, closeAll, type UseAppStoreType } from '../../contexts/AppContext';
import { FederationContext, type UseFederationStoreType } from '../../contexts/FederationContext';
import { GarageContext, type UseGarageStoreType } from '../../contexts/GarageContext';
import { type Order } from '../../models';
import CautionDialog from './CautionDialog';
import { WarningDialog } from '../../components/Dialogs';
const OrderPage = (): JSX.Element => {
const { windowSize, setOpen, settings, navbarHeight, hostUrl, origin } =
useContext<UseAppStoreType>(AppContext);
const {
windowSize,
open,
setOpen,
acknowledgedWarning,
setAcknowledgedWarning,
settings,
navbarHeight,
hostUrl,
origin,
} = useContext<UseAppStoreType>(AppContext);
const { federation } = useContext<UseFederationStoreType>(FederationContext);
const { garage, badOrder, setBadOrder } = useContext<UseGarageStoreType>(GarageContext);
const [openCoordinatorWarning, setOpenCoordinatorWarning] = useState<Boolean>(true);
const { t } = useTranslation();
const navigate = useNavigate();
const params = useParams();
@ -43,6 +51,7 @@ const OrderPage = (): JSX.Element => {
const orderId = Number(params.orderId);
if (Boolean(orderId) && currentOrderId !== orderId) setCurrentOrderId(orderId);
if (!acknowledgedWarning) setOpen({ ...closeAll, warning: true });
}, [params]);
useEffect(() => {
@ -106,9 +115,11 @@ const OrderPage = (): JSX.Element => {
return (
<Box>
<CautionDialog
open={openCoordinatorWarning}
onClose={() => setOpenCoordinatorWarning(false)}
<WarningDialog
open={open.warning}
onClose={() => {
setOpen(closeAll), setAcknowledgedWarning(true);
}}
longAlias={federation.getCoordinator(params.shortAlias ?? '').longAlias}
/>
{currentOrder === null && badOrder === undefined && <CircularProgress />}

View File

@ -15,7 +15,7 @@ interface Props {
longAlias: string;
}
const CautionDialog = ({ open, onClose, longAlias }: Props): JSX.Element => {
const WarningDialog = ({ open, onClose, longAlias }: Props): JSX.Element => {
const { t } = useTranslation();
return (
@ -38,4 +38,4 @@ const CautionDialog = ({ open, onClose, longAlias }: Props): JSX.Element => {
);
};
export default CautionDialog;
export default WarningDialog;

View File

@ -12,3 +12,4 @@ export { default as ClientDialog } from './Client';
export { default as EnableTelegramDialog } from './EnableTelegram';
export { default as F2fMapDialog } from './F2fMap';
export { default as UpdateDialog } from './Update';
export { default as WarningDialog } from './Warning';

View File

@ -33,12 +33,13 @@ const entryPage: Page = !isNativeRoboSats
? ((isPagePathEmpty ? 'robot' : pageFromPath) as Page)
: 'robot';
export const closeAll = {
export const closeAll: OpenDialogs = {
more: false,
learn: false,
community: false,
info: false,
coordinator: false,
coordinator: '',
warning: false,
exchange: false,
client: false,
update: false,
@ -107,6 +108,8 @@ export interface UseAppStoreType {
open: OpenDialogs;
setOpen: Dispatch<SetStateAction<OpenDialogs>>;
windowSize?: WindowSize;
acknowledgedWarning: boolean;
setAcknowledgedWarning: Dispatch<SetStateAction<boolean>>;
clientVersion: {
semver: Version;
short: string;
@ -137,6 +140,7 @@ export const initialAppContext: UseAppStoreType = {
origin: getOrigin(),
hostUrl: getHostUrl(),
clientVersion: getClientVersion(),
acknowledgedWarning: false,
fav: { type: null, currency: 0, mode: 'fiat' },
setFav: () => {},
};
@ -167,6 +171,9 @@ export const useAppStore = (): UseAppStoreType => {
getWindowSize(theme.typography.fontSize),
);
const [fav, setFav] = useState<Favorites>(initialAppContext.fav);
const [acknowledgedWarning, setAcknowledgedWarning] = useState<boolean>(
initialAppContext.acknowledgedWarning,
);
useEffect(() => {
setTheme(makeTheme(settings));
@ -222,6 +229,8 @@ export const useAppStore = (): UseAppStoreType => {
setOpen,
windowSize,
clientVersion,
acknowledgedWarning,
setAcknowledgedWarning,
hostUrl,
origin,
fav,

View File

@ -20,13 +20,9 @@
"Order": "Ordre",
"Robot": "Robot",
"Settings": "Paràmetres",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contracte",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Genera un token",
"2. Meet your robot identity": "2. Coneix la teva identitat de robot",
"3. Browse or create an order": "3. Navega o crea una ordre",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "També pots afegir els teus caràcters aleatoris propis al token o",
"or visit the robot school for documentation.": "o visita l'escola Robot per més informació.",
"roll again": "rodar de nou",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Introdueix el teu token per reconstruir el teu robot i accedir a les seves operacions.",
"Paste token here": "Enganxa el token aquí",
"Recover": "Recuperar",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Ordre activa #{{orderID}}",
"Add Robot": "Afegir Robot",
"Add a new Robot": "Afegeix un nou Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Garatge de Robots",
"Store your token safely": "Guarda el teu token de manera segura",
"Welcome back!": "Bentornat!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Copiat!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "Un Simple i Privat Exchange LN P2P",
"Create a new robot and learn to use RoboSats": "Crear un nou robot i aprendre a fer servir RoboSats",
"Fast Generate Robot": "Generar Robot ràpidament",
"Recover an existing robot using your token": "Recuperar un robot existent utilitzant el teu token",
"Recovery": "Recuperació",
"Start": "Començar",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connectant a TOR",
"Connection encrypted and anonymized using TOR.": "Connexió xifrada i anònima mitjançant TOR.",
"Not enough entropy, make it more complex": "Entropia insuficient, fes-ho més complex",
"The token is too short": "El token és massa curt",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "Això garanteix la màxima privadesa, però és possible que sentis que l'aplicació es comporta lenta. Si es perd la connexió, reinicia l'aplicació.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connectat a la xarxa TOR",
"Connecting to TOR network": "Connectant a la xarxa TOR",
"Connection error": "Error de connexió",
"Initializing TOR daemon": "Inicialitzant TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "TOT",
"Buy": "Comprar",
"DESTINATION": "DESTÍ",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "i fer servir",
"pay with": "pagar amb",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Afegir filtre",
"Amount": "Suma",
"An error occurred.": "Hi ha hagut un error.",
@ -159,15 +155,15 @@
"starts with": "comença amb",
"true": "veritat",
"yes": "si",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Tancar",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Pots trobar una descripció pas a pas dels intercanvis a ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Tornar",
"Keys": "Claus",
"Learn how to verify": "Aprèn a verificar",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La clau pública PGP de la teva contrapart. La fas servir per encriptar missatges que només ell pot llegir i verificar que és ell qui va signar els missatges que reps.",
"Your private key passphrase (keep secure!)": "La contrasenya de la teva clau privada (Mantenir segura!)",
"Your public key": "La teva clau pública",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... en algun indret de la Terra!",
"Client info": "Client info",
"Made with": "Fet amb",
"RoboSats client version": "RoboSats client version",
"and": "i",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Comunitat",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Proposa funcionalitats o notifica errors",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Volum contractat en 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Robots actius avui",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Activar",
"Enable TG Notifications": "Activar Notificacions TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Seràs dut a un xat amb el bot de Telegram de Robosats. Simplement prem Començar. Tingues en compte que si actives les notificaciones de Telegram reduiràs el teu anonimat.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Tornar",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Visitaràs la pàgina Learn RoboSats. Ha estat construïda per la comunitat i conté tutorials i documentació que t'ajudarà a aprendre como s'utilitza RoboSats i a entendre com funciona.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Generar Robot",
"Generate a robot avatar first. Then create your own order.": "Primer genera un avatar de robot. A continuació, crea la teva pròpia oferta.",
"You do not have a robot avatar": "No tens un avatar robot",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "El teu Robot",
"Your robot": "El teu robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Guarda-ho!",
"Done": "Fet",
"Store your robot token": "Guarda el teu token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Pot ser que necessitis recuperar el teu avatar robot al futur: fes còpia de seguretat del token. Pots simplement copiar-ho a una altra aplicació.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Descarrega RoboSats {{coordinatorVersion}} APK de les versions de Github",
"Go away!": "Marxar!",
"On Android RoboSats app ": "A l'aplicació d'Android RoboSats ",
@ -325,6 +321,10 @@
"On your own soverign node": "Al teu propi node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "El coordinador de RoboSats és a la versió {{coordinatorVersion}}, però la app del teu client és {{clientVersion}}. Aquesta discrepància de versió pot provocar una mala experiència d'usuari.",
"Update your RoboSats client": "Actualitza el teu client RoboSats",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Nabídka",
"Robot": "Robot",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Průvodce obchodem",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Ulož si svůj token bezpečně",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Zkopirováno!!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "VŠE",
"Buy": "Nákup",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "použít",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Přidat filter",
"Amount": "Částka",
"An error occurred.": "Došlo k chybě.",
@ -159,15 +155,15 @@
"starts with": "začína s",
"true": "správný",
"yes": "ano",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Zavřít",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Popis obchodu krok za krokem najdeš na",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Jít zpět",
"Keys": "Klíče",
"Learn how to verify": "Naučit se, jak ověřovat",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Veřejný PGP klíč protistrany. Používáš jej k šifrování zpráv, které může číst pouze on, a k ověření, zda protistrana podepsala příchozí zprávy.",
"Your private key passphrase (keep secure!)": "Tvůj soukromí klíč a passphrase (drž v bezpečí!)",
"Your public key": "Tvůj veřejný klíč",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... někde na Zemi!",
"Client info": "Client info",
"Made with": "Vytvořeno s",
"RoboSats client version": "RoboSats client version",
"and": "a",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Komunity",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Našel jsi bug nebo novou funkci? Napiš nám ",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Zobchodované množství za 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Dnešní aktivní roboti",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Povolit",
"Enable TG Notifications": "Povolit TG notifikace",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Budeš přesměrován do chatu s RoboSats telegram botem. Jednoduše otevři chat a zmáčkni Start. Měj na paměti, že povolením telegram notifikací máš nížší úroveň anonymity.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Zpět",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Chystáš se navštívit výukovou stránku RoboSats. Stránka obsahuje tutoriály a dokumentaci, které ti pomohou pochopit jak funguje RoboSats.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Generovat Robota",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "Nemáš robota a avatar",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Tvůj robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Zálohuj to!",
"Done": "Hotovo",
"Store your robot token": "Ulož si svůj robot token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Ulož si bezpečně svůj token jednoduše zkopírováním do jiné aplikace. V budoucnu ho možná budeš potřebovat v případě obnovy robota.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Order",
"Robot": "Roboter",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Vertrag",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Verwahre deinen Token sicher",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Kopiert!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "ALLE",
"Buy": "Kaufen",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "und verwende",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Add filter",
"Amount": "Menge",
"An error occurred.": "An error occurred.",
@ -159,15 +155,15 @@
"starts with": "starts with",
"true": "true",
"yes": "yes",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Schließen",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Du findest eine Schritt-für-Schritt-Erklärung des Handelablaufs hier ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Zurück",
"Keys": "Schlüssel",
"Learn how to verify": "Learn how to verify",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Der öffentliche PGP-Schlüssel deines Chatpartners. Du verwendest ihn um Nachrichten zu verschlüsseln, die nur er lesen kann und um zu überprüfen, ob dein Gegenüber die eingehenden Nachrichten signiert hat.",
"Your private key passphrase (keep secure!)": "Deine Passphrase für den privaten Schlüssel (sicher aufbewahren!)",
"Your public key": "Dein öffentlicher Schlüssel",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... irgendwo auf der Erde!",
"Client info": "Client info",
"Made with": "Gemacht mit",
"RoboSats client version": "RoboSats client version",
"and": "und",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Community",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Erzähle uns von neuen Funktionen oder einem Fehler",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24h Handelsvolumen",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Heute aktive Roboter",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Aktivieren",
"Enable TG Notifications": "Aktiviere TG-Benachrichtigungen",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Du wirst zu einem Chat mit dem RoboSats-Telegram-Bot weitergeleitet. Öffne einfach den Chat und drücke auf Start. Beachte, dass du deine Anonymität verringern könntest, wenn du Telegram-Benachrichtigungen aktivierst.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Zurück",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Du bist dabei die Website 'lerne RoboSats kennen' zu besuchen. Hier findest du Tutorials und Dokumentationen, die dir helfen RoboSats zu benutzen und zu verstehen wie es funktioniert.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Roboter generieren",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "Du hast keinen Roboter-Avatar",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Dein Roboter",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Speicher ihn ab!",
"Done": "Fertig",
"Store your robot token": "Speicher Roboter-Token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Vielleicht musst du deinen Roboter-Avatar in Zukunft wiederherstellen: Bewahre ihn sicher auf. Du kannst ihn einfach in eine andere Anwendung kopieren.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Order",
"Robot": "Robot",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contract",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Store your token safely",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Copied!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "ANY",
"Buy": "Buy",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "and use",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Add filter",
"Amount": "Amount",
"An error occurred.": "An error occurred.",
@ -159,15 +155,15 @@
"starts with": "starts with",
"true": "true",
"yes": "yes",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Close",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "You can find a step-by-step description of the trade pipeline in ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Go back",
"Keys": "Keys",
"Learn how to verify": "Learn how to verify",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Your peer PGP public key. You use it to encrypt messages only he can read.and to verify your peer signed the incoming messages.",
"Your private key passphrase (keep secure!)": "Your private key passphrase (keep secure!)",
"Your public key": "Your public key",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... somewhere on Earth!",
"Client info": "Client info",
"Made with": "Made with",
"RoboSats client version": "RoboSats client version",
"and": "and",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Community",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Tell us about a new feature or a bug",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24h contracted volume",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Today active robots",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Enable",
"Enable TG Notifications": "Enable TG Notifications",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Back",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Generate Robot",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "You do not have a robot avatar",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Your robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Back it up!",
"Done": "Done",
"Store your robot token": "Store your robot token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Orden",
"Robot": "Robot",
"Settings": "Ajustes",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contrato",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Genera un token",
"2. Meet your robot identity": "2. Conoce tu identidad robótica",
"3. Browse or create an order": "3. Mira o crea una orden",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "Puedes añadir tus propios carácteres aleatorios al token o",
"or visit the robot school for documentation.": "o visita la 'escuela robótica' para ver la documentación.",
"roll again": "Tirar otra vez",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Escribe o pega el token de tu robot token para reconstruirlo y acceder a tus operaciones.",
"Paste token here": "Pega aquí el token",
"Recover": "Recuperar",
"Robot recovery": "Recupera tu robot",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Orden activa #{{orderID}}",
"Add Robot": "Añadir Robot",
"Add a new Robot": "Añade un nuevo Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Garaje de robots",
"Store your token safely": "Guarda tu token de forma segura",
"Welcome back!": "¡Hola otra vez!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "¡Copiado!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "Un exchange LN P2P sencillo y privado",
"Create a new robot and learn to use RoboSats": "Crea un nuevo robot y aprende a usar RoboSats",
"Fast Generate Robot": "Genera un Robot al instante",
"Recover an existing robot using your token": "Recupera un robot existente usando tu token",
"Recovery": "Recuperar",
"Start": "Empezar",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Conectando con TOR",
"Connection encrypted and anonymized using TOR.": "Conexión encriptada y anonimizada usando TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "Esto asegura máxima privacidad, aunque quizá observe algo de lentitud. Si se corta la conexión, reinicie la aplicación.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Conectado a la red TOR",
"Connecting to TOR network": "Conectando a la red TOR",
"Connection error": "Error de conexión",
"Initializing TOR daemon": "Inicializando TOR",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "TODO",
"Buy": "Comprar",
"DESTINATION": "DESTINO",
@ -95,7 +91,7 @@
"Swap Out": "Swap desde LN",
"and use": "y usa",
"pay with": "paga con",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Añadir filtro",
"Amount": "Cantidad",
"An error occurred.": "Ha ocurrido un error.",
@ -159,15 +155,15 @@
"starts with": "empieza con",
"true": "verdad",
"yes": "si",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Cerrar",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Puedes encontrar una descripción paso a paso de los intercambios en",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Volver",
"Keys": "Llaves",
"Learn how to verify": "Aprende a verificar",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La llave pública PGP de tu contraparte. La usas para encriptar mensajes que solo él puede leer y para verificar que es él quién ha firmado los mensajes que recibes.",
"Your private key passphrase (keep secure!)": "La contraseña de tu llave privada ¡Guárdala bien!",
"Your public key": "Tu llave pública",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... en algún lugar de La Tierra!",
"Client info": "Client info",
"Made with": "Hecho con",
"RoboSats client version": "RoboSats client version",
"and": "y",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Comunidad",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Propón funcionalidades o notifica errores",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Volumen de los contratos en 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Robots activos hoy",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Activar",
"Enable TG Notifications": "Activar Notificaciones TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Se abrirá un chat con el bot de Telegram de RoboSats. Simplemente pulsa en Empezar. Ten en cuenta que si activas las notificaciones de Telegram reducirás tu nivel de anonimato.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Volver",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Vas a visitar la página Learn RoboSats. Ha sido construida por la comunidad y contiene tutoriales y documentación que te ayudará a aprender cómo se usa RoboSats y a entender cómo funciona.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Generar Robot",
"Generate a robot avatar first. Then create your own order.": "Primero genera un robot avatar. Después crea tu propia orden.",
"You do not have a robot avatar": "No tienes un avatar robot",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Tu Robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "¡Guárdalo!",
"Done": "Hecho",
"Store your robot token": "Guarda el token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Puede que necesites recuperar tu robot avatar en el futuro: haz una copia de seguridad del token. Puedes simplemente copiarlo en otra aplicación.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Descarga el APK de RoboSats {{coordinatorVersion}} desde Github",
"Go away!": "¡Adiós!",
"On Android RoboSats app ": "En la aplicación Android de RoboSats ",
@ -325,6 +321,10 @@
"On your own soverign node": "En tu propio nodo",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "El coordinador RoboSats está en la versión {{coordinatorVersion}}, pero su aplicación cliente es la {{clientVersion}}. Este desajuste podría dar problemas de uso.",
"Update your RoboSats client": "Actualiza tu cliente RoboSats",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Eskaera",
"Robot": "Robota",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Kontratua",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Gorde zure tokena era seguru batean",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Kopiatuta!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "ANY",
"Buy": "Erosi",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "eta erabili",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Gehitu iragazkia",
"Amount": "Kopurua",
"An error occurred.": "Akats bat gertatu da.",
@ -159,15 +155,15 @@
"starts with": "hasten da",
"true": "egia",
"yes": "bai",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Itxi",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Salerosketaren pausoz-pausoko deskribapen bat aurki dezakezu ondorengo helbidean ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Joan atzera",
"Keys": "Giltzak",
"Learn how to verify": "Ikasi nola egiaztatu",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Zure parearen PGP giltza publikoa. Berak bakarrik irakur ditzakeen mezuak zifratzeko eta jasotako mezuak berak sinatu dituela egiaztatzeko erabiliko duzu.",
"Your private key passphrase (keep secure!)": "Zure giltza pribatuaren pasahitza (seguru mantendu)",
"Your public key": "Zure giltza publikoa",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... Lurreko lekuren batean!",
"Client info": "Client info",
"Made with": "Erabili dira",
"RoboSats client version": "RoboSats client version",
"and": "eta",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Komunitatea",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Jakinarazi funtzionalitate berri bat edo akats bat",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24 ordutan kontratatutako bolumena",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Robot aktiboak gaur",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Baimendu",
"Enable TG Notifications": "Baimendu TG Jakinarazpenak",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "RoboSats telegrama botarekin hitz egingo duzu. Zabaldu berriketa eta sakatu Start. Telegrama bidez anonimotasun maila jaitsi zenezake.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Atzera",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Learn Robosats bisitatu behar duzu. Bertan, Robosats erabiltzen ikasteko eta nola dabilen ulertzeko tutorialak eta dokumentazioa aurkituko dituzu.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Robota sortu",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "Ez daukazu robot avatarrik",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Zure robota",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Gorde ezazu!",
"Done": "Prest",
"Store your robot token": "Gorde zure robot tokena",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Zure robot avatarra berreskuratu nahi izango duzu: gorde seguru. Beste aplikazio batean kopia dezakezu",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Deskargatu RoboSats {{coordinatorVersion}} APK Github-en",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "RoboSats koordinatzailea {{coordinatorVersion}} bertsioan dago, baina zure bezero-aplikazioa {{clientVersion}} da. Bertsio desegoki honek erabiltzailearen esperientzia txarra ekar dezake.",
"Update your RoboSats client": "Eguneratu zure RoboSats web bezeroa",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Ordre",
"Robot": "Robot",
"Settings": "Réglages",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contrat",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Générer un jeton",
"2. Meet your robot identity": "2. Découvrez votre identité robotique",
"3. Browse or create an order": "3. Consulter ou créer une commande",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "Vous pouvez également ajouter vos propres caractères aléatoires dans le jeton ou",
"or visit the robot school for documentation.": "ou visiter l'école robosats pour la documentation.",
"roll again": "rouler de nouveau",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Saisissez votre jeton de robot pour reconstruire votre robot et accéder à ses transactions.",
"Paste token here": "Coller le jeton ici",
"Recover": "Récupérer",
"Robot recovery": "Récupération du robot",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Ordre actif #{{orderID}}",
"Add Robot": "Ajout Robot",
"Add a new Robot": "Ajouter un nouveau Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Garage des robots",
"Store your token safely": "Stockez votre jeton en sécurité",
"Welcome back!": "Bon retour parmi nous !",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Copié !",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "Une bourse d'échange P2P LN simple et privée",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Génération rapide d'un robot",
"Recover an existing robot using your token": "Récupérer un robot existant à l'aide de votre jeton",
"Recovery": "Récupération",
"Start": "Commencer",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connexion au réseau TOR",
"Connection encrypted and anonymized using TOR.": "Connexion chiffré et anonymisée utilisant TOR.",
"Not enough entropy, make it more complex": "L'entropie n'est pas suffisante, il faut la rendre plus complexe",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "Cela garantit une confidentialité maximale, mais l'application peut sembler lente. Si la connexion est perdue, redémarrez l'application.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connecté au réseau TOR",
"Connecting to TOR network": "Connexion au réseau TOR",
"Connection error": "Erreur de connexion",
"Initializing TOR daemon": "Initialisation du daemon TOR",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "Tous",
"Buy": "Acheter",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Échange OC->LN",
"and use": "et utiliser",
"pay with": "payer avec",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Ajouter filtre",
"Amount": "Montant",
"An error occurred.": "Une erreur s'est produite.",
@ -159,15 +155,15 @@
"starts with": "commence par",
"true": "vrai",
"yes": "oui",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Fermer",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Vous pouvez trouver une description pas à pas des échanges en ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Retourner",
"Keys": "Keys",
"Learn how to verify": "Apprendre à vérifier",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La clé publique PGP de votre correspondant. Vous l'utilisez pour chiffrer les messages que lui seul peut lire et pour vérifier que votre correspondant a signé les messages entrants.",
"Your private key passphrase (keep secure!)": "Phrase de passe de votre clé privée (à conserver précieusement !)",
"Your public key": "Votre clé publique",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... quelque part sur Terre!",
"Client info": "Client info",
"Made with": "Construit avec",
"RoboSats client version": "RoboSats client version",
"and": "et",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Communauté",
"Follow RoboSats in Nostr": "Suivez RoboSats sur Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Parlez-nous d'une nouvelle fonctionnalité ou d'un bug",
"We are abandoning Telegram! Our old TG groups": "Nous abandonnons Telegram ! Nos anciens groupes TG",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Volume contracté en 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Robots actifs aujourd'hui",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Navigateur",
"Enable": "Activer",
"Enable TG Notifications": "Activer notifications TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Vous serez redirigé vers une conversation avec le robot telegram RoboSats. Il suffit d'ouvrir le chat et d'appuyer sur Start. Notez qu'en activant les notifications Telegram, vous risquez de réduire votre niveau d'anonymat.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Retour",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Vous êtes sur le point de visiter Learn RoboSats. Il héberge des tutoriels et de la documentation pour vous aider à apprendre à utiliser RoboSats et à comprendre son fonctionnement.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Générer un robot",
"Generate a robot avatar first. Then create your own order.": "Créez d'abord un avatar de robot. Créez ensuite votre propre commande.",
"You do not have a robot avatar": "Vous n'avez pas d'avatar robot",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Votre Robot",
"Your robot": "Votre robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Sauvegardez!",
"Done": "Fait",
"Store your robot token": "Enregistrez votre jeton du robot",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Vous pourriez avoir besoin de récupérer votre avatar robot à l'avenir : conservez-le en toute sécurité. Vous pouvez simplement le copier dans une autre application.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Télécharger RoboSats {{coordinatorVersion}} APK depuis les publications Github",
"Go away!": "Partez !",
"On Android RoboSats app ": "Sur l'application Android RoboSats ",
@ -325,6 +321,10 @@
"On your own soverign node": "Sur votre propre nœud souverain",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "Le coordinateur RoboSats est sur la version {{versioncoordinateur}}, mais votre application client est {{versionclient}}. Ce décalage de version peut entraîner une mauvaise expérience pour l'utilisateur.",
"Update your RoboSats client": "Mettez à jour votre client RoboSats",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Ordina",
"Robot": "Robot",
"Settings": "Impostazioni",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contratto",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Genera un token",
"2. Meet your robot identity": "2. Incontra la tua identità robotica",
"3. Browse or create an order": "3. Cerca o crea un ordine",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "Puoi anche aggiungere i tuoi caratteri casuali nel token oppure",
"or visit the robot school for documentation.": "oppure visitare la scuola robotica per la documentazione.",
"roll again": "lancia di nuovo",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Inserisci il token del tuo robot per ricostruirlo ed ottenere l'accesso ai suoi scambi.",
"Paste token here": "Incolla il token qui",
"Recover": "Recupera",
"Robot recovery": "Recupera robot",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Ordine attivo #{{orderID}}",
"Add Robot": "Aggiungi robot",
"Add a new Robot": "Aggiungi un nuovo robot",
@ -61,27 +57,27 @@
"Robot Garage": "Garage del robot",
"Store your token safely": "Custodisci il tuo token in modo sicuro",
"Welcome back!": "Ben tornato!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Copiato!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "Una piattaforma di scambi P2P su LN semplice e privata",
"Create a new robot and learn to use RoboSats": "Crea un nuovo robot e impara ad utilizzare RoboSats",
"Fast Generate Robot": "Generazione rapida di un robot",
"Recover an existing robot using your token": "Recupera un robot esistente con il tuo token",
"Recovery": "Recupero",
"Start": "Inizia",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connessione a TOR",
"Connection encrypted and anonymized using TOR.": "Connessione criptata e anonimizzata mediante TOR.",
"Not enough entropy, make it more complex": "Non c'è abbastanza entropia, rendilo più complesso",
"The token is too short": "Il token è troppo corto",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "Questo garantisce la massima privacy, ma l'app potrebbe risultare lenta. Se si perde la connessione, riavviare l'app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connesso alla rete TOR",
"Connecting to TOR network": "Connessione alla rete TOR",
"Connection error": "Errore di connessione",
"Initializing TOR daemon": "Inizializzazione del processo TOR",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "QUALUNQUE",
"Buy": "Compra",
"DESTINATION": "DESTINAZIONE",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "ed usa",
"pay with": "paga con",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Aggiungi filtro",
"Amount": "Quantità",
"An error occurred.": "Si è verificato un errore.",
@ -159,15 +155,15 @@
"starts with": "inizia con",
"true": "vero",
"yes": "si",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Chiudi",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Una descrizione passo passo della pipeline di scambio è disponibile in ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Indietro",
"Keys": "Chiavi",
"Learn how to verify": "Impara come verificare",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La chiave PGP pubblica del tuo pari. La utilizzi per cifrare i messaggi che solo il tuo pari può leggere e per verificare che la firma del tuo pari nei messaggi che ricevi.",
"Your private key passphrase (keep secure!)": "La frase d'accesso alla tua chiave privata (Proteggila!)",
"Your public key": "La tua chiave pubblica",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... da qualche parte sulla Terra!",
"Client info": "Client info",
"Made with": "Fatto con",
"RoboSats client version": "RoboSats client version",
"and": "e",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Comunità",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Comunicaci nuove funzionalità o bug",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Volume scambiato in 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "I robots attivi oggi",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Attiva",
"Enable TG Notifications": "Attiva notifiche TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Sarai introdotto in conversazione con il bot RoboSats su Telegram. Apri semplicemente la chat e premi Start. Considera che attivando le notifiche Telegram potresti ridurre il tuo livello di anonimato.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Indietro",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Stai per visitare la pagina Learn RoboSats. Troverai tutorial e documentazione per aiutarti ad imparare a usare RoboSats e capire come funziona.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Genera un Robot",
"Generate a robot avatar first. Then create your own order.": "Genera prima un avatar robot. Poi crea il tuo ordine.",
"You do not have a robot avatar": "Non hai un avatar robot",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Il tuo Robot",
"Your robot": "Il tuo robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Salvalo!",
"Done": "Fatto",
"Store your robot token": "Salva il tuo token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Potresti aver bisogno di recuperare il tuo avatar robot in futuro: custodiscilo con cura. Puoi semplicemente copiarlo in un'altra applicazione.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Scarica il file APK di RoboSats {{coordinatorVersion}} dalle releases Github",
"Go away!": "Vattene!",
"On Android RoboSats app ": "Sull'app Android di RoboSats ",
@ -325,6 +321,10 @@
"On your own soverign node": "Sul proprio nodo sovrano",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "Il coordinatore RoboSats è alla versione {{coordinatorVersion}}, ma l'applicazione client è {{clientVersion}}. Questo disallineamento di versione potrebbe causare una cattiva esperienza utente.",
"Update your RoboSats client": "Aggiorna il tuo client RoboSats",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "注文",
"Robot": "ロボット",
"Settings": "設定",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "契約",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. トークンを生成",
"2. Meet your robot identity": "2. ロボットを紹介します",
"3. Browse or create an order": "3. 注文書を見るか作るか",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "トークンに自分でランダムな文字列を追加することができます。それか…",
"or visit the robot school for documentation.": "または、ロボット教室で資料をご参考ください。",
"roll again": "もう一度生成する。",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "取引にアクセスするために、ロボットのトークンを入力してロボットを再生成してください。",
"Paste token here": "ここにトークンを貼り付けてください",
"Recover": "復元する",
"Robot recovery": "ロボットの復元",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "公開中の注文 #{{orderID}}",
"Add Robot": "ロボットを追加",
"Add a new Robot": "新しいロボットを追加",
@ -61,27 +57,27 @@
"Robot Garage": "ロボットガレージ",
"Store your token safely": "安全にトークンを保存してください。",
"Welcome back!": "またまたこんにちは!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "コピー完了!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "シンプルでプライベートなライトニングP2P取引所",
"Create a new robot and learn to use RoboSats": "新しいロボットを構築して、RoboSatsの使い方を学びます",
"Fast Generate Robot": "ロボットを高速生成",
"Recover an existing robot using your token": "トークンを使用して既存のロボットを復元します",
"Recovery": "復元",
"Start": "スタート",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Torネットワークに接続中",
"Connection encrypted and anonymized using TOR.": "接続はTORを使って暗号化され、匿名化されています。",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "これにより最大限のプライバシーが確保されますが、アプリの動作が遅いと感じることがあります。接続が切断された場合は、アプリを再起動してください。",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "TORネットワークに接続しました",
"Connecting to TOR network": "TORネットワークに接続中",
"Connection error": "接続エラー",
"Initializing TOR daemon": "TORデーモンを初期化中",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "すべて",
"Buy": "購入",
"DESTINATION": "方向",
@ -95,7 +91,7 @@
"Swap Out": "スワップアウト",
"and use": "そして使用するのは",
"pay with": "支払い方法は:",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "フィルタを追加",
"Amount": "量",
"An error occurred.": "エラーが発生しました。",
@ -159,15 +155,15 @@
"starts with": "〜で始まる",
"true": "True",
"yes": "はい",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "閉じる",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "GitHub。 ",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "取引プロセスのステップバイステップの説明は、以下のリンク先でご確認いただけます。",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "戻る",
"Keys": "鍵",
"Learn how to verify": "確認方法を学ぶ",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "これはあなたの取引相手のPGP公開鍵です。あなたは相手専用の暗号化メッセージを送信するために使用し、また受信したメッセージが相手によって署名されたものであることを確認するためにも使用します。",
"Your private key passphrase (keep secure!)": "あなたの秘密鍵のパスフレーズ(安全に保ってください!)",
"Your public key": "あなたの公開鍵",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "......地球上のどっかから!",
"Client info": "Client info",
"Made with": "と",
"RoboSats client version": "RoboSats client version",
"and": "を込めて",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "コミュニティー",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "新しい機能やバグについて教えてください",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24時間の契約量",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "本日アクティブなロボット",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "ブラウザー",
"Enable": "有効化",
"Enable TG Notifications": "テレグラム通知を有効にする",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "RoboSatsのテレグラムボットとのチャットに移動します。チャットを開いて「Start」を押してください。テレグラム通知を有効にすることで匿名レベルが低下する可能性があることに注意してください。",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "戻る",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "「Learn RoboSats」学習ページにアクセスしようとしています。RoboSatsの使い方を学び、動作原理を理解するためのチュートリアルとドキュメントが提供されています。",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "ロボットを生成する",
"Generate a robot avatar first. Then create your own order.": "最初にロボットアバターを生成してください。次に自分のオーダーを作成してください。",
"You do not have a robot avatar": "ロボットのアバターがありません",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "あなたのロボット",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "バックアップを取ってください!",
"Done": "完了",
"Store your robot token": "ロボットトークンを保存する",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "将来、ロボットアバターを回復する必要があるかもしれません。安全に保存してください。別のアプリケーションに簡単にコピーすることができます。",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "GithubリリースからRoboSats {{coordinatorVersion}} APKをダウンロードしてください。",
"Go away!": "行ってしまえ!",
"On Android RoboSats app ": "AndroidのRoboSatsアプリ ",
@ -325,6 +321,10 @@
"On your own soverign node": "あなた自身の主権ノードで",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "RoboSatsコーディネーターはバージョン{{coordinatorVersion}}で、クライアントアプリは{{clientVersion}}です。このバージョンの不一致は、悪いユーザーエクスペリエンスを引き起こす可能性があります。",
"Update your RoboSats client": "RoboSatsクライアントを更新してください",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Zamówienie",
"Robot": "Robot",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Kontrakt",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Przechowuj swój token bezpiecznie",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Skopiowane!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "KAŻDY",
"Buy": "Kupić",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "i użyć",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Add filter",
"Amount": "Ilość",
"An error occurred.": "An error occurred.",
@ -159,15 +155,15 @@
"starts with": "starts with",
"true": "true",
"yes": "yes",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Blisko",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Szczegółowy opis rurociągu handlowego znajdziesz w ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Wróć",
"Keys": "Keys",
"Learn how to verify": "Learn how to verify",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.",
"Your private key passphrase (keep secure!)": "Your private key passphrase (keep secure!)",
"Your public key": "Your public key",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... gdzieś na Ziemi!",
"Client info": "Client info",
"Made with": "Wykonana z",
"RoboSats client version": "RoboSats client version",
"and": "i",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Społeczność",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Poinformuj nas o nowej funkcji lub błędzie",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Zakontraktowana objętość 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Dziś aktywne roboty",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Włączyć",
"Enable TG Notifications": "Włącz powiadomienia TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Zostaniesz przeniesiony do rozmowy z botem telegramowym RoboSats. Po prostu otwórz czat i naciśnij Start. Pamiętaj, że włączenie powiadomień telegramów może obniżyć poziom anonimowości.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Z powrotem",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Generuj robota",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "You do not have a robot avatar",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Twój robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Utwórz kopię zapasową!",
"Done": "Done",
"Store your robot token": "Store your robot token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Ordem",
"Robot": "Robô",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contrato",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Guarde seu token de forma segura",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Copiado!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "QUALQUER",
"Buy": "Comprar",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "e utilizar",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Add filter",
"Amount": "Quantidade",
"An error occurred.": "An error occurred.",
@ -159,15 +155,15 @@
"starts with": "starts with",
"true": "true",
"yes": "yes",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Fechar",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Você pode encontrar uma descrição passo a passo do pipeline comercial em ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Voltar",
"Keys": "Chaves",
"Learn how to verify": "Saiba como verificar",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Sua chave pública PGP de mesmo nível. Você o usa para criptografar mensagens que só ele pode ler e para verificar se seu par assinou as mensagens recebidas.",
"Your private key passphrase (keep secure!)": "Sua senha de chave privada (mantenha a segurança!)",
"Your public key": "Sua chave pública",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... alguém na terra!",
"Client info": "Client info",
"Made with": "Feito com",
"RoboSats client version": "RoboSats client version",
"and": "e",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Comunidade",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Conte-nos sobre um novo recurso ou um bug",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Volume contratado em 24h",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Robôs ativos hoje",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Ativar",
"Enable TG Notifications": "Habilitar notificações do TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Você será levado a uma conversa com o bot do Telegram RoboSats. Basta abrir o bate-papo e pressionar Iniciar. Observe que, ao ativar as notificações de Telegram, você pode diminuir seu nível de anonimato.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Voltar",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Você está prestes a visitar o \"Learn RoboSats\"(Aprender sobre o RoboSats). Ele hospeda tutoriais e documentação para ajudá-lo a aprender como usar o RoboSats e entender como funciona.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Gerar robô",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "Você não tem um avatar de robô",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Seu robô",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Apoia-la!",
"Done": "Feito",
"Store your robot token": "Armazene seu token de robô",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Você pode precisar recuperar seu avatar de robô no futuro: armazene-o com segurança. Você pode simplesmente copiá-lo em outra aplicação.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Ордер",
"Robot": "Робот",
"Settings": "Настройки",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Контракт",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Создайте токен",
"2. Meet your robot identity": "2. Познакомьтесь со своей личностью робота",
"3. Browse or create an order": "3. Просмотрите или создайте заказ",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "Вы также можете добавить в токен свои собственные случайные символы или",
"or visit the robot school for documentation.": "или посетить школу роботов для документации.",
"roll again": "ещё раз",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Введите токен своего робота, чтобы восстанавить своего робота и получить доступ к его сделкам.",
"Paste token here": "Вставте токен сюда",
"Recover": "Восстановить",
"Robot recovery": "Восстановление робота",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Активный ордер #{{orderID}}",
"Add Robot": "Добавить робота",
"Add a new Robot": "Добавить нового робота",
@ -61,27 +57,27 @@
"Robot Garage": "Гараж роботов",
"Store your token safely": "Храните Ваш токен в безопасности",
"Welcome back!": "С возвращением!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Скопировано!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "Простой и приватный LN P2P обменник",
"Create a new robot and learn to use RoboSats": "Создайте нового робота и научитесь использовать RoboSats",
"Fast Generate Robot": "Быстрое создание робота",
"Recover an existing robot using your token": "Восстановить существующего робота с помощью вашего токена",
"Recovery": "Восстановление",
"Start": "Старт",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Подключение к TOR",
"Connection encrypted and anonymized using TOR.": "Соединение зашифровано и анонимизировано с помощью TOR.",
"Not enough entropy, make it more complex": "Недостаточно энтропии, усложните",
"The token is too short": "Токен слишком короткий",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "Это обеспечивает максимальную конфиденциальность, однако вы можете почувствовать, что приложение работает медленно. Если соединение потеряно, перезапустите приложение.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Подключено к сети TOR",
"Connecting to TOR network": "Подключение к сети TOR",
"Connection error": "Ошибка подключения",
"Initializing TOR daemon": "Инициализация TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "Любой",
"Buy": "Купить",
"DESTINATION": "МЕСТО НАЗНАЧЕНИЯ",
@ -95,7 +91,7 @@
"Swap Out": "Своп из",
"and use": "и использовать",
"pay with": "оплатить",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Добавить фильтр",
"Amount": "Сумма",
"An error occurred.": "Произошла ошибка.",
@ -159,15 +155,15 @@
"starts with": "начинается с",
"true": "верный",
"yes": "да",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Принять",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "Поступая таким образом вы будете получать фрагменты карты от стороннего поставщика. В зависимости от ваших настроек личная информация может попасть на серверы за пределами федерации RoboSats.",
"Close": "Закрыть",
"Download high resolution map?": "Загрузить карту в высоком разрешении?",
"Show tiles": "Показать карту",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Вы можете найти пошаговое описание этапов сделки в ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Вернуться",
"Keys": "Ключи",
"Learn how to verify": "Узнайте, как проверить",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Публичный ключ PGP Вашего партнёра. Вы используете его для шифрования сообщений, которые может читать только он, и для проверки того, что Ваш партнёр подписал входящие сообщения.",
"Your private key passphrase (keep secure!)": "Парольная фраза Вашего приватного ключа (храните в безопасности!)",
"Your public key": "Ваш публичный ключ",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... где-то на земле!",
"Client info": "Client info",
"Made with": "Сделано с",
"RoboSats client version": "RoboSats client version",
"and": "и",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Сообщество",
"Follow RoboSats in Nostr": одпиcаться на RoboSats в Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Расскажите нам о новой функции или ошибке",
"We are abandoning Telegram! Our old TG groups": "Мы отказываемся от Telegram! Наши старые группы ТГ",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Объём контрактов за 24 часа",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Сегодня активных роботов",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Браузер",
"Enable": "Включить",
"Enable TG Notifications": "Включить уведомления TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Вы перейдёте к разговору с Telegram ботом RoboSats. Просто откройте чат и нажмите Старт. Обратите внимание, что включив уведомления Telegram, Вы можете снизить уровень анонимности.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Выберите местоположение",
"Save": "Сохранить",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Назад",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Вы собираетесь посетить Learn RoboSats. На нём размещены учебные пособия и документация, которые помогут Вам научиться использовать RoboSats и понять, как он работает.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Создать Робота",
"Generate a robot avatar first. Then create your own order.": "Сначала создайте аватар робота. Затем создайте свой ордер.",
"You do not have a robot avatar": "У Вас нет аватара робота",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Ваш Robot",
"Your robot": "Ваш Робот",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Сохраните его!",
"Done": "Готово",
"Store your robot token": "Сохранить токен робота",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "В будущем Вам может понадобиться восстановить аватар робота: сохраните его в безопасном месте. Вы можете просто скопировать его в другое приложение.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Скачать RoboSats {{coordinatorVersion}} APK из Github releases",
"Go away!": "Уходите!",
"On Android RoboSats app ": "На Android RoboSats апликации ",
@ -325,6 +321,10 @@
"On your own soverign node": "На вашем собственном суверенном ноде",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "Версия координатора RoboSats {{coordinatorVersion}}, но ваше клиентское приложение — {{clientVersion}}. Это несоответствие версий может привести к ухудшению пользовательского опыта.",
"Update your RoboSats client": "Обновите свой клиент RoboSats",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Order",
"Robot": "Robot",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Kontrakt",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "Spara din token säkert",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Kopierat!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "ALLA",
"Buy": "Köpa",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "och använda",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Add filter",
"Amount": "Summa",
"An error occurred.": "An error occurred.",
@ -159,15 +155,15 @@
"starts with": "starts with",
"true": "true",
"yes": "yes",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Stäng",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Du kan hitta en steg-för-steg-beskrivning på hela transaktionsförfarandet här: ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Gå tillbaka",
"Keys": "Nycklar",
"Learn how to verify": "Lär dig hur man verifierar",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Din peers publika PGP-nyckel. Du använder den för att kryptera meddelanden som endast hen kan läsa, och för att verifiera inkommande meddelanden.",
"Your private key passphrase (keep secure!)": "Lösenordet till din privata nyckel (förvara säkert!)",
"Your public key": "Din publika nyckel",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... någonstans på jorden!",
"Client info": "Client info",
"Made with": "Skapad med",
"RoboSats client version": "RoboSats client version",
"and": "och",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Community",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Tipsa om en bugg eller ny funktion",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24h kontrakterad volym",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Aktiva robotar idag",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "Aktivera",
"Enable TG Notifications": "Aktivera TG-notifikationer",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Du kommer att skickas till en konversation med RoboSats Telegram-bot. Öppna chatten och tryck Start. Notera att genom att aktivera Telegram-notiser så försämrar du möjligen din anonymitet.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Tillbaka",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Du är på på väg att besöka Learn RoboSats. Där finns guider och dokumentation som hjälper dig att använda RoboSats och förstå hur det fungerar.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Generera Robot",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "Du har ingen robotavatar",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "Din robot",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Spara den!",
"Done": "Klar",
"Store your robot token": "Spara din robottoken",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Du kan behöva återställa din robotavatar i framtiden; förvara den säkert. Du kan kopiera den till en annan applikation.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "Amri",
"Robot": "Roboti",
"Settings": "Mipangilio",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Mkataba",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Unda alama",
"2. Meet your robot identity": "2. Tana na utambulisho wako wa roboti",
"3. Browse or create an order": "3. Tafuta au unda amri",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "Pia unaweza kuongeza wahusika wako wa nasibu ndani ya alama au",
"or visit the robot school for documentation.": "au tembelea shule ya roboti kwa nyaraka.",
"roll again": "chezesha tena",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Ingiza alama ya roboti yako ili kuirekebisha roboti yako na kupata ufikiaji wa biashara zake.",
"Paste token here": "Bandika alama hapa",
"Recover": "Rejesha",
"Robot recovery": "Kurejesha roboti",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Amri hai #{{orderID}}",
"Add Robot": "Ongeza Roboti",
"Add a new Robot": "Ongeza Roboti mpya",
@ -61,27 +57,27 @@
"Robot Garage": "Gorofa ya Roboti",
"Store your token safely": "Hifadhi alama yako kwa usalama",
"Welcome back!": "Karibu tena!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "Imekopiwa!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "Kubadilishana LN P2P Rahisi na Binafsi",
"Create a new robot and learn to use RoboSats": "Unda roboti mpya na ujifunze kutumia RoboSats",
"Fast Generate Robot": "Unda Roboti Haraka",
"Recover an existing robot using your token": "Rejesha roboti iliyopo kwa kutumia alama yako",
"Recovery": "Kurejesha",
"Start": "Anza",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Kuunganisha kwa TOR",
"Connection encrypted and anonymized using TOR.": "Unganisho limefichwa na kufanywa kuwa na siri kwa kutumia TOR.",
"Not enough entropy, make it more complex": "Entropi haifai, ifanye kuwa ngumu zaidi",
"The token is too short": "Alama ni fupi sana",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "Hii inahakikisha faragha ya juu kabisa, hata hivyo unaweza kuhisi programu inafanya kazi polepole. Ikiwa mawasiliano yamepotea, anza tena programu.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Kuunganishwa kwa mtandao wa TOR",
"Connecting to TOR network": "Kuunganisha kwa mtandao wa TOR",
"Connection error": "Hitilafu ya mawasiliano",
"Initializing TOR daemon": "Kuandaa TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "Yoyote",
"Buy": "Nunua",
"DESTINATION": "MAELEKEZO",
@ -95,7 +91,7 @@
"Swap Out": "Badilisha Nje",
"and use": "na tumia",
"pay with": "lipa kwa",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "Ongeza kichujio",
"Amount": "Kiasi",
"An error occurred.": "Kuna hitilafu iliyotokea.",
@ -159,15 +155,15 @@
"starts with": "inaanza na",
"true": "kweli",
"yes": "ndio",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "Funga",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "Unaweza kupata maelezo ya hatua kwa hatua ya mchakato wa biashara kwenye ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Rudi nyuma",
"Keys": "Funguo",
"Learn how to verify": "Jifunze jinsi ya kuthibitisha",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Funguo la umma la PGP la mwenzako. Unaitumia kufuta ujumbe ambao yeye tu anaweza kusoma na kuthibitisha kuwa mwenza wako alisaini ujumbe wa kuingia.",
"Your private key passphrase (keep secure!)": "Nenosiri la funguo binafsi lako (lihifadhiwe salama!)",
"Your public key": "Funguo lako la umma",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... mahali popote duniani!",
"Client info": "Client info",
"Made with": "Imetengenezwa kwa",
"RoboSats client version": "RoboSats client version",
"and": "na",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "Jumuiya",
"Follow RoboSats in Nostr": "Fuata RoboSats katika Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "Tuambie kuhusu huduma mpya au mdudu",
"We are abandoning Telegram! Our old TG groups": "Tunaiacha Telegram! Vikundi vyetu vya zamani vya TG",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "Kiasi kilichoidhinishwa kwa masaa 24",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "Robots wenye shughuli leo",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Kivinjari",
"Enable": "Washa",
"Enable TG Notifications": "Washa Arifa za TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Utachukuliwa kwenye mazungumzo na boti ya Telegram ya RoboSats. Fungua mazungumzo tu na bonyeza Anza. Tambua kwamba kwa kuwezesha arifa za Telegram unaweza kupunguza kiwango chako cha kutotambulika.",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "Nyuma",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Unaenda kutembelea Jifunze RoboSats. Ina mafunzo na nyaraka za kukusaidia kujifunza jinsi ya kutumia RoboSats na kuelewa jinsi inavyofanya kazi.",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "Zalisha Roboti",
"Generate a robot avatar first. Then create your own order.": "Zalisha picha ya mwakilishi wa roboti kwanza. Kisha tengeneza amri yako mwenyewe.",
"You do not have a robot avatar": "Huna picha ya mwakilishi wa roboti",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Roboti yako",
"Your robot": "Roboti yako",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "Fanya nakala rudufu!",
"Done": "Imekamilika",
"Store your robot token": "Hifadhi kitambulisho chako cha roboti",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Huenda ukahitaji kurejesha avatar yako ya roboti baadaye: iweke salama. Unaweza tu kuinakili kwenye programu nyingine.",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Pakua RoboSats {{coordinatorVersion}} APK kutoka kwa matoleo ya Github",
"Go away!": "Ondoka!",
"On Android RoboSats app ": "Kwenye programu ya Android ya RoboSats ",
@ -325,6 +321,10 @@
"On your own soverign node": "Kwenye node yako ya kifalme",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "Msimamizi wa RoboSats yuko kwenye toleo la {{coordinatorVersion}}, lakini programu yako ya mteja iko kwenye toleo la {{clientVersion}}. Tofauti hii ya toleo inaweza kusababisha uzoefu mbaya wa mtumiaji.",
"Update your RoboSats client": "Sasisha programu yako ya RoboSats",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "รายการซื้อขาย",
"Robot": "โรบอท",
"Settings": "Settings",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "Contract",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. Generate a token",
"2. Meet your robot identity": "2. Meet your robot identity",
"3. Browse or create an order": "3. Browse or create an order",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "You can also add your own random characters into the token or",
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
"roll again": "roll again",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "Enter your robot token to re-build your robot and gain access to its trades.",
"Paste token here": "Paste token here",
"Recover": "Recover",
"Robot recovery": "Robot recovery",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "Active order #{{orderID}}",
"Add Robot": "Add Robot",
"Add a new Robot": "Add a new Robot",
@ -61,27 +57,27 @@
"Robot Garage": "Robot Garage",
"Store your token safely": "รักษา token ของคุณไว้ให้ดี",
"Welcome back!": "Welcome back!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "คัดลอกแล้ว!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "A Simple and Private LN P2P Exchange",
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
"Fast Generate Robot": "Fast Generate Robot",
"Recover an existing robot using your token": "Recover an existing robot using your token",
"Recovery": "Recovery",
"Start": "Start",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "Connecting to TOR",
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using TOR.",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "Connected to TOR network",
"Connecting to TOR network": "Connecting to TOR network",
"Connection error": "Connection error",
"Initializing TOR daemon": "Initializing TOR daemon",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "ANY",
"Buy": "ซื้อ",
"DESTINATION": "DESTINATION",
@ -95,7 +91,7 @@
"Swap Out": "Swap Out",
"and use": "และใช้",
"pay with": "pay with",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "เพิ่มตัวกรอง",
"Amount": "จำนวน",
"An error occurred.": "เกิดความผิดพลาด",
@ -159,15 +155,15 @@
"starts with": "เริ่มต้นด้วย",
"true": "จริง",
"yes": "ใช่",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "ปิด",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub)",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "คุณสามารถอ่านขั้นตอนการซื้อขายทีละขั้นได้ที่",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "กลับ",
"Keys": "Keys",
"Learn how to verify": "เรียนรู้วิธีการตรวจสอบ",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "PGP public key ของคู่ค้า ใช้ในการเข้ารหัสกับข้อความซึ่งทำให้มีแต่เขาเท่านั้นที่สามารภถอ่านได้และใช้ตรวจสอบข้อความที่คู่ค้าเข้ารหัสและส่งมาให้คุณ",
"Your private key passphrase (keep secure!)": "passphrase ของ private key ของคุณ เก็บรักษาไว้ให้ดี!",
"Your public key": "Public key ของคุณ",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "... ซักที่ บนโลกใบนี้!",
"Client info": "Client info",
"Made with": "สร้างด้วย",
"RoboSats client version": "RoboSats client version",
"and": "และ",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "ชุมชน",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "บอกเราเกี่ยวกับฟีเจอร์ใหม่หรือบัค",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24h ปริมาณการซื้อขาย 24 ชั่วโมงที่แล้ว",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "จำนวนโรบอทที่ใช้งานในวันนี้",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "Browser",
"Enable": "เปิดใช้งาน",
"Enable TG Notifications": "ใช้การแจ้งเตือน Telegram",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "คุณจะเข้าไปยังแชทกับ telegram bot ของ RoboSats ให้คุณกด Start อย่างไรก็ตาม การใช้การแจ้งเตือน telegram จะลดระดับการปกปิดตัวตนของคุณ",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "กลับ",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "คุณกำลังเข้าสู่หน้าการเรียนรู้การใช้งาน RoboSats คุณสามารถศึกษาวิธีการใช้งานแพล้ตฟอร์มและทำความเข้าใจการทำงานของแพล้ตฟอร์มได้ที่นี่",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "สร้างโรบอทใหม่",
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
"You do not have a robot avatar": "คุณไม่มีโรบอท",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "Your Robot",
"Your robot": "โรบอทของคุณ",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "อย่าลืมบันทึก!",
"Done": "เสร็จสิ้น",
"Store your robot token": "เก็บรักษา token โรบอทของคุณ",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "คุณอาจต้องใช้โรบอทอีกในอนาคตจึงควรเก็บรักษามันไว้ให้ดี คุณสามารถคัดลอกมันไปเก็บไว้ในแอพพลิเคชั่นอื่นๆได้อย่างง่ายดาย",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
"Go away!": "Go away!",
"On Android RoboSats app ": "On Android RoboSats app ",
@ -325,6 +321,10 @@
"On your own soverign node": "On your own soverign node",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.",
"Update your RoboSats client": "Update your RoboSats client",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "订单",
"Robot": "机器人",
"Settings": "设置",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "合约",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. 生成令牌",
"2. Meet your robot identity": "2. 跟你的机器人身份打个招呼",
"3. Browse or create an order": "3. 浏览或创建订单",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "你也可以在令牌中添加你自己的随机字符或",
"or visit the robot school for documentation.": "或访问机器人学校参考文件。",
"roll again": "再掷一次",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "输入你的机器人令牌来重造你的机器人并访问它的交易。",
"Paste token here": "在此粘贴令牌",
"Recover": "恢复",
"Robot recovery": "恢复机器人",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "活跃订单 #{{orderID}}",
"Add Robot": "添加机器人",
"Add a new Robot": "添加新机器人",
@ -61,27 +57,27 @@
"Robot Garage": "机器人仓库",
"Store your token safely": "请安全地存储你的令牌",
"Welcome back!": "欢迎回来!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "已复制!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "一个简单且隐秘的点对点闪电交易所",
"Create a new robot and learn to use RoboSats": "创建一个新的机器人并学习如何使用 RoboSats",
"Fast Generate Robot": "快速生成机器人",
"Recover an existing robot using your token": "用你的令牌恢复现有的机器人",
"Recovery": "恢复",
"Start": "开始",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "正在连线 TOR",
"Connection encrypted and anonymized using TOR.": "连接已用 TOR 加密和匿名化。",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "这确保最高的隐秘程度,但你可能会觉得应用程序运作缓慢。如果丢失连接,请重启应用。",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "已连线 TOR 网络",
"Connecting to TOR network": "正在连线 TOR 网络",
"Connection error": "连线错误",
"Initializing TOR daemon": "正在初始化 TOR 守护进程",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "任何",
"Buy": "购买",
"DESTINATION": "目的地",
@ -95,7 +91,7 @@
"Swap Out": "换出",
"and use": "并使用",
"pay with": "支付",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "加筛选",
"Amount": "金额",
"An error occurred.": "发生错误。",
@ -159,15 +155,15 @@
"starts with": "以...开始",
"true": "实",
"yes": "是",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "关闭",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "你可以在此找到交易流程的分步说明:",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "返回",
"Keys": "钥匙",
"Learn how to verify": "学习如何验证",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "你的对等方的公钥。你使用它来加密只有你的对等方才能阅读的消息,并验证你的对等方签署的传入消息。",
"Your private key passphrase (keep secure!)": "你的私钥密码(请安全存放!)",
"Your public key": "你的公钥",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "...在世界上某处建造!",
"Client info": "Client info",
"Made with": "用",
"RoboSats client version": "RoboSats client version",
"and": "和",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "社群",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "向我们报告错误或要求新功能",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24小时合约量",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "今天活跃的机器人",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "浏览器",
"Enable": "开启",
"Enable TG Notifications": "开启 TG 通知",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "你将被带到 RoboSats Telegram Bot 的对话中。只需打开聊天并按开始。请注意,通过开启 Telegram 通知,你可能会降低匿名程度。",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "返回",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "你即将访问学习 RoboSats 页面。此页面提供教程和说明书,以帮助你学习如何使用 RoboSats 并了解它的功能。",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "生成机器人",
"Generate a robot avatar first. Then create your own order.": "请先生成一个机器人头像,然后创建你自己的订单。",
"You do not have a robot avatar": "你没有机器人头像",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "你的机器人",
"Your robot": "你的机器人",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "请备份!",
"Done": "完成",
"Store your robot token": "存储你的机器人令牌",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "你将来可能需要恢复你的机器人头像:安全地存放它。你可以轻松地将其复制到另一个应用程序中。",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "从 Github releases 下载 RoboSats {{coordinatorVersion}} APK",
"Go away!": "让开!",
"On Android RoboSats app ": "在安卓 RoboSats app 上",
@ -325,6 +321,10 @@
"On your own soverign node": "在你自己主权的节点上",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "RoboSats 协调器的版本是 {{coordinatorVersion}},但是你的客户端 app 是 {{clientVersion}}。版本不匹配可能会导致糟糕的用户体验。",
"Update your RoboSats client": "更新你的 RoboSats 客户端",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",

View File

@ -20,13 +20,9 @@
"Order": "訂單",
"Robot": "機器人",
"Settings": "設置",
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#7": "Phrases in basic/OrderPage/index.tsx",
"#6": "Phrases in basic/OrderPage/index.tsx",
"Contract": "合約",
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
"1. Generate a token": "1. 生成領牌",
"2. Meet your robot identity": "2. 跟你的機器人身份打個招呼",
"3. Browse or create an order": "3. 瀏覽或創建訂單",
@ -44,12 +40,12 @@
"You can also add your own random characters into the token or": "你也可以在領牌中添加你自己的隨機字符或",
"or visit the robot school for documentation.": "或訪問機器人學校參考文件。",
"roll again": "再擲一次",
"#9": "Phrases in basic/RobotPage/Recovery.tsx",
"#8": "Phrases in basic/RobotPage/Recovery.tsx",
"Enter your robot token to re-build your robot and gain access to its trades.": "輸入你的機器人領牌來重造你的機器人並訪問它的交易。",
"Paste token here": "在此粘貼領牌",
"Recover": "恢復",
"Robot recovery": "恢復機器人",
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
"Active order #{{orderID}}": "活躍訂單 #{{orderID}}",
"Add Robot": "添加機器人",
"Add a new Robot": "添加新機器人",
@ -61,27 +57,27 @@
"Robot Garage": "機器人倉庫",
"Store your token safely": "請安全地存儲你的令牌",
"Welcome back!": "歡迎回來!",
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
"Copied!": "已複製!",
"#12": "Phrases in basic/RobotPage/Welcome.tsx",
"#11": "Phrases in basic/RobotPage/Welcome.tsx",
"A Simple and Private LN P2P Exchange": "一個簡單且隱密的點對點閃電交易所",
"Create a new robot and learn to use RoboSats": "創建一個新的機器人並學習如何使用 RoboSats",
"Fast Generate Robot": "快速生成機器人",
"Recover an existing robot using your token": "用你的領牌恢復現有的機器人",
"Recovery": "恢復",
"Start": "開始",
"#13": "Phrases in basic/RobotPage/index.tsx",
"#12": "Phrases in basic/RobotPage/index.tsx",
"Connecting to TOR": "正在連線 TOR",
"Connection encrypted and anonymized using TOR.": "連接已用 TOR 加密和匿名化。",
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
"The token is too short": "The token is too short",
"This ensures maximum privacy, however you might feel the app behaves slow. If connection is lost, restart the app.": "這確保最高的隱密程度,但你可能會覺得應用程序運作緩慢。如果丟失連接,請重啟應用。",
"#14": "Phrases in components/TorConnection.tsx",
"#13": "Phrases in components/TorConnection.tsx",
"Connected to TOR network": "已連線 TOR 網絡",
"Connecting to TOR network": "正在連線 TOR 網絡",
"Connection error": "連線錯誤",
"Initializing TOR daemon": "正在初始化 TOR 常駐程式",
"#15": "Phrases in components/BookTable/BookControl.tsx",
"#14": "Phrases in components/BookTable/BookControl.tsx",
"ANY": "任何",
"Buy": "購買",
"DESTINATION": "目的地",
@ -95,7 +91,7 @@
"Swap Out": "換出",
"and use": "並使用",
"pay with": "支付",
"#16": "Phrases in components/BookTable/index.tsx",
"#15": "Phrases in components/BookTable/index.tsx",
"Add filter": "加篩選",
"Amount": "金額",
"An error occurred.": "發生錯誤。",
@ -159,15 +155,15 @@
"starts with": "以...開始",
"true": "實",
"yes": "是",
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
"#18": "Phrases in components/Charts/MapChart/index.tsx",
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx",
"Accept": "Accept",
"By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.": "By doing so, you will be fetching map tiles from a third-party provider. Depending on your setup, private information might be leaked to servers outside the RoboSats federation.",
"Close": "關閉",
"Download high resolution map?": "Download high resolution map?",
"Show tiles": "Show tiles",
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#20": "Phrases in components/Dialogs/About.tsx",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/About.tsx",
"(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)",
". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.": ". RoboSats developers will never contact you. The developers or the coordinators will definitely never ask for your robot token.",
@ -207,7 +203,7 @@
"You can find a step-by-step description of the trade pipeline in ": "你可以在此找到交易流程的分步說明: ",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.": "Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if the coordinator goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if the coordinator disappears. This window is usually about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels or directly to your trade coordinator using one of the contact methods listed on their profile.",
"Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.": "Your trade partner will not know the destination of the Lightning payment. The permanence of the data collected by the coordinators depend on their privacy and data policies. If a dispute arises, a coordinator may request additional information. The specifics of this process can vary from coordinator to coordinator.",
"#21": "Phrases in components/Dialogs/AuditPGP.tsx",
"#20": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "返回",
"Keys": "鑰匙",
"Learn how to verify": "學習如何驗證",
@ -223,13 +219,13 @@
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "你的對等方的 PGP 公鑰。你使用它來加密只有你的對等方才能閱讀的消息,並驗證你的對等方簽署的傳入消息。",
"Your private key passphrase (keep secure!)": "你的私鑰密碼 (請安全存放!)",
"Your public key": "你的公鑰",
"#22": "Phrases in components/Dialogs/Client.tsx",
"#21": "Phrases in components/Dialogs/Client.tsx",
"... somewhere on Earth!": "...在世界上某處製造!",
"Client info": "Client info",
"Made with": "用",
"RoboSats client version": "RoboSats client version",
"and": "和",
"#23": "Phrases in components/Dialogs/Community.tsx",
"#22": "Phrases in components/Dialogs/Community.tsx",
"Community": "社群",
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
"Follow RoboSats in X": "Follow RoboSats in X",
@ -244,7 +240,7 @@
"Tell us about a new feature or a bug": "向我們報告錯誤或要求新功能",
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
"X Official Account": "X Official Account",
"#24": "Phrases in components/Dialogs/Coordinator.tsx",
"#23": "Phrases in components/Dialogs/Coordinator.tsx",
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
"24h contracted volume": "24小時合約量",
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
@ -288,35 +284,35 @@
"Today active robots": "今天活躍的機器人",
"Website": "Website",
"X": "X",
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
"Browser": "瀏覽器",
"Enable": "開啟",
"Enable TG Notifications": "開啟 TG 通知",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "你將被帶到與 RoboSats Telegram Bot 的對話中。只需打開聊天並按開始。請注意,通過啟用 Telegram 通知,你可能會降低匿名程度。",
"#26": "Phrases in components/Dialogs/Exchange.tsx",
"#25": "Phrases in components/Dialogs/Exchange.tsx",
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
"Exchange Summary": "Exchange Summary",
"Online RoboSats coordinators": "Online RoboSats coordinators",
"#27": "Phrases in components/Dialogs/F2fMap.tsx",
"#26": "Phrases in components/Dialogs/F2fMap.tsx",
"Choose a location": "Choose a location",
"Save": "Save",
"#28": "Phrases in components/Dialogs/Learn.tsx",
"#27": "Phrases in components/Dialogs/Learn.tsx",
"Back": "返回",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "你即將訪問學習 RoboSats 頁面。此頁面提供教程和說明書,以幫助你學習如何使用 RoboSats 並了解它的功能。",
"#29": "Phrases in components/Dialogs/NoRobot.tsx",
"#28": "Phrases in components/Dialogs/NoRobot.tsx",
"Generate Robot": "生成機器人",
"Generate a robot avatar first. Then create your own order.": "請先生成一個機器人頭像,然後創建你自己的訂單。",
"You do not have a robot avatar": "你沒有機器人頭像",
"#30": "Phrases in components/Dialogs/Profile.tsx",
"#29": "Phrases in components/Dialogs/Profile.tsx",
"Coordinators that know your robots": "Coordinators that know your robots",
"Your Robot": "你的機器人",
"Your robot": "你的機器人",
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
"Back it up!": "請備份!",
"Done": "完成",
"Store your robot token": "存儲你的機器人令牌",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "你將來可能需要恢復你的機器人頭像:安全地存放它。你可以輕鬆地將其複製到另一個應用程序中。",
"#32": "Phrases in components/Dialogs/Update.tsx",
"#31": "Phrases in components/Dialogs/Update.tsx",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "從 Github releases 下載 RoboSats {{coordinatorVersion}} APK",
"Go away!": "讓開!",
"On Android RoboSats app ": "在安卓 RoboSats app 上",
@ -325,6 +321,10 @@
"On your own soverign node": "在你自己主權的節點上",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "RoboSats 協調器的版本是 {{coordinatorVersion}},但你的客戶端 app 是 {{clientVersion}}。版本不匹配可能會導致糟糕的用戶體驗。",
"Update your RoboSats client": "更新你的 RoboSats 客戶端",
"#32": "Phrases in components/Dialogs/Warning.tsx",
"Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.": "Coordinators of p2p trades are the source of trust, provide the infrastructure, pricing and will mediate in case of dispute. Make sure you research and trust \"{{coordinator_name}}\" before locking your bond. A malicious p2p coordinator can find ways to steal from you.",
"I understand": "I understand",
"Warning": "Warning",
"#33": "Phrases in components/FederationTable/index.tsx",
"Coordinators per page:": "Coordinators per page:",
"Enabled": "Enabled",