mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
Fix show coordinator warning only once
This commit is contained in:
parent
807355ec42
commit
353897cf9d
@ -18,6 +18,7 @@ export interface OpenDialogs {
|
|||||||
community: boolean;
|
community: boolean;
|
||||||
info: boolean;
|
info: boolean;
|
||||||
coordinator: string;
|
coordinator: string;
|
||||||
|
warning: boolean;
|
||||||
exchange: boolean;
|
exchange: boolean;
|
||||||
client: boolean;
|
client: boolean;
|
||||||
update: boolean;
|
update: boolean;
|
||||||
|
@ -6,18 +6,26 @@ import { useNavigate, useParams } from 'react-router-dom';
|
|||||||
import TradeBox from '../../components/TradeBox';
|
import TradeBox from '../../components/TradeBox';
|
||||||
import OrderDetails from '../../components/OrderDetails';
|
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 { FederationContext, type UseFederationStoreType } from '../../contexts/FederationContext';
|
||||||
import { GarageContext, type UseGarageStoreType } from '../../contexts/GarageContext';
|
import { GarageContext, type UseGarageStoreType } from '../../contexts/GarageContext';
|
||||||
import { type Order } from '../../models';
|
import { type Order } from '../../models';
|
||||||
import CautionDialog from './CautionDialog';
|
import { WarningDialog } from '../../components/Dialogs';
|
||||||
|
|
||||||
const OrderPage = (): JSX.Element => {
|
const OrderPage = (): JSX.Element => {
|
||||||
const { windowSize, setOpen, settings, navbarHeight, hostUrl, origin } =
|
const {
|
||||||
useContext<UseAppStoreType>(AppContext);
|
windowSize,
|
||||||
|
open,
|
||||||
|
setOpen,
|
||||||
|
acknowledgedWarning,
|
||||||
|
setAcknowledgedWarning,
|
||||||
|
settings,
|
||||||
|
navbarHeight,
|
||||||
|
hostUrl,
|
||||||
|
origin,
|
||||||
|
} = useContext<UseAppStoreType>(AppContext);
|
||||||
const { federation } = useContext<UseFederationStoreType>(FederationContext);
|
const { federation } = useContext<UseFederationStoreType>(FederationContext);
|
||||||
const { garage, badOrder, setBadOrder } = useContext<UseGarageStoreType>(GarageContext);
|
const { garage, badOrder, setBadOrder } = useContext<UseGarageStoreType>(GarageContext);
|
||||||
const [openCoordinatorWarning, setOpenCoordinatorWarning] = useState<Boolean>(true);
|
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const params = useParams();
|
const params = useParams();
|
||||||
@ -43,6 +51,7 @@ const OrderPage = (): JSX.Element => {
|
|||||||
|
|
||||||
const orderId = Number(params.orderId);
|
const orderId = Number(params.orderId);
|
||||||
if (Boolean(orderId) && currentOrderId !== orderId) setCurrentOrderId(orderId);
|
if (Boolean(orderId) && currentOrderId !== orderId) setCurrentOrderId(orderId);
|
||||||
|
if (!acknowledgedWarning) setOpen({ ...closeAll, warning: true });
|
||||||
}, [params]);
|
}, [params]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -106,9 +115,11 @@ const OrderPage = (): JSX.Element => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<CautionDialog
|
<WarningDialog
|
||||||
open={openCoordinatorWarning}
|
open={open.warning}
|
||||||
onClose={() => setOpenCoordinatorWarning(false)}
|
onClose={() => {
|
||||||
|
setOpen(closeAll), setAcknowledgedWarning(true);
|
||||||
|
}}
|
||||||
longAlias={federation.getCoordinator(params.shortAlias ?? '').longAlias}
|
longAlias={federation.getCoordinator(params.shortAlias ?? '').longAlias}
|
||||||
/>
|
/>
|
||||||
{currentOrder === null && badOrder === undefined && <CircularProgress />}
|
{currentOrder === null && badOrder === undefined && <CircularProgress />}
|
||||||
|
@ -15,7 +15,7 @@ interface Props {
|
|||||||
longAlias: string;
|
longAlias: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CautionDialog = ({ open, onClose, longAlias }: Props): JSX.Element => {
|
const WarningDialog = ({ open, onClose, longAlias }: Props): JSX.Element => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -38,4 +38,4 @@ const CautionDialog = ({ open, onClose, longAlias }: Props): JSX.Element => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default CautionDialog;
|
export default WarningDialog;
|
@ -12,3 +12,4 @@ export { default as ClientDialog } from './Client';
|
|||||||
export { default as EnableTelegramDialog } from './EnableTelegram';
|
export { default as EnableTelegramDialog } from './EnableTelegram';
|
||||||
export { default as F2fMapDialog } from './F2fMap';
|
export { default as F2fMapDialog } from './F2fMap';
|
||||||
export { default as UpdateDialog } from './Update';
|
export { default as UpdateDialog } from './Update';
|
||||||
|
export { default as WarningDialog } from './Warning';
|
||||||
|
@ -33,12 +33,13 @@ const entryPage: Page = !isNativeRoboSats
|
|||||||
? ((isPagePathEmpty ? 'robot' : pageFromPath) as Page)
|
? ((isPagePathEmpty ? 'robot' : pageFromPath) as Page)
|
||||||
: 'robot';
|
: 'robot';
|
||||||
|
|
||||||
export const closeAll = {
|
export const closeAll: OpenDialogs = {
|
||||||
more: false,
|
more: false,
|
||||||
learn: false,
|
learn: false,
|
||||||
community: false,
|
community: false,
|
||||||
info: false,
|
info: false,
|
||||||
coordinator: false,
|
coordinator: '',
|
||||||
|
warning: false,
|
||||||
exchange: false,
|
exchange: false,
|
||||||
client: false,
|
client: false,
|
||||||
update: false,
|
update: false,
|
||||||
@ -107,6 +108,8 @@ export interface UseAppStoreType {
|
|||||||
open: OpenDialogs;
|
open: OpenDialogs;
|
||||||
setOpen: Dispatch<SetStateAction<OpenDialogs>>;
|
setOpen: Dispatch<SetStateAction<OpenDialogs>>;
|
||||||
windowSize?: WindowSize;
|
windowSize?: WindowSize;
|
||||||
|
acknowledgedWarning: boolean;
|
||||||
|
setAcknowledgedWarning: Dispatch<SetStateAction<boolean>>;
|
||||||
clientVersion: {
|
clientVersion: {
|
||||||
semver: Version;
|
semver: Version;
|
||||||
short: string;
|
short: string;
|
||||||
@ -137,6 +140,7 @@ export const initialAppContext: UseAppStoreType = {
|
|||||||
origin: getOrigin(),
|
origin: getOrigin(),
|
||||||
hostUrl: getHostUrl(),
|
hostUrl: getHostUrl(),
|
||||||
clientVersion: getClientVersion(),
|
clientVersion: getClientVersion(),
|
||||||
|
acknowledgedWarning: false,
|
||||||
fav: { type: null, currency: 0, mode: 'fiat' },
|
fav: { type: null, currency: 0, mode: 'fiat' },
|
||||||
setFav: () => {},
|
setFav: () => {},
|
||||||
};
|
};
|
||||||
@ -167,6 +171,9 @@ export const useAppStore = (): UseAppStoreType => {
|
|||||||
getWindowSize(theme.typography.fontSize),
|
getWindowSize(theme.typography.fontSize),
|
||||||
);
|
);
|
||||||
const [fav, setFav] = useState<Favorites>(initialAppContext.fav);
|
const [fav, setFav] = useState<Favorites>(initialAppContext.fav);
|
||||||
|
const [acknowledgedWarning, setAcknowledgedWarning] = useState<boolean>(
|
||||||
|
initialAppContext.acknowledgedWarning,
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setTheme(makeTheme(settings));
|
setTheme(makeTheme(settings));
|
||||||
@ -222,6 +229,8 @@ export const useAppStore = (): UseAppStoreType => {
|
|||||||
setOpen,
|
setOpen,
|
||||||
windowSize,
|
windowSize,
|
||||||
clientVersion,
|
clientVersion,
|
||||||
|
acknowledgedWarning,
|
||||||
|
setAcknowledgedWarning,
|
||||||
hostUrl,
|
hostUrl,
|
||||||
origin,
|
origin,
|
||||||
fav,
|
fav,
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Ordre",
|
"Order": "Ordre",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Paràmetres",
|
"Settings": "Paràmetres",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contracte",
|
"Contract": "Contracte",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Genera un token",
|
"1. Generate a token": "1. Genera un token",
|
||||||
"2. Meet your robot identity": "2. Coneix la teva identitat de robot",
|
"2. Meet your robot identity": "2. Coneix la teva identitat de robot",
|
||||||
"3. Browse or create an order": "3. Navega o crea una ordre",
|
"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",
|
"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ó.",
|
"or visit the robot school for documentation.": "o visita l'escola Robot per més informació.",
|
||||||
"roll again": "rodar de nou",
|
"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.",
|
"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í",
|
"Paste token here": "Enganxa el token aquí",
|
||||||
"Recover": "Recuperar",
|
"Recover": "Recuperar",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Ordre activa #{{orderID}}",
|
"Active order #{{orderID}}": "Ordre activa #{{orderID}}",
|
||||||
"Add Robot": "Afegir Robot",
|
"Add Robot": "Afegir Robot",
|
||||||
"Add a new Robot": "Afegeix un nou Robot",
|
"Add a new Robot": "Afegeix un nou Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Garatge de Robots",
|
"Robot Garage": "Garatge de Robots",
|
||||||
"Store your token safely": "Guarda el teu token de manera segura",
|
"Store your token safely": "Guarda el teu token de manera segura",
|
||||||
"Welcome back!": "Bentornat!",
|
"Welcome back!": "Bentornat!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Copiat!",
|
"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",
|
"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",
|
"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",
|
"Fast Generate Robot": "Generar Robot ràpidament",
|
||||||
"Recover an existing robot using your token": "Recuperar un robot existent utilitzant el teu token",
|
"Recover an existing robot using your token": "Recuperar un robot existent utilitzant el teu token",
|
||||||
"Recovery": "Recuperació",
|
"Recovery": "Recuperació",
|
||||||
"Start": "Començar",
|
"Start": "Començar",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connectant a TOR",
|
"Connecting to TOR": "Connectant a TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connexió xifrada i anònima mitjançant 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",
|
"Not enough entropy, make it more complex": "Entropia insuficient, fes-ho més complex",
|
||||||
"The token is too short": "El token és massa curt",
|
"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ó.",
|
"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",
|
"Connected to TOR network": "Connectat a la xarxa TOR",
|
||||||
"Connecting to TOR network": "Connectant a la xarxa TOR",
|
"Connecting to TOR network": "Connectant a la xarxa TOR",
|
||||||
"Connection error": "Error de connexió",
|
"Connection error": "Error de connexió",
|
||||||
"Initializing TOR daemon": "Inicialitzant TOR daemon",
|
"Initializing TOR daemon": "Inicialitzant TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "TOT",
|
"ANY": "TOT",
|
||||||
"Buy": "Comprar",
|
"Buy": "Comprar",
|
||||||
"DESTINATION": "DESTÍ",
|
"DESTINATION": "DESTÍ",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "i fer servir",
|
"and use": "i fer servir",
|
||||||
"pay with": "pagar amb",
|
"pay with": "pagar amb",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Afegir filtre",
|
"Add filter": "Afegir filtre",
|
||||||
"Amount": "Suma",
|
"Amount": "Suma",
|
||||||
"An error occurred.": "Hi ha hagut un error.",
|
"An error occurred.": "Hi ha hagut un error.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "comença amb",
|
"starts with": "comença amb",
|
||||||
"true": "veritat",
|
"true": "veritat",
|
||||||
"yes": "si",
|
"yes": "si",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Tancar",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Tornar",
|
||||||
"Keys": "Claus",
|
"Keys": "Claus",
|
||||||
"Learn how to verify": "Aprèn a verificar",
|
"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 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 private key passphrase (keep secure!)": "La contrasenya de la teva clau privada (Mantenir segura!)",
|
||||||
"Your public key": "La teva clau pública",
|
"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!",
|
"... somewhere on Earth!": "... en algun indret de la Terra!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Fet amb",
|
"Made with": "Fet amb",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "i",
|
"and": "i",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Comunitat",
|
"Community": "Comunitat",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Volum contractat en 24h",
|
"24h contracted volume": "Volum contractat en 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Robots actius avui",
|
"Today active robots": "Robots actius avui",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Activar",
|
"Enable": "Activar",
|
||||||
"Enable TG Notifications": "Activar Notificacions TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Tornar",
|
"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.",
|
"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 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.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "El teu Robot",
|
"Your Robot": "El teu Robot",
|
||||||
"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!",
|
"Back it up!": "Guarda-ho!",
|
||||||
"Done": "Fet",
|
"Done": "Fet",
|
||||||
"Store your robot token": "Guarda el teu token",
|
"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ó.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Descarrega RoboSats {{coordinatorVersion}} APK de les versions de Github",
|
||||||
"Go away!": "Marxar!",
|
"Go away!": "Marxar!",
|
||||||
"On Android RoboSats app ": "A l'aplicació d'Android RoboSats ",
|
"On Android RoboSats app ": "A l'aplicació d'Android RoboSats ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "Al teu propi node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Nabídka",
|
"Order": "Nabídka",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Průvodce obchodem",
|
"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",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Ulož si svůj token bezpečně",
|
"Store your token safely": "Ulož si svůj token bezpečně",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Zkopirováno!!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "VŠE",
|
"ANY": "VŠE",
|
||||||
"Buy": "Nákup",
|
"Buy": "Nákup",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "použít",
|
"and use": "použít",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Přidat filter",
|
"Add filter": "Přidat filter",
|
||||||
"Amount": "Částka",
|
"Amount": "Částka",
|
||||||
"An error occurred.": "Došlo k chybě.",
|
"An error occurred.": "Došlo k chybě.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "začína s",
|
"starts with": "začína s",
|
||||||
"true": "správný",
|
"true": "správný",
|
||||||
"yes": "ano",
|
"yes": "ano",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Zavřít",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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",
|
"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 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.",
|
"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",
|
"Go back": "Jít zpět",
|
||||||
"Keys": "Klíče",
|
"Keys": "Klíče",
|
||||||
"Learn how to verify": "Naučit se, jak ověřovat",
|
"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 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 private key passphrase (keep secure!)": "Tvůj soukromí klíč a passphrase (drž v bezpečí!)",
|
||||||
"Your public key": "Tvůj veřejný klíč",
|
"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!",
|
"... somewhere on Earth!": "... někde na Zemi!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Vytvořeno s",
|
"Made with": "Vytvořeno s",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "a",
|
"and": "a",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Komunity",
|
"Community": "Komunity",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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 ",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Zobchodované množství za 24h",
|
"24h contracted volume": "Zobchodované množství za 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Dnešní aktivní roboti",
|
"Today active robots": "Dnešní aktivní roboti",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Povolit",
|
"Enable": "Povolit",
|
||||||
"Enable TG Notifications": "Povolit TG notifikace",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Zpět",
|
"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.",
|
"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 Robot": "Generovat Robota",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Tvůj 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!",
|
"Back it up!": "Zálohuj to!",
|
||||||
"Done": "Hotovo",
|
"Done": "Hotovo",
|
||||||
"Store your robot token": "Ulož si svůj robot token",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Order",
|
"Order": "Order",
|
||||||
"Robot": "Roboter",
|
"Robot": "Roboter",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Vertrag",
|
"Contract": "Vertrag",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Verwahre deinen Token sicher",
|
"Store your token safely": "Verwahre deinen Token sicher",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Kopiert!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "ALLE",
|
"ANY": "ALLE",
|
||||||
"Buy": "Kaufen",
|
"Buy": "Kaufen",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "und verwende",
|
"and use": "und verwende",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Add filter",
|
"Add filter": "Add filter",
|
||||||
"Amount": "Menge",
|
"Amount": "Menge",
|
||||||
"An error occurred.": "An error occurred.",
|
"An error occurred.": "An error occurred.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "starts with",
|
"starts with": "starts with",
|
||||||
"true": "true",
|
"true": "true",
|
||||||
"yes": "yes",
|
"yes": "yes",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Schließen",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Zurück",
|
||||||
"Keys": "Schlüssel",
|
"Keys": "Schlüssel",
|
||||||
"Learn how to verify": "Learn how to verify",
|
"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 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 private key passphrase (keep secure!)": "Deine Passphrase für den privaten Schlüssel (sicher aufbewahren!)",
|
||||||
"Your public key": "Dein öffentlicher Schlüssel",
|
"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!",
|
"... somewhere on Earth!": "... irgendwo auf der Erde!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Gemacht mit",
|
"Made with": "Gemacht mit",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "und",
|
"and": "und",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Community",
|
"Community": "Community",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24h Handelsvolumen",
|
"24h contracted volume": "24h Handelsvolumen",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Heute aktive Roboter",
|
"Today active robots": "Heute aktive Roboter",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Aktivieren",
|
"Enable": "Aktivieren",
|
||||||
"Enable TG Notifications": "Aktiviere TG-Benachrichtigungen",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Zurück",
|
"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.",
|
"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 Robot": "Roboter generieren",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Dein Roboter",
|
"Your robot": "Dein Roboter",
|
||||||
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
|
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
|
||||||
"Back it up!": "Speicher ihn ab!",
|
"Back it up!": "Speicher ihn ab!",
|
||||||
"Done": "Fertig",
|
"Done": "Fertig",
|
||||||
"Store your robot token": "Speicher Roboter-Token",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Order",
|
"Order": "Order",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contract",
|
"Contract": "Contract",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Store your token safely",
|
"Store your token safely": "Store your token safely",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Copied!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "ANY",
|
"ANY": "ANY",
|
||||||
"Buy": "Buy",
|
"Buy": "Buy",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "and use",
|
"and use": "and use",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Add filter",
|
"Add filter": "Add filter",
|
||||||
"Amount": "Amount",
|
"Amount": "Amount",
|
||||||
"An error occurred.": "An error occurred.",
|
"An error occurred.": "An error occurred.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "starts with",
|
"starts with": "starts with",
|
||||||
"true": "true",
|
"true": "true",
|
||||||
"yes": "yes",
|
"yes": "yes",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Close",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Go back",
|
||||||
"Keys": "Keys",
|
"Keys": "Keys",
|
||||||
"Learn how to verify": "Learn how to verify",
|
"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 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 private key passphrase (keep secure!)": "Your private key passphrase (keep secure!)",
|
||||||
"Your public key": "Your public key",
|
"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!",
|
"... somewhere on Earth!": "... somewhere on Earth!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Made with",
|
"Made with": "Made with",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "and",
|
"and": "and",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Community",
|
"Community": "Community",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24h contracted volume",
|
"24h contracted volume": "24h contracted volume",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Today active robots",
|
"Today active robots": "Today active robots",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable TG Notifications": "Enable TG Notifications",
|
"Enable TG Notifications": "Enable TG Notifications",
|
||||||
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Back",
|
"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.",
|
"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 Robot": "Generate Robot",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"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!",
|
"Back it up!": "Back it up!",
|
||||||
"Done": "Done",
|
"Done": "Done",
|
||||||
"Store your robot token": "Store your robot token",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Orden",
|
"Order": "Orden",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Ajustes",
|
"Settings": "Ajustes",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contrato",
|
"Contract": "Contrato",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Genera un token",
|
"1. Generate a token": "1. Genera un token",
|
||||||
"2. Meet your robot identity": "2. Conoce tu identidad robótica",
|
"2. Meet your robot identity": "2. Conoce tu identidad robótica",
|
||||||
"3. Browse or create an order": "3. Mira o crea una orden",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "o visita la 'escuela robótica' para ver la documentación.",
|
||||||
"roll again": "Tirar otra vez",
|
"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.",
|
"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",
|
"Paste token here": "Pega aquí el token",
|
||||||
"Recover": "Recuperar",
|
"Recover": "Recuperar",
|
||||||
"Robot recovery": "Recupera tu robot",
|
"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}}",
|
"Active order #{{orderID}}": "Orden activa #{{orderID}}",
|
||||||
"Add Robot": "Añadir Robot",
|
"Add Robot": "Añadir Robot",
|
||||||
"Add a new Robot": "Añade un nuevo Robot",
|
"Add a new Robot": "Añade un nuevo Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Garaje de robots",
|
"Robot Garage": "Garaje de robots",
|
||||||
"Store your token safely": "Guarda tu token de forma segura",
|
"Store your token safely": "Guarda tu token de forma segura",
|
||||||
"Welcome back!": "¡Hola otra vez!",
|
"Welcome back!": "¡Hola otra vez!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "¡Copiado!",
|
"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",
|
"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",
|
"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",
|
"Fast Generate Robot": "Genera un Robot al instante",
|
||||||
"Recover an existing robot using your token": "Recupera un robot existente usando tu token",
|
"Recover an existing robot using your token": "Recupera un robot existente usando tu token",
|
||||||
"Recovery": "Recuperar",
|
"Recovery": "Recuperar",
|
||||||
"Start": "Empezar",
|
"Start": "Empezar",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Conectando con TOR",
|
"Connecting to TOR": "Conectando con TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Conexión encriptada y anonimizada usando 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Conectado a la red TOR",
|
||||||
"Connecting to TOR network": "Conectando a la red TOR",
|
"Connecting to TOR network": "Conectando a la red TOR",
|
||||||
"Connection error": "Error de conexión",
|
"Connection error": "Error de conexión",
|
||||||
"Initializing TOR daemon": "Inicializando TOR",
|
"Initializing TOR daemon": "Inicializando TOR",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "TODO",
|
"ANY": "TODO",
|
||||||
"Buy": "Comprar",
|
"Buy": "Comprar",
|
||||||
"DESTINATION": "DESTINO",
|
"DESTINATION": "DESTINO",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap desde LN",
|
"Swap Out": "Swap desde LN",
|
||||||
"and use": "y usa",
|
"and use": "y usa",
|
||||||
"pay with": "paga con",
|
"pay with": "paga con",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Añadir filtro",
|
"Add filter": "Añadir filtro",
|
||||||
"Amount": "Cantidad",
|
"Amount": "Cantidad",
|
||||||
"An error occurred.": "Ha ocurrido un error.",
|
"An error occurred.": "Ha ocurrido un error.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "empieza con",
|
"starts with": "empieza con",
|
||||||
"true": "verdad",
|
"true": "verdad",
|
||||||
"yes": "si",
|
"yes": "si",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Cerrar",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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",
|
"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 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.",
|
"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",
|
"Go back": "Volver",
|
||||||
"Keys": "Llaves",
|
"Keys": "Llaves",
|
||||||
"Learn how to verify": "Aprende a verificar",
|
"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 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 private key passphrase (keep secure!)": "La contraseña de tu llave privada ¡Guárdala bien!",
|
||||||
"Your public key": "Tu llave pública",
|
"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!",
|
"... somewhere on Earth!": "... en algún lugar de La Tierra!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Hecho con",
|
"Made with": "Hecho con",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "y",
|
"and": "y",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Comunidad",
|
"Community": "Comunidad",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Volumen de los contratos en 24h",
|
"24h contracted volume": "Volumen de los contratos en 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Robots activos hoy",
|
"Today active robots": "Robots activos hoy",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Activar",
|
"Enable": "Activar",
|
||||||
"Enable TG Notifications": "Activar Notificaciones TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Volver",
|
"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.",
|
"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 Robot": "Generar Robot",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Primero genera un robot avatar. Después crea tu propia orden.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Tu Robot",
|
"Your robot": "Tu Robot",
|
||||||
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
|
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
|
||||||
"Back it up!": "¡Guárdalo!",
|
"Back it up!": "¡Guárdalo!",
|
||||||
"Done": "Hecho",
|
"Done": "Hecho",
|
||||||
"Store your robot token": "Guarda el token",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Descarga el APK de RoboSats {{coordinatorVersion}} desde Github",
|
||||||
"Go away!": "¡Adiós!",
|
"Go away!": "¡Adiós!",
|
||||||
"On Android RoboSats app ": "En la aplicación Android de RoboSats ",
|
"On Android RoboSats app ": "En la aplicación Android de RoboSats ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "En tu propio nodo",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Eskaera",
|
"Order": "Eskaera",
|
||||||
"Robot": "Robota",
|
"Robot": "Robota",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Kontratua",
|
"Contract": "Kontratua",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Gorde zure tokena era seguru batean",
|
"Store your token safely": "Gorde zure tokena era seguru batean",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Kopiatuta!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "ANY",
|
"ANY": "ANY",
|
||||||
"Buy": "Erosi",
|
"Buy": "Erosi",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "eta erabili",
|
"and use": "eta erabili",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Gehitu iragazkia",
|
"Add filter": "Gehitu iragazkia",
|
||||||
"Amount": "Kopurua",
|
"Amount": "Kopurua",
|
||||||
"An error occurred.": "Akats bat gertatu da.",
|
"An error occurred.": "Akats bat gertatu da.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "hasten da",
|
"starts with": "hasten da",
|
||||||
"true": "egia",
|
"true": "egia",
|
||||||
"yes": "bai",
|
"yes": "bai",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Itxi",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Joan atzera",
|
||||||
"Keys": "Giltzak",
|
"Keys": "Giltzak",
|
||||||
"Learn how to verify": "Ikasi nola egiaztatu",
|
"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 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 private key passphrase (keep secure!)": "Zure giltza pribatuaren pasahitza (seguru mantendu)",
|
||||||
"Your public key": "Zure giltza publikoa",
|
"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!",
|
"... somewhere on Earth!": "... Lurreko lekuren batean!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Erabili dira",
|
"Made with": "Erabili dira",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "eta",
|
"and": "eta",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Komunitatea",
|
"Community": "Komunitatea",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24 ordutan kontratatutako bolumena",
|
"24h contracted volume": "24 ordutan kontratatutako bolumena",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Robot aktiboak gaur",
|
"Today active robots": "Robot aktiboak gaur",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Baimendu",
|
"Enable": "Baimendu",
|
||||||
"Enable TG Notifications": "Baimendu TG Jakinarazpenak",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Atzera",
|
"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.",
|
"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 Robot": "Robota sortu",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Zure robota",
|
"Your robot": "Zure robota",
|
||||||
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
|
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
|
||||||
"Back it up!": "Gorde ezazu!",
|
"Back it up!": "Gorde ezazu!",
|
||||||
"Done": "Prest",
|
"Done": "Prest",
|
||||||
"Store your robot token": "Gorde zure robot tokena",
|
"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",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Deskargatu RoboSats {{coordinatorVersion}} APK Github-en",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Ordre",
|
"Order": "Ordre",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Réglages",
|
"Settings": "Réglages",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contrat",
|
"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",
|
"1. Generate a token": "1. Générer un jeton",
|
||||||
"2. Meet your robot identity": "2. Découvrez votre identité robotique",
|
"2. Meet your robot identity": "2. Découvrez votre identité robotique",
|
||||||
"3. Browse or create an order": "3. Consulter ou créer une commande",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "ou visiter l'école robosats pour la documentation.",
|
||||||
"roll again": "rouler de nouveau",
|
"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.",
|
"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",
|
"Paste token here": "Coller le jeton ici",
|
||||||
"Recover": "Récupérer",
|
"Recover": "Récupérer",
|
||||||
"Robot recovery": "Récupération du robot",
|
"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}}",
|
"Active order #{{orderID}}": "Ordre actif #{{orderID}}",
|
||||||
"Add Robot": "Ajout Robot",
|
"Add Robot": "Ajout Robot",
|
||||||
"Add a new Robot": "Ajouter un nouveau Robot",
|
"Add a new Robot": "Ajouter un nouveau Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Garage des robots",
|
"Robot Garage": "Garage des robots",
|
||||||
"Store your token safely": "Stockez votre jeton en sécurité",
|
"Store your token safely": "Stockez votre jeton en sécurité",
|
||||||
"Welcome back!": "Bon retour parmi nous !",
|
"Welcome back!": "Bon retour parmi nous !",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Copié !",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Recover an existing robot using your token": "Récupérer un robot existant à l'aide de votre jeton",
|
||||||
"Recovery": "Récupération",
|
"Recovery": "Récupération",
|
||||||
"Start": "Commencer",
|
"Start": "Commencer",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connexion au réseau TOR",
|
"Connecting to TOR": "Connexion au réseau TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connexion chiffré et anonymisée utilisant 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",
|
"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",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connecté au réseau TOR",
|
||||||
"Connecting to TOR network": "Connexion au réseau TOR",
|
"Connecting to TOR network": "Connexion au réseau TOR",
|
||||||
"Connection error": "Erreur de connexion",
|
"Connection error": "Erreur de connexion",
|
||||||
"Initializing TOR daemon": "Initialisation du daemon TOR",
|
"Initializing TOR daemon": "Initialisation du daemon TOR",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "Tous",
|
"ANY": "Tous",
|
||||||
"Buy": "Acheter",
|
"Buy": "Acheter",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Échange OC->LN",
|
"Swap Out": "Échange OC->LN",
|
||||||
"and use": "et utiliser",
|
"and use": "et utiliser",
|
||||||
"pay with": "payer avec",
|
"pay with": "payer avec",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Ajouter filtre",
|
"Add filter": "Ajouter filtre",
|
||||||
"Amount": "Montant",
|
"Amount": "Montant",
|
||||||
"An error occurred.": "Une erreur s'est produite.",
|
"An error occurred.": "Une erreur s'est produite.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "commence par",
|
"starts with": "commence par",
|
||||||
"true": "vrai",
|
"true": "vrai",
|
||||||
"yes": "oui",
|
"yes": "oui",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Fermer",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Retourner",
|
||||||
"Keys": "Keys",
|
"Keys": "Keys",
|
||||||
"Learn how to verify": "Apprendre à vérifier",
|
"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 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 private key passphrase (keep secure!)": "Phrase de passe de votre clé privée (à conserver précieusement !)",
|
||||||
"Your public key": "Votre clé publique",
|
"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!",
|
"... somewhere on Earth!": "... quelque part sur Terre!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Construit avec",
|
"Made with": "Construit avec",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "et",
|
"and": "et",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Communauté",
|
"Community": "Communauté",
|
||||||
"Follow RoboSats in Nostr": "Suivez RoboSats sur Nostr",
|
"Follow RoboSats in Nostr": "Suivez RoboSats sur Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "Nous abandonnons Telegram ! Nos anciens groupes TG",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Volume contracté en 24h",
|
"24h contracted volume": "Volume contracté en 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Robots actifs aujourd'hui",
|
"Today active robots": "Robots actifs aujourd'hui",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Navigateur",
|
"Browser": "Navigateur",
|
||||||
"Enable": "Activer",
|
"Enable": "Activer",
|
||||||
"Enable TG Notifications": "Activer notifications TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Retour",
|
"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.",
|
"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 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.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Votre Robot",
|
"Your Robot": "Votre Robot",
|
||||||
"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!",
|
"Back it up!": "Sauvegardez!",
|
||||||
"Done": "Fait",
|
"Done": "Fait",
|
||||||
"Store your robot token": "Enregistrez votre jeton du robot",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Télécharger RoboSats {{coordinatorVersion}} APK depuis les publications Github",
|
||||||
"Go away!": "Partez !",
|
"Go away!": "Partez !",
|
||||||
"On Android RoboSats app ": "Sur l'application Android RoboSats ",
|
"On Android RoboSats app ": "Sur l'application Android RoboSats ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "Sur votre propre nœud souverain",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Ordina",
|
"Order": "Ordina",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Impostazioni",
|
"Settings": "Impostazioni",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contratto",
|
"Contract": "Contratto",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Genera un token",
|
"1. Generate a token": "1. Genera un token",
|
||||||
"2. Meet your robot identity": "2. Incontra la tua identità robotica",
|
"2. Meet your robot identity": "2. Incontra la tua identità robotica",
|
||||||
"3. Browse or create an order": "3. Cerca o crea un ordine",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "oppure visitare la scuola robotica per la documentazione.",
|
||||||
"roll again": "lancia di nuovo",
|
"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.",
|
"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",
|
"Paste token here": "Incolla il token qui",
|
||||||
"Recover": "Recupera",
|
"Recover": "Recupera",
|
||||||
"Robot recovery": "Recupera robot",
|
"Robot recovery": "Recupera robot",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Ordine attivo #{{orderID}}",
|
"Active order #{{orderID}}": "Ordine attivo #{{orderID}}",
|
||||||
"Add Robot": "Aggiungi robot",
|
"Add Robot": "Aggiungi robot",
|
||||||
"Add a new Robot": "Aggiungi un nuovo robot",
|
"Add a new Robot": "Aggiungi un nuovo robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Garage del robot",
|
"Robot Garage": "Garage del robot",
|
||||||
"Store your token safely": "Custodisci il tuo token in modo sicuro",
|
"Store your token safely": "Custodisci il tuo token in modo sicuro",
|
||||||
"Welcome back!": "Ben tornato!",
|
"Welcome back!": "Ben tornato!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Copiato!",
|
"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",
|
"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",
|
"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",
|
"Fast Generate Robot": "Generazione rapida di un robot",
|
||||||
"Recover an existing robot using your token": "Recupera un robot esistente con il tuo token",
|
"Recover an existing robot using your token": "Recupera un robot esistente con il tuo token",
|
||||||
"Recovery": "Recupero",
|
"Recovery": "Recupero",
|
||||||
"Start": "Inizia",
|
"Start": "Inizia",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connessione a TOR",
|
"Connecting to TOR": "Connessione a TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connessione criptata e anonimizzata mediante 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",
|
"Not enough entropy, make it more complex": "Non c'è abbastanza entropia, rendilo più complesso",
|
||||||
"The token is too short": "Il token è troppo corto",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connesso alla rete TOR",
|
||||||
"Connecting to TOR network": "Connessione alla rete TOR",
|
"Connecting to TOR network": "Connessione alla rete TOR",
|
||||||
"Connection error": "Errore di connessione",
|
"Connection error": "Errore di connessione",
|
||||||
"Initializing TOR daemon": "Inizializzazione del processo TOR",
|
"Initializing TOR daemon": "Inizializzazione del processo TOR",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "QUALUNQUE",
|
"ANY": "QUALUNQUE",
|
||||||
"Buy": "Compra",
|
"Buy": "Compra",
|
||||||
"DESTINATION": "DESTINAZIONE",
|
"DESTINATION": "DESTINAZIONE",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "ed usa",
|
"and use": "ed usa",
|
||||||
"pay with": "paga con",
|
"pay with": "paga con",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Aggiungi filtro",
|
"Add filter": "Aggiungi filtro",
|
||||||
"Amount": "Quantità",
|
"Amount": "Quantità",
|
||||||
"An error occurred.": "Si è verificato un errore.",
|
"An error occurred.": "Si è verificato un errore.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "inizia con",
|
"starts with": "inizia con",
|
||||||
"true": "vero",
|
"true": "vero",
|
||||||
"yes": "si",
|
"yes": "si",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Chiudi",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Indietro",
|
||||||
"Keys": "Chiavi",
|
"Keys": "Chiavi",
|
||||||
"Learn how to verify": "Impara come verificare",
|
"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 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 private key passphrase (keep secure!)": "La frase d'accesso alla tua chiave privata (Proteggila!)",
|
||||||
"Your public key": "La tua chiave pubblica",
|
"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!",
|
"... somewhere on Earth!": "... da qualche parte sulla Terra!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Fatto con",
|
"Made with": "Fatto con",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "e",
|
"and": "e",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Comunità",
|
"Community": "Comunità",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Volume scambiato in 24h",
|
"24h contracted volume": "Volume scambiato in 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "I robots attivi oggi",
|
"Today active robots": "I robots attivi oggi",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Attiva",
|
"Enable": "Attiva",
|
||||||
"Enable TG Notifications": "Attiva notifiche TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Indietro",
|
"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.",
|
"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 Robot": "Genera un Robot",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Genera prima un avatar robot. Poi crea il tuo ordine.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Il tuo Robot",
|
"Your Robot": "Il tuo Robot",
|
||||||
"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!",
|
"Back it up!": "Salvalo!",
|
||||||
"Done": "Fatto",
|
"Done": "Fatto",
|
||||||
"Store your robot token": "Salva il tuo token",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Scarica il file APK di RoboSats {{coordinatorVersion}} dalle releases Github",
|
||||||
"Go away!": "Vattene!",
|
"Go away!": "Vattene!",
|
||||||
"On Android RoboSats app ": "Sull'app Android di RoboSats ",
|
"On Android RoboSats app ": "Sull'app Android di RoboSats ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "Sul proprio nodo sovrano",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "注文",
|
"Order": "注文",
|
||||||
"Robot": "ロボット",
|
"Robot": "ロボット",
|
||||||
"Settings": "設定",
|
"Settings": "設定",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "契約",
|
"Contract": "契約",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. トークンを生成",
|
"1. Generate a token": "1. トークンを生成",
|
||||||
"2. Meet your robot identity": "2. ロボットを紹介します",
|
"2. Meet your robot identity": "2. ロボットを紹介します",
|
||||||
"3. Browse or create an order": "3. 注文書を見るか作るか",
|
"3. Browse or create an order": "3. 注文書を見るか作るか",
|
||||||
@ -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}}": "公開中の注文 #{{orderID}}",
|
"Active order #{{orderID}}": "公開中の注文 #{{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": "シンプルでプライベートなライトニングP2P取引所",
|
"A Simple and Private LN P2P Exchange": "シンプルでプライベートなライトニングP2P取引所",
|
||||||
"Create a new robot and learn to use RoboSats": "新しいロボットを構築して、RoboSatsの使い方を学びます",
|
"Create a new robot and learn to use RoboSats": "新しいロボットを構築して、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": "Torネットワークに接続中",
|
"Connecting to TOR": "Torネットワークに接続中",
|
||||||
"Connection encrypted and anonymized using TOR.": "接続はTORを使って暗号化され、匿名化されています。",
|
"Connection encrypted and anonymized using TOR.": "接続はTORを使って暗号化され、匿名化されています。",
|
||||||
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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": "TORネットワークに接続しました",
|
"Connected to TOR network": "TORネットワークに接続しました",
|
||||||
"Connecting to TOR network": "TORネットワークに接続中",
|
"Connecting to TOR network": "TORネットワークに接続中",
|
||||||
"Connection error": "接続エラー",
|
"Connection error": "接続エラー",
|
||||||
"Initializing TOR daemon": "TORデーモンを初期化中",
|
"Initializing TOR daemon": "TORデーモンを初期化中",
|
||||||
"#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",
|
"true": "True",
|
||||||
"yes": "はい",
|
"yes": "はい",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub)。 ",
|
"(GitHub).": "(GitHub)。 ",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 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.",
|
"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.": "これはあなたの取引相手のPGP公開鍵です。あなたは相手専用の暗号化メッセージを送信するために使用し、また受信したメッセージが相手によって署名されたものであることを確認するためにも使用します。",
|
"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 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",
|
"Client info": "Client info",
|
||||||
"Made with": "と",
|
"Made with": "と",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"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 Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24時間の契約量",
|
"24h contracted volume": "24時間の契約量",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "本日アクティブなロボット",
|
"Today active robots": "本日アクティブなロボット",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"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.": "RoboSatsのテレグラムボットとのチャットに移動します。チャットを開いて「Start」を押してください。テレグラム通知を有効にすることで匿名レベルが低下する可能性があることに注意してください。",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"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.": "「Learn RoboSats」学習ページにアクセスしようとしています。RoboSatsの使い方を学び、動作原理を理解するためのチュートリアルとドキュメントが提供されています。",
|
"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 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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"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": "GithubリリースからRoboSats {{coordinatorVersion}} APKをダウンロードしてください。",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "GithubリリースからRoboSats {{coordinatorVersion}} APKをダウンロードしてください。",
|
||||||
"Go away!": "行ってしまえ!",
|
"Go away!": "行ってしまえ!",
|
||||||
"On Android RoboSats app ": "AndroidのRoboSatsアプリ ",
|
"On Android RoboSats app ": "AndroidのRoboSatsアプリ ",
|
||||||
@ -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コーディネーターはバージョン{{coordinatorVersion}}で、クライアントアプリは{{clientVersion}}です。このバージョンの不一致は、悪いユーザーエクスペリエンスを引き起こす可能性があります。",
|
"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クライアントを更新してください",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Zamówienie",
|
"Order": "Zamówienie",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Kontrakt",
|
"Contract": "Kontrakt",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Przechowuj swój token bezpiecznie",
|
"Store your token safely": "Przechowuj swój token bezpiecznie",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Skopiowane!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "KAŻDY",
|
"ANY": "KAŻDY",
|
||||||
"Buy": "Kupić",
|
"Buy": "Kupić",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "i użyć",
|
"and use": "i użyć",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Add filter",
|
"Add filter": "Add filter",
|
||||||
"Amount": "Ilość",
|
"Amount": "Ilość",
|
||||||
"An error occurred.": "An error occurred.",
|
"An error occurred.": "An error occurred.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "starts with",
|
"starts with": "starts with",
|
||||||
"true": "true",
|
"true": "true",
|
||||||
"yes": "yes",
|
"yes": "yes",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Blisko",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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óć",
|
"Go back": "Wróć",
|
||||||
"Keys": "Keys",
|
"Keys": "Keys",
|
||||||
"Learn how to verify": "Learn how to verify",
|
"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 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 private key passphrase (keep secure!)": "Your private key passphrase (keep secure!)",
|
||||||
"Your public key": "Your public key",
|
"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!",
|
"... somewhere on Earth!": "... gdzieś na Ziemi!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Wykonana z",
|
"Made with": "Wykonana z",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "i",
|
"and": "i",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Społeczność",
|
"Community": "Społeczność",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Zakontraktowana objętość 24h",
|
"24h contracted volume": "Zakontraktowana objętość 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Dziś aktywne roboty",
|
"Today active robots": "Dziś aktywne roboty",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Włączyć",
|
"Enable": "Włączyć",
|
||||||
"Enable TG Notifications": "Włącz powiadomienia TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Z powrotem",
|
"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.",
|
"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 Robot": "Generuj robota",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Twój 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ą!",
|
"Back it up!": "Utwórz kopię zapasową!",
|
||||||
"Done": "Done",
|
"Done": "Done",
|
||||||
"Store your robot token": "Store your robot token",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Ordem",
|
"Order": "Ordem",
|
||||||
"Robot": "Robô",
|
"Robot": "Robô",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contrato",
|
"Contract": "Contrato",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Guarde seu token de forma segura",
|
"Store your token safely": "Guarde seu token de forma segura",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Copiado!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "QUALQUER",
|
"ANY": "QUALQUER",
|
||||||
"Buy": "Comprar",
|
"Buy": "Comprar",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "e utilizar",
|
"and use": "e utilizar",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Add filter",
|
"Add filter": "Add filter",
|
||||||
"Amount": "Quantidade",
|
"Amount": "Quantidade",
|
||||||
"An error occurred.": "An error occurred.",
|
"An error occurred.": "An error occurred.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "starts with",
|
"starts with": "starts with",
|
||||||
"true": "true",
|
"true": "true",
|
||||||
"yes": "yes",
|
"yes": "yes",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Fechar",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Voltar",
|
||||||
"Keys": "Chaves",
|
"Keys": "Chaves",
|
||||||
"Learn how to verify": "Saiba como verificar",
|
"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 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 private key passphrase (keep secure!)": "Sua senha de chave privada (mantenha a segurança!)",
|
||||||
"Your public key": "Sua chave pública",
|
"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!",
|
"... somewhere on Earth!": "... alguém na terra!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Feito com",
|
"Made with": "Feito com",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "e",
|
"and": "e",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Comunidade",
|
"Community": "Comunidade",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Volume contratado em 24h",
|
"24h contracted volume": "Volume contratado em 24h",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Robôs ativos hoje",
|
"Today active robots": "Robôs ativos hoje",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Ativar",
|
"Enable": "Ativar",
|
||||||
"Enable TG Notifications": "Habilitar notificações do TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Voltar",
|
"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.",
|
"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 Robot": "Gerar robô",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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ô",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Seu robô",
|
"Your robot": "Seu robô",
|
||||||
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
|
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
|
||||||
"Back it up!": "Apoia-la!",
|
"Back it up!": "Apoia-la!",
|
||||||
"Done": "Feito",
|
"Done": "Feito",
|
||||||
"Store your robot token": "Armazene seu token de robô",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Ордер",
|
"Order": "Ордер",
|
||||||
"Robot": "Робот",
|
"Robot": "Робот",
|
||||||
"Settings": "Настройки",
|
"Settings": "Настройки",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Контракт",
|
"Contract": "Контракт",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Создайте токен",
|
"1. Generate a token": "1. Создайте токен",
|
||||||
"2. Meet your robot identity": "2. Познакомьтесь со своей личностью робота",
|
"2. Meet your robot identity": "2. Познакомьтесь со своей личностью робота",
|
||||||
"3. Browse or create an order": "3. Просмотрите или создайте заказ",
|
"3. Browse or create an order": "3. Просмотрите или создайте заказ",
|
||||||
@ -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}}": "Активный ордер #{{orderID}}",
|
"Active order #{{orderID}}": "Активный ордер #{{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": "Простой и приватный LN P2P обменник",
|
"A Simple and Private LN P2P Exchange": "Простой и приватный LN P2P обменник",
|
||||||
"Create a new robot and learn to use RoboSats": "Создайте нового робота и научитесь использовать RoboSats",
|
"Create a new robot and learn to use RoboSats": "Создайте нового робота и научитесь использовать 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": "Подключение к TOR",
|
"Connecting to TOR": "Подключение к TOR",
|
||||||
"Connection encrypted and anonymized using 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.": "Это обеспечивает максимальную конфиденциальность, однако вы можете почувствовать, что приложение работает медленно. Если соединение потеряно, перезапустите приложение.",
|
"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",
|
"Connected to TOR network": "Подключено к сети TOR",
|
||||||
"Connecting to TOR network": "Подключение к сети TOR",
|
"Connecting to TOR network": "Подключение к сети TOR",
|
||||||
"Connection error": "Ошибка подключения",
|
"Connection error": "Ошибка подключения",
|
||||||
"Initializing TOR daemon": "Инициализация TOR daemon",
|
"Initializing TOR daemon": "Инициализация 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",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/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.": "Поступая таким образом вы будете получать фрагменты карты от стороннего поставщика. В зависимости от ваших настроек личная информация может попасть на серверы за пределами федерации RoboSats.",
|
"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": "Закрыть",
|
"Close": "Закрыть",
|
||||||
"Download high resolution map?": "Загрузить карту в высоком разрешении?",
|
"Download high resolution map?": "Загрузить карту в высоком разрешении?",
|
||||||
"Show tiles": "Показать карту",
|
"Show tiles": "Показать карту",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 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.",
|
"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.": "Публичный ключ PGP Вашего партнёра. Вы используете его для шифрования сообщений, которые может читать только он, и для проверки того, что Ваш партнёр подписал входящие сообщения.",
|
"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 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",
|
"Client info": "Client info",
|
||||||
"Made with": "Сделано с",
|
"Made with": "Сделано с",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"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": "Подпиcаться на RoboSats в Nostr",
|
"Follow RoboSats in Nostr": "Подпиcаться на RoboSats в Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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": "Мы отказываемся от Telegram! Наши старые группы ТГ",
|
"We are abandoning Telegram! Our old TG groups": "Мы отказываемся от Telegram! Наши старые группы ТГ",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Объём контрактов за 24 часа",
|
"24h contracted volume": "Объём контрактов за 24 часа",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Сегодня активных роботов",
|
"Today active robots": "Сегодня активных роботов",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Браузер",
|
"Browser": "Браузер",
|
||||||
"Enable": "Включить",
|
"Enable": "Включить",
|
||||||
"Enable TG Notifications": "Включить уведомления TG",
|
"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, Вы можете снизить уровень анонимности.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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.": "Вы собираетесь посетить Learn RoboSats. На нём размещены учебные пособия и документация, которые помогут Вам научиться использовать RoboSats и понять, как он работает.",
|
"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 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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Ваш Robot",
|
"Your Robot": "Ваш 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": "Скачать RoboSats {{coordinatorVersion}} APK из Github releases",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Скачать RoboSats {{coordinatorVersion}} APK из Github releases",
|
||||||
"Go away!": "Уходите!",
|
"Go away!": "Уходите!",
|
||||||
"On Android RoboSats app ": "На Android RoboSats апликации ",
|
"On Android RoboSats app ": "На Android RoboSats апликации ",
|
||||||
@ -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 {{coordinatorVersion}}, но ваше клиентское приложение — {{clientVersion}}. Это несоответствие версий может привести к ухудшению пользовательского опыта.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Order",
|
"Order": "Order",
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Kontrakt",
|
"Contract": "Kontrakt",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "Spara din token säkert",
|
"Store your token safely": "Spara din token säkert",
|
||||||
"Welcome back!": "Welcome back!",
|
"Welcome back!": "Welcome back!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Kopierat!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "ALLA",
|
"ANY": "ALLA",
|
||||||
"Buy": "Köpa",
|
"Buy": "Köpa",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "och använda",
|
"and use": "och använda",
|
||||||
"pay with": "pay with",
|
"pay with": "pay with",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Add filter",
|
"Add filter": "Add filter",
|
||||||
"Amount": "Summa",
|
"Amount": "Summa",
|
||||||
"An error occurred.": "An error occurred.",
|
"An error occurred.": "An error occurred.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "starts with",
|
"starts with": "starts with",
|
||||||
"true": "true",
|
"true": "true",
|
||||||
"yes": "yes",
|
"yes": "yes",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Stäng",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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: ",
|
"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 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.",
|
"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",
|
"Go back": "Gå tillbaka",
|
||||||
"Keys": "Nycklar",
|
"Keys": "Nycklar",
|
||||||
"Learn how to verify": "Lär dig hur man verifierar",
|
"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 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 private key passphrase (keep secure!)": "Lösenordet till din privata nyckel (förvara säkert!)",
|
||||||
"Your public key": "Din publika nyckel",
|
"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!",
|
"... somewhere on Earth!": "... någonstans på jorden!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Skapad med",
|
"Made with": "Skapad med",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "och",
|
"and": "och",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Community",
|
"Community": "Community",
|
||||||
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
"Follow RoboSats in Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24h kontrakterad volym",
|
"24h contracted volume": "24h kontrakterad volym",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Aktiva robotar idag",
|
"Today active robots": "Aktiva robotar idag",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "Aktivera",
|
"Enable": "Aktivera",
|
||||||
"Enable TG Notifications": "Aktivera TG-notifikationer",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Tillbaka",
|
"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.",
|
"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 Robot": "Generera Robot",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"Your Robot": "Your Robot",
|
||||||
"Your robot": "Din robot",
|
"Your robot": "Din robot",
|
||||||
"#31": "Phrases in components/Dialogs/StoreToken.tsx",
|
"#30": "Phrases in components/Dialogs/StoreToken.tsx",
|
||||||
"Back it up!": "Spara den!",
|
"Back it up!": "Spara den!",
|
||||||
"Done": "Klar",
|
"Done": "Klar",
|
||||||
"Store your robot token": "Spara din robottoken",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "Amri",
|
"Order": "Amri",
|
||||||
"Robot": "Roboti",
|
"Robot": "Roboti",
|
||||||
"Settings": "Mipangilio",
|
"Settings": "Mipangilio",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Mkataba",
|
"Contract": "Mkataba",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Unda alama",
|
"1. Generate a token": "1. Unda alama",
|
||||||
"2. Meet your robot identity": "2. Tana na utambulisho wako wa roboti",
|
"2. Meet your robot identity": "2. Tana na utambulisho wako wa roboti",
|
||||||
"3. Browse or create an order": "3. Tafuta au unda amri",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "au tembelea shule ya roboti kwa nyaraka.",
|
||||||
"roll again": "chezesha tena",
|
"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.",
|
"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",
|
"Paste token here": "Bandika alama hapa",
|
||||||
"Recover": "Rejesha",
|
"Recover": "Rejesha",
|
||||||
"Robot recovery": "Kurejesha roboti",
|
"Robot recovery": "Kurejesha roboti",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Amri hai #{{orderID}}",
|
"Active order #{{orderID}}": "Amri hai #{{orderID}}",
|
||||||
"Add Robot": "Ongeza Roboti",
|
"Add Robot": "Ongeza Roboti",
|
||||||
"Add a new Robot": "Ongeza Roboti mpya",
|
"Add a new Robot": "Ongeza Roboti mpya",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Gorofa ya Roboti",
|
"Robot Garage": "Gorofa ya Roboti",
|
||||||
"Store your token safely": "Hifadhi alama yako kwa usalama",
|
"Store your token safely": "Hifadhi alama yako kwa usalama",
|
||||||
"Welcome back!": "Karibu tena!",
|
"Welcome back!": "Karibu tena!",
|
||||||
"#11": "Phrases in basic/RobotPage/TokenInput.tsx",
|
"#10": "Phrases in basic/RobotPage/TokenInput.tsx",
|
||||||
"Copied!": "Imekopiwa!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Unda roboti mpya na ujifunze kutumia RoboSats",
|
||||||
"Fast Generate Robot": "Unda Roboti Haraka",
|
"Fast Generate Robot": "Unda Roboti Haraka",
|
||||||
"Recover an existing robot using your token": "Rejesha roboti iliyopo kwa kutumia alama yako",
|
"Recover an existing robot using your token": "Rejesha roboti iliyopo kwa kutumia alama yako",
|
||||||
"Recovery": "Kurejesha",
|
"Recovery": "Kurejesha",
|
||||||
"Start": "Anza",
|
"Start": "Anza",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Kuunganisha kwa TOR",
|
"Connecting to TOR": "Kuunganisha kwa TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Unganisho limefichwa na kufanywa kuwa na siri kwa kutumia 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",
|
"Not enough entropy, make it more complex": "Entropi haifai, ifanye kuwa ngumu zaidi",
|
||||||
"The token is too short": "Alama ni fupi sana",
|
"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.",
|
"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",
|
"Connected to TOR network": "Kuunganishwa kwa mtandao wa TOR",
|
||||||
"Connecting to TOR network": "Kuunganisha kwa mtandao wa TOR",
|
"Connecting to TOR network": "Kuunganisha kwa mtandao wa TOR",
|
||||||
"Connection error": "Hitilafu ya mawasiliano",
|
"Connection error": "Hitilafu ya mawasiliano",
|
||||||
"Initializing TOR daemon": "Kuandaa TOR daemon",
|
"Initializing TOR daemon": "Kuandaa TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "Yoyote",
|
"ANY": "Yoyote",
|
||||||
"Buy": "Nunua",
|
"Buy": "Nunua",
|
||||||
"DESTINATION": "MAELEKEZO",
|
"DESTINATION": "MAELEKEZO",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Badilisha Nje",
|
"Swap Out": "Badilisha Nje",
|
||||||
"and use": "na tumia",
|
"and use": "na tumia",
|
||||||
"pay with": "lipa kwa",
|
"pay with": "lipa kwa",
|
||||||
"#16": "Phrases in components/BookTable/index.tsx",
|
"#15": "Phrases in components/BookTable/index.tsx",
|
||||||
"Add filter": "Ongeza kichujio",
|
"Add filter": "Ongeza kichujio",
|
||||||
"Amount": "Kiasi",
|
"Amount": "Kiasi",
|
||||||
"An error occurred.": "Kuna hitilafu iliyotokea.",
|
"An error occurred.": "Kuna hitilafu iliyotokea.",
|
||||||
@ -159,15 +155,15 @@
|
|||||||
"starts with": "inaanza na",
|
"starts with": "inaanza na",
|
||||||
"true": "kweli",
|
"true": "kweli",
|
||||||
"yes": "ndio",
|
"yes": "ndio",
|
||||||
"#17": "Phrases in components/Charts/DepthChart/index.tsx",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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",
|
"Close": "Funga",
|
||||||
"Download high resolution map?": "Download high resolution map?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 ",
|
"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 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.",
|
"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",
|
"Go back": "Rudi nyuma",
|
||||||
"Keys": "Funguo",
|
"Keys": "Funguo",
|
||||||
"Learn how to verify": "Jifunze jinsi ya kuthibitisha",
|
"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 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 private key passphrase (keep secure!)": "Nenosiri la funguo binafsi lako (lihifadhiwe salama!)",
|
||||||
"Your public key": "Funguo lako la umma",
|
"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!",
|
"... somewhere on Earth!": "... mahali popote duniani!",
|
||||||
"Client info": "Client info",
|
"Client info": "Client info",
|
||||||
"Made with": "Imetengenezwa kwa",
|
"Made with": "Imetengenezwa kwa",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"RoboSats client version": "RoboSats client version",
|
||||||
"and": "na",
|
"and": "na",
|
||||||
"#23": "Phrases in components/Dialogs/Community.tsx",
|
"#22": "Phrases in components/Dialogs/Community.tsx",
|
||||||
"Community": "Jumuiya",
|
"Community": "Jumuiya",
|
||||||
"Follow RoboSats in Nostr": "Fuata RoboSats katika Nostr",
|
"Follow RoboSats in Nostr": "Fuata RoboSats katika Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "Tunaiacha Telegram! Vikundi vyetu vya zamani vya TG",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "Kiasi kilichoidhinishwa kwa masaa 24",
|
"24h contracted volume": "Kiasi kilichoidhinishwa kwa masaa 24",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "Robots wenye shughuli leo",
|
"Today active robots": "Robots wenye shughuli leo",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Kivinjari",
|
"Browser": "Kivinjari",
|
||||||
"Enable": "Washa",
|
"Enable": "Washa",
|
||||||
"Enable TG Notifications": "Washa Arifa za TG",
|
"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.",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"#28": "Phrases in components/Dialogs/Learn.tsx",
|
"#27": "Phrases in components/Dialogs/Learn.tsx",
|
||||||
"Back": "Nyuma",
|
"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.",
|
"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 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.",
|
"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",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Roboti yako",
|
"Your Robot": "Roboti yako",
|
||||||
"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!",
|
"Back it up!": "Fanya nakala rudufu!",
|
||||||
"Done": "Imekamilika",
|
"Done": "Imekamilika",
|
||||||
"Store your robot token": "Hifadhi kitambulisho chako cha roboti",
|
"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.",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Pakua RoboSats {{coordinatorVersion}} APK kutoka kwa matoleo ya Github",
|
||||||
"Go away!": "Ondoka!",
|
"Go away!": "Ondoka!",
|
||||||
"On Android RoboSats app ": "Kwenye programu ya Android ya RoboSats ",
|
"On Android RoboSats app ": "Kwenye programu ya Android ya RoboSats ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "Kwenye node yako ya kifalme",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "รายการซื้อขาย",
|
"Order": "รายการซื้อขาย",
|
||||||
"Robot": "โรบอท",
|
"Robot": "โรบอท",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "Contract",
|
"Contract": "Contract",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. Generate a token",
|
"1. Generate a token": "1. Generate a token",
|
||||||
"2. Meet your robot identity": "2. Meet your robot identity",
|
"2. Meet your robot identity": "2. Meet your robot identity",
|
||||||
"3. Browse or create an order": "3. Browse or create an order",
|
"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",
|
"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.",
|
"or visit the robot school for documentation.": "or visit the robot school for documentation.",
|
||||||
"roll again": "roll again",
|
"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.",
|
"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",
|
"Paste token here": "Paste token here",
|
||||||
"Recover": "Recover",
|
"Recover": "Recover",
|
||||||
"Robot recovery": "Robot recovery",
|
"Robot recovery": "Robot recovery",
|
||||||
"#10": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
"#9": "Phrases in basic/RobotPage/RobotProfile.tsx",
|
||||||
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
"Active order #{{orderID}}": "Active order #{{orderID}}",
|
||||||
"Add Robot": "Add Robot",
|
"Add Robot": "Add Robot",
|
||||||
"Add a new Robot": "Add a new Robot",
|
"Add a new Robot": "Add a new Robot",
|
||||||
@ -61,27 +57,27 @@
|
|||||||
"Robot Garage": "Robot Garage",
|
"Robot Garage": "Robot Garage",
|
||||||
"Store your token safely": "รักษา token ของคุณไว้ให้ดี",
|
"Store your token safely": "รักษา token ของคุณไว้ให้ดี",
|
||||||
"Welcome back!": "Welcome back!",
|
"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",
|
"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",
|
"Create a new robot and learn to use RoboSats": "Create a new robot and learn to use RoboSats",
|
||||||
"Fast Generate Robot": "Fast Generate Robot",
|
"Fast Generate Robot": "Fast Generate Robot",
|
||||||
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
"Recover an existing robot using your token": "Recover an existing robot using your token",
|
||||||
"Recovery": "Recovery",
|
"Recovery": "Recovery",
|
||||||
"Start": "Start",
|
"Start": "Start",
|
||||||
"#13": "Phrases in basic/RobotPage/index.tsx",
|
"#12": "Phrases in basic/RobotPage/index.tsx",
|
||||||
"Connecting to TOR": "Connecting to TOR",
|
"Connecting to TOR": "Connecting to TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "Connection encrypted and anonymized using 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",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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.",
|
"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",
|
"Connected to TOR network": "Connected to TOR network",
|
||||||
"Connecting to TOR network": "Connecting to TOR network",
|
"Connecting to TOR network": "Connecting to TOR network",
|
||||||
"Connection error": "Connection error",
|
"Connection error": "Connection error",
|
||||||
"Initializing TOR daemon": "Initializing TOR daemon",
|
"Initializing TOR daemon": "Initializing TOR daemon",
|
||||||
"#15": "Phrases in components/BookTable/BookControl.tsx",
|
"#14": "Phrases in components/BookTable/BookControl.tsx",
|
||||||
"ANY": "ANY",
|
"ANY": "ANY",
|
||||||
"Buy": "ซื้อ",
|
"Buy": "ซื้อ",
|
||||||
"DESTINATION": "DESTINATION",
|
"DESTINATION": "DESTINATION",
|
||||||
@ -95,7 +91,7 @@
|
|||||||
"Swap Out": "Swap Out",
|
"Swap Out": "Swap Out",
|
||||||
"and use": "และใช้",
|
"and use": "และใช้",
|
||||||
"pay with": "pay with",
|
"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",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub)",
|
"(GitHub).": "(GitHub)",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 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.",
|
"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",
|
"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.": "PGP public key ของคู่ค้า ใช้ในการเข้ารหัสกับข้อความซึ่งทำให้มีแต่เขาเท่านั้นที่สามารภถอ่านได้และใช้ตรวจสอบข้อความที่คู่ค้าเข้ารหัสและส่งมาให้คุณ",
|
"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 private key passphrase (keep secure!)": "passphrase ของ private key ของคุณ เก็บรักษาไว้ให้ดี!",
|
||||||
"Your public key": "Public key ของคุณ",
|
"Your public key": "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",
|
"Client info": "Client info",
|
||||||
"Made with": "สร้างด้วย",
|
"Made with": "สร้างด้วย",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"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 Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24h ปริมาณการซื้อขาย 24 ชั่วโมงที่แล้ว",
|
"24h contracted volume": "24h ปริมาณการซื้อขาย 24 ชั่วโมงที่แล้ว",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "จำนวนโรบอทที่ใช้งานในวันนี้",
|
"Today active robots": "จำนวนโรบอทที่ใช้งานในวันนี้",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "Browser",
|
"Browser": "Browser",
|
||||||
"Enable": "เปิดใช้งาน",
|
"Enable": "เปิดใช้งาน",
|
||||||
"Enable TG Notifications": "ใช้การแจ้งเตือน Telegram",
|
"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 จะลดระดับการปกปิดตัวตนของคุณ",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"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.": "คุณกำลังเข้าสู่หน้าการเรียนรู้การใช้งาน RoboSats คุณสามารถศึกษาวิธีการใช้งานแพล้ตฟอร์มและทำความเข้าใจการทำงานของแพล้ตฟอร์มได้ที่นี่",
|
"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 Robot": "สร้างโรบอทใหม่",
|
||||||
"Generate a robot avatar first. Then create your own order.": "Generate a robot avatar first. Then create your own order.",
|
"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",
|
"Coordinators that know your robots": "Coordinators that know your robots",
|
||||||
"Your Robot": "Your Robot",
|
"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": "เก็บรักษา token โรบอทของคุณ",
|
"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.": "คุณอาจต้องใช้โรบอทอีกในอนาคตจึงควรเก็บรักษามันไว้ให้ดี คุณสามารถคัดลอกมันไปเก็บไว้ในแอพพลิเคชั่นอื่นๆได้อย่างง่ายดาย",
|
"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",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Download RoboSats {{coordinatorVersion}} APK from Github releases",
|
||||||
"Go away!": "Go away!",
|
"Go away!": "Go away!",
|
||||||
"On Android RoboSats app ": "On Android RoboSats app ",
|
"On Android RoboSats app ": "On Android RoboSats app ",
|
||||||
@ -325,6 +321,10 @@
|
|||||||
"On your own soverign node": "On your own soverign node",
|
"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.",
|
"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",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "订单",
|
"Order": "订单",
|
||||||
"Robot": "机器人",
|
"Robot": "机器人",
|
||||||
"Settings": "设置",
|
"Settings": "设置",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "合约",
|
"Contract": "合约",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. 生成令牌",
|
"1. Generate a token": "1. 生成令牌",
|
||||||
"2. Meet your robot identity": "2. 跟你的机器人身份打个招呼",
|
"2. Meet your robot identity": "2. 跟你的机器人身份打个招呼",
|
||||||
"3. Browse or create an order": "3. 浏览或创建订单",
|
"3. Browse or create an order": "3. 浏览或创建订单",
|
||||||
@ -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}}": "活跃订单 #{{orderID}}",
|
"Active order #{{orderID}}": "活跃订单 #{{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": "创建一个新的机器人并学习如何使用 RoboSats",
|
"Create a new robot and learn to use RoboSats": "创建一个新的机器人并学习如何使用 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": "正在连线 TOR",
|
"Connecting to TOR": "正在连线 TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "连接已用 TOR 加密和匿名化。",
|
"Connection encrypted and anonymized using TOR.": "连接已用 TOR 加密和匿名化。",
|
||||||
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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": "已连线 TOR 网络",
|
"Connected to TOR network": "已连线 TOR 网络",
|
||||||
"Connecting to TOR network": "正在连线 TOR 网络",
|
"Connecting to TOR network": "正在连线 TOR 网络",
|
||||||
"Connection error": "连线错误",
|
"Connection error": "连线错误",
|
||||||
"Initializing TOR daemon": "正在初始化 TOR 守护进程",
|
"Initializing TOR daemon": "正在初始化 TOR 守护进程",
|
||||||
"#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",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 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.",
|
"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",
|
"Client info": "Client info",
|
||||||
"Made with": "用",
|
"Made with": "用",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"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 Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24小时合约量",
|
"24h contracted volume": "24小时合约量",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "今天活跃的机器人",
|
"Today active robots": "今天活跃的机器人",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "浏览器",
|
"Browser": "浏览器",
|
||||||
"Enable": "开启",
|
"Enable": "开启",
|
||||||
"Enable TG Notifications": "开启 TG 通知",
|
"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 通知,你可能会降低匿名程度。",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"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.": "你即将访问学习 RoboSats 页面。此页面提供教程和说明书,以帮助你学习如何使用 RoboSats 并了解它的功能。",
|
"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 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",
|
"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": "从 Github releases 下载 RoboSats {{coordinatorVersion}} APK",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "从 Github releases 下载 RoboSats {{coordinatorVersion}} APK",
|
||||||
"Go away!": "让开!",
|
"Go away!": "让开!",
|
||||||
"On Android RoboSats app ": "在安卓 RoboSats app 上",
|
"On Android RoboSats app ": "在安卓 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 协调器的版本是 {{coordinatorVersion}},但是你的客户端 app 是 {{clientVersion}}。版本不匹配可能会导致糟糕的用户体验。",
|
"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 客户端",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
@ -20,13 +20,9 @@
|
|||||||
"Order": "訂單",
|
"Order": "訂單",
|
||||||
"Robot": "機器人",
|
"Robot": "機器人",
|
||||||
"Settings": "設置",
|
"Settings": "設置",
|
||||||
"#6": "Phrases in basic/OrderPage/CautionDialog.tsx",
|
"#6": "Phrases in basic/OrderPage/index.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",
|
|
||||||
"Contract": "合約",
|
"Contract": "合約",
|
||||||
"#8": "Phrases in basic/RobotPage/Onboarding.tsx",
|
"#7": "Phrases in basic/RobotPage/Onboarding.tsx",
|
||||||
"1. Generate a token": "1. 生成領牌",
|
"1. Generate a token": "1. 生成領牌",
|
||||||
"2. Meet your robot identity": "2. 跟你的機器人身份打個招呼",
|
"2. Meet your robot identity": "2. 跟你的機器人身份打個招呼",
|
||||||
"3. Browse or create an order": "3. 瀏覽或創建訂單",
|
"3. Browse or create an order": "3. 瀏覽或創建訂單",
|
||||||
@ -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}}": "活躍訂單 #{{orderID}}",
|
"Active order #{{orderID}}": "活躍訂單 #{{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": "創建一個新的機器人並學習如何使用 RoboSats",
|
"Create a new robot and learn to use RoboSats": "創建一個新的機器人並學習如何使用 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": "正在連線 TOR",
|
"Connecting to TOR": "正在連線 TOR",
|
||||||
"Connection encrypted and anonymized using TOR.": "連接已用 TOR 加密和匿名化。",
|
"Connection encrypted and anonymized using TOR.": "連接已用 TOR 加密和匿名化。",
|
||||||
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
"Not enough entropy, make it more complex": "Not enough entropy, make it more complex",
|
||||||
"The token is too short": "The token is too short",
|
"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": "已連線 TOR 網絡",
|
"Connected to TOR network": "已連線 TOR 網絡",
|
||||||
"Connecting to TOR network": "正在連線 TOR 網絡",
|
"Connecting to TOR network": "正在連線 TOR 網絡",
|
||||||
"Connection error": "連線錯誤",
|
"Connection error": "連線錯誤",
|
||||||
"Initializing TOR daemon": "正在初始化 TOR 常駐程式",
|
"Initializing TOR daemon": "正在初始化 TOR 常駐程式",
|
||||||
"#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",
|
"#16": "Phrases in components/Charts/DepthChart/index.tsx",
|
||||||
"#18": "Phrases in components/Charts/MapChart/index.tsx",
|
"#17": "Phrases in components/Charts/MapChart/index.tsx",
|
||||||
"Accept": "Accept",
|
"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.",
|
"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?",
|
"Download high resolution map?": "Download high resolution map?",
|
||||||
"Show tiles": "Show tiles",
|
"Show tiles": "Show tiles",
|
||||||
"#19": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
|
||||||
"#20": "Phrases in components/Dialogs/About.tsx",
|
"#19": "Phrases in components/Dialogs/About.tsx",
|
||||||
"(GitHub).": "(GitHub).",
|
"(GitHub).": "(GitHub).",
|
||||||
"(Telegram)": "(Telegram)",
|
"(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.",
|
". 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 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.",
|
"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.": "你的對等方的 PGP 公鑰。你使用它來加密只有你的對等方才能閱讀的消息,並驗證你的對等方簽署的傳入消息。",
|
"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 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",
|
"Client info": "Client info",
|
||||||
"Made with": "用",
|
"Made with": "用",
|
||||||
"RoboSats client version": "RoboSats client version",
|
"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 Nostr": "Follow RoboSats in Nostr",
|
||||||
"Follow RoboSats in X": "Follow RoboSats in X",
|
"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",
|
"We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups",
|
||||||
"X Official Account": "X Official Account",
|
"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!",
|
"...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!",
|
||||||
"24h contracted volume": "24小時合約量",
|
"24h contracted volume": "24小時合約量",
|
||||||
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
"24h non-KYC bitcoin premium": "24h non-KYC bitcoin premium",
|
||||||
@ -288,35 +284,35 @@
|
|||||||
"Today active robots": "今天活躍的機器人",
|
"Today active robots": "今天活躍的機器人",
|
||||||
"Website": "Website",
|
"Website": "Website",
|
||||||
"X": "X",
|
"X": "X",
|
||||||
"#25": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
"#24": "Phrases in components/Dialogs/EnableTelegram.tsx",
|
||||||
"Browser": "瀏覽器",
|
"Browser": "瀏覽器",
|
||||||
"Enable": "開啟",
|
"Enable": "開啟",
|
||||||
"Enable TG Notifications": "開啟 TG 通知",
|
"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 通知,你可能會降低匿名程度。",
|
"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",
|
"Enabled RoboSats coordinators": "Enabled RoboSats coordinators",
|
||||||
"Exchange Summary": "Exchange Summary",
|
"Exchange Summary": "Exchange Summary",
|
||||||
"Online RoboSats coordinators": "Online RoboSats coordinators",
|
"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",
|
"Choose a location": "Choose a location",
|
||||||
"Save": "Save",
|
"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.": "你即將訪問學習 RoboSats 頁面。此頁面提供教程和說明書,以幫助你學習如何使用 RoboSats 並了解它的功能。",
|
"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 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",
|
"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": "從 Github releases 下載 RoboSats {{coordinatorVersion}} APK",
|
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "從 Github releases 下載 RoboSats {{coordinatorVersion}} APK",
|
||||||
"Go away!": "讓開!",
|
"Go away!": "讓開!",
|
||||||
"On Android RoboSats app ": "在安卓 RoboSats app 上",
|
"On Android RoboSats app ": "在安卓 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 協調器的版本是 {{coordinatorVersion}},但你的客戶端 app 是 {{clientVersion}}。版本不匹配可能會導致糟糕的用戶體驗。",
|
"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 客戶端",
|
"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",
|
"#33": "Phrases in components/FederationTable/index.tsx",
|
||||||
"Coordinators per page:": "Coordinators per page:",
|
"Coordinators per page:": "Coordinators per page:",
|
||||||
"Enabled": "Enabled",
|
"Enabled": "Enabled",
|
||||||
|
Loading…
Reference in New Issue
Block a user