Code Review

This commit is contained in:
KoalaSat 2023-10-15 21:18:40 +02:00 committed by Reckless_Satoshi
parent cb973a7f1f
commit 22b10df91d
24 changed files with 127 additions and 81 deletions

View File

@ -132,7 +132,7 @@ const BookPage = (): JSX.Element => {
</Grid> </Grid>
<Grid item> <Grid item>
<MapChart <MapChart
maxWidth={windowSize.width * 0.8} // EM units maxWidth={chartWidthEm} // EM units
maxHeight={(windowSize.height * 0.825 - 5) / 2} // EM units maxHeight={(windowSize.height * 0.825 - 5) / 2} // EM units
onOrderClicked={onOrderClicked} onOrderClicked={onOrderClicked}
/> />

View File

@ -57,6 +57,8 @@ const OrderPage = (): JSX.Element => {
public_duration: order.public_duration, public_duration: order.public_duration,
escrow_duration: order.escrow_duration, escrow_duration: order.escrow_duration,
bond_size: order.bond_size, bond_size: order.bond_size,
latitude: order.latitude,
longitude: order.longitude,
}; };
apiClient apiClient
.post(baseUrl, '/api/make/', body, { tokenSHA256: robot.tokenSHA256 }) .post(baseUrl, '/api/make/', body, { tokenSHA256: robot.tokenSHA256 })

View File

@ -2,7 +2,7 @@ import React, { useContext, useState } from 'react';
import { CircularProgress, Grid, Paper, Switch, Tooltip } from '@mui/material'; import { CircularProgress, Grid, Paper, Switch, Tooltip } from '@mui/material';
import Map from '../../Map'; import Map from '../../Map';
import { AppContext, UseAppStoreType } from '../../../contexts/AppContext'; import { AppContext, UseAppStoreType } from '../../../contexts/AppContext';
import { WifiTetheringError } from '@mui/icons-material'; import { PhotoSizeSelectActual } from '@mui/icons-material';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
interface MapChartProps { interface MapChartProps {
@ -22,7 +22,7 @@ const MapChart: React.FC<MapChartProps> = ({
}) => { }) => {
const { t } = useTranslation(); const { t } = useTranslation();
const { book } = useContext<UseAppStoreType>(AppContext); const { book } = useContext<UseAppStoreType>(AppContext);
const [lowQuality, setLowQuality] = useState<boolean>(true); const [useTiles, setUseTiles] = useState<boolean>(false);
const height = maxHeight < 20 ? 20 : maxHeight; const height = maxHeight < 20 ? 20 : maxHeight;
const width = maxWidth < 20 ? 20 : maxWidth > 72.8 ? 72.8 : maxWidth; const width = maxWidth < 20 ? 20 : maxWidth > 72.8 ? 72.8 : maxWidth;
@ -54,11 +54,7 @@ const MapChart: React.FC<MapChartProps> = ({
item item
style={{ height: 50, justifyContent: 'center', display: 'flex', paddingTop: 10 }} style={{ height: 50, justifyContent: 'center', display: 'flex', paddingTop: 10 }}
> >
<Tooltip <Tooltip enterTouchDelay={0} placement='top' title={t('Show tiles')}>
enterTouchDelay={0}
placement='top'
title={t('Activate slow mode (use it when the connection is slow)')}
>
<div <div
style={{ style={{
display: 'flex', display: 'flex',
@ -68,15 +64,15 @@ const MapChart: React.FC<MapChartProps> = ({
> >
<Switch <Switch
size='small' size='small'
checked={lowQuality} checked={useTiles}
onChange={() => setLowQuality((value) => !value)} onChange={() => setUseTiles((value) => !value)}
/> />
<WifiTetheringError sx={{ color: 'text.secondary' }} /> <PhotoSizeSelectActual sx={{ color: 'text.secondary' }} />
</div> </div>
</Tooltip> </Tooltip>
</Grid> </Grid>
<div style={{ height: `${height - 3.1}em` }}> <div style={{ height: `${height - 3.1}em` }}>
<Map lowQuality={lowQuality} orders={book.orders} onOrderClicked={onOrderClicked} /> <Map useTiles={useTiles} orders={book.orders} onOrderClicked={onOrderClicked} />
</div> </div>
</> </>
)} )}

View File

@ -1,4 +1,4 @@
import React, { useContext, useEffect, useState } from 'react'; import React, { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import { import {
Button, Button,
@ -12,15 +12,15 @@ import {
} from '@mui/material'; } from '@mui/material';
import { PhotoSizeSelectActual } from '@mui/icons-material'; import { PhotoSizeSelectActual } from '@mui/icons-material';
import Map from '../Map'; import Map from '../Map';
import { LatLng } from 'leaflet'; import { randomNumberBetween } from '@mui/x-data-grid/utils/utils';
interface Props { interface Props {
open: boolean; open: boolean;
orderType: number; orderType: number;
latitude?: number; latitude?: number;
longitude?: number; longitude?: number;
onClose?: (position?: LatLng) => void; onClose?: (position?: [number, number]) => void;
save?: boolean; interactive?: boolean;
zoom?: number; zoom?: number;
} }
@ -30,20 +30,23 @@ const F2fMapDialog = ({
onClose = () => {}, onClose = () => {},
latitude, latitude,
longitude, longitude,
save, interactive,
zoom, zoom,
}: Props): JSX.Element => { }: Props): JSX.Element => {
const { t } = useTranslation(); const { t } = useTranslation();
const [position, setPosition] = useState<LatLng>(); const [position, setPosition] = useState<[number, number]>();
const [useTiles, setUseTiles] = useState<boolean>(false); const [useTiles, setUseTiles] = useState<boolean>(false);
const onSave = () => { const onSave = () => {
onClose(position); if (position && position[0] && position[1]) {
const randomAggregator = randomNumberBetween(Math.random(), -0.005, 0.005);
onClose([position[0] + randomAggregator(), position[1] + randomAggregator()]);
}
}; };
useEffect(() => { useEffect(() => {
if (open && latitude && longitude) { if (open && latitude && longitude) {
setPosition(new LatLng(latitude, longitude)); setPosition([latitude, longitude]);
} else { } else {
setPosition(undefined); setPosition(undefined);
} }
@ -59,13 +62,9 @@ const F2fMapDialog = ({
> >
<DialogTitle> <DialogTitle>
<Grid container justifyContent='space-between' spacing={0} sx={{ maxHeight: '1em' }}> <Grid container justifyContent='space-between' spacing={0} sx={{ maxHeight: '1em' }}>
<Grid item>{t(save ? 'Choose a location' : 'Map')}</Grid> <Grid item>{t(interactive ? 'Choose a location' : 'Map')}</Grid>
<Grid item> <Grid item>
<Tooltip <Tooltip enterTouchDelay={0} placement='top' title={t('Show tiles')}>
enterTouchDelay={0}
placement='top'
title={t('Activate slow mode (use it when the connection is slow)')}
>
<div <div
style={{ style={{
display: 'flex', display: 'flex',
@ -86,6 +85,7 @@ const F2fMapDialog = ({
</DialogTitle> </DialogTitle>
<DialogContent style={{ height: '100vh', width: '80vw' }}> <DialogContent style={{ height: '100vh', width: '80vw' }}>
<Map <Map
interactive={interactive}
orderType={orderType} orderType={orderType}
useTiles={useTiles} useTiles={useTiles}
position={position} position={position}
@ -95,9 +95,17 @@ const F2fMapDialog = ({
/> />
</DialogContent> </DialogContent>
<DialogActions> <DialogActions>
<Button color='primary' variant='contained' onClick={onSave} disabled={!position}> <Tooltip
{save ? t('Save') : t('Close')} enterTouchDelay={0}
</Button> placement='top'
title={t(
'To protect your privacy, your selection will be slightly randomized without losing accuracy',
)}
>
<Button color='primary' variant='contained' onClick={onSave} disabled={!position}>
{interactive ? t('Save') : t('Close')}
</Button>
</Tooltip>
</DialogActions> </DialogActions>
</Dialog> </Dialog>
); );

View File

@ -41,7 +41,6 @@ import { amountToString, computeSats, pn } from '../../utils';
import { SelfImprovement, Lock, HourglassTop, DeleteSweep, Edit, Map } from '@mui/icons-material'; import { SelfImprovement, Lock, HourglassTop, DeleteSweep, Edit, Map } from '@mui/icons-material';
import { LoadingButton } from '@mui/lab'; import { LoadingButton } from '@mui/lab';
import { AppContext, type UseAppStoreType } from '../../contexts/AppContext'; import { AppContext, type UseAppStoreType } from '../../contexts/AppContext';
import { LatLng } from 'leaflet';
import { fiatMethods } from '../PaymentMethods'; import { fiatMethods } from '../PaymentMethods';
interface MakerFormProps { interface MakerFormProps {
@ -463,13 +462,13 @@ const MakerForm = ({
setMaker(defaultMaker); setMaker(defaultMaker);
}; };
const handleAddLocation = (pos: LatLng) => { const handleAddLocation = (pos: [number, number]) => {
if (pos.lat && pos.lng) { if (pos && pos.length === 2) {
setMaker((maker) => { setMaker((maker) => {
return { return {
...maker, ...maker,
latitude: parseFloat(pos.lat.toPrecision(6)), latitude: parseFloat(pos[0].toPrecision(6)),
longitude: parseFloat(pos.lng.toPrecision(6)), longitude: parseFloat(pos[1].toPrecision(6)),
}; };
}); });
if (!maker.paymentMethods.find((method) => method.icon === 'cash')) { if (!maker.paymentMethods.find((method) => method.icon === 'cash')) {
@ -536,12 +535,12 @@ const MakerForm = ({
onClickGenerateRobot={onClickGenerateRobot} onClickGenerateRobot={onClickGenerateRobot}
/> />
<F2fMapDialog <F2fMapDialog
save interactive
latitude={maker.latitude} latitude={maker.latitude}
longitude={maker.longitude} longitude={maker.longitude}
open={openWorldmap} open={openWorldmap}
orderType={fav.type || 0} orderType={fav.type || 0}
onClose={(pos?: LatLng) => { onClose={(pos?: [number, number]) => {
if (pos) handleAddLocation(pos); if (pos) handleAddLocation(pos);
setOpenWorldmap(false); setOpenWorldmap(false);
}} }}
@ -826,21 +825,12 @@ const MakerForm = ({
</Grid> </Grid>
<Grid item> <Grid item>
<Grid container direction='row' justifyItems='center' alignItems='center' spacing={1}> <Tooltip enterTouchDelay={0} title={t('Add F2F location')}>
<Grid item> <Button variant='outlined' onClick={() => setOpenWorldmap(true)}>
<Tooltip enterTouchDelay={0} title={t('Add F2F location')}> {t('Face-to-face')}
<div> <Map style={{ paddingLeft: 5 }} />
<Button </Button>
color='primary' </Tooltip>
variant='contained'
onClick={() => setOpenWorldmap(true)}
>
<Map />
</Button>
</div>
</Tooltip>
</Grid>
</Grid>
</Grid> </Grid>
{!maker.advancedOptions && pricingMethods ? ( {!maker.advancedOptions && pricingMethods ? (

View File

@ -4,19 +4,20 @@ import { MapContainer, GeoJSON, useMapEvents, Circle, TileLayer, Tooltip } from
import { useTheme, LinearProgress } from '@mui/material'; import { useTheme, LinearProgress } from '@mui/material';
import { UseAppStoreType, AppContext } from '../../contexts/AppContext'; import { UseAppStoreType, AppContext } from '../../contexts/AppContext';
import { GeoJsonObject } from 'geojson'; import { GeoJsonObject } from 'geojson';
import { LatLng, LeafletMouseEvent } from 'leaflet'; import { LeafletMouseEvent } from 'leaflet';
import { PublicOrder } from '../../models'; import { PublicOrder } from '../../models';
import OrderTooltip from '../Charts/helpers/OrderTooltip'; import OrderTooltip from '../Charts/helpers/OrderTooltip';
interface Props { interface Props {
orderType?: number; orderType?: number;
useTiles: boolean; useTiles: boolean;
position?: LatLng | undefined; position?: [number, number] | undefined;
setPosition?: (position: LatLng) => void; setPosition?: (position: [number, number]) => void;
orders?: PublicOrder[]; orders?: PublicOrder[];
onOrderClicked?: (id: number) => void; onOrderClicked?: (id: number) => void;
zoom?: number; zoom?: number;
center: [number, number]; center?: [number, number];
interactive?: boolean;
} }
const Map = ({ const Map = ({
@ -27,7 +28,8 @@ const Map = ({
setPosition = () => {}, setPosition = () => {},
useTiles = false, useTiles = false,
onOrderClicked = () => null, onOrderClicked = () => null,
center, center = [0, 0],
interactive = false,
}: Props): JSX.Element => { }: Props): JSX.Element => {
const theme = useTheme(); const theme = useTheme();
const { baseUrl } = useContext<UseAppStoreType>(AppContext); const { baseUrl } = useContext<UseAppStoreType>(AppContext);
@ -44,7 +46,9 @@ const Map = ({
const LocationMarker = () => { const LocationMarker = () => {
useMapEvents({ useMapEvents({
click(event: LeafletMouseEvent) { click(event: LeafletMouseEvent) {
setPosition(event.latlng); if (interactive) {
setPosition([event.latlng.lat, event.latlng.lng]);
}
}, },
}); });

View File

@ -40,7 +40,6 @@ import { type Order, type Info } from '../../models';
import { statusBadgeColor, pn, amountToString, computeSats } from '../../utils'; import { statusBadgeColor, pn, amountToString, computeSats } from '../../utils';
import TakeButton from './TakeButton'; import TakeButton from './TakeButton';
import { F2fMapDialog } from '../Dialogs'; import { F2fMapDialog } from '../Dialogs';
import { LatLng } from 'leaflet';
interface OrderDetailsProps { interface OrderDetailsProps {
order: Order; order: Order;
@ -369,13 +368,9 @@ const OrderDetails = ({
<ListItemIcon> <ListItemIcon>
<Tooltip enterTouchDelay={0} title={t('F2F location')}> <Tooltip enterTouchDelay={0} title={t('F2F location')}>
<div> <div>
<Button <IconButton onClick={() => setOpenWorldmap(true)}>
color='primary'
variant='contained'
onClick={() => setOpenWorldmap(true)}
>
<Map /> <Map />
</Button> </IconButton>
</div> </div>
</Tooltip> </Tooltip>
</ListItemIcon> </ListItemIcon>

View File

@ -156,7 +156,7 @@
"yes": "si", "yes": "si",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activar mode lent (utilitza'l quan la connexió sigui lenta)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Tornar", "Go back": "Tornar",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Tancar", "Close": "Tancar",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Longitud passos Dipòsit/Factura", "Escrow/invoice step length": "Longitud passos Dipòsit/Factura",
"Exact": "Exacte", "Exact": "Exacte",
"Exact Amount": "Quantitat Exacte", "Exact Amount": "Quantitat Exacte",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Mètode(s) de Pagament Fiat", "Fiat Payment Method(s)": "Mètode(s) de Pagament Fiat",
"Fidelity Bond Size": "Grandària de la fiança", "Fidelity Bond Size": "Grandària de la fiança",
"In or Out of Lightning?": "Introduir o Treure de Lightning?", "In or Out of Lightning?": "Introduir o Treure de Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verifica la teva privacitat", "Verify your privacy": "Verifica la teva privacitat",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...esperant", "...waiting": "...esperant",
"Activate slow mode (use it when the connection is slow)": "Activar mode lent (utilitza'l quan la connexió sigui lenta)",
"Peer": "Ell", "Peer": "Ell",
"You": "Tu", "You": "Tu",
"connected": "connectat", "connected": "connectat",

View File

@ -156,7 +156,7 @@
"yes": "ano", "yes": "ano",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Jít zpět", "Go back": "Jít zpět",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Zavřít", "Close": "Zavřít",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Možnosti fiat plateb", "Fiat Payment Method(s)": "Možnosti fiat plateb",
"Fidelity Bond Size": "Velikost kauce", "Fidelity Bond Size": "Velikost kauce",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Ověř svou ochranu soukromí", "Verify your privacy": "Ověř svou ochranu soukromí",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Protistrana", "Peer": "Protistrana",
"You": "Ty", "You": "Ty",
"connected": "připojen", "connected": "připojen",

View File

@ -156,7 +156,7 @@
"yes": "yes", "yes": "yes",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Zurück", "Go back": "Zurück",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Schließen", "Close": "Schließen",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Fiat Zahlungsmethode(n)", "Fiat Payment Method(s)": "Fiat Zahlungsmethode(n)",
"Fidelity Bond Size": "Höhe der Kaution", "Fidelity Bond Size": "Höhe der Kaution",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Überprüfe deine Privatsphäre", "Verify your privacy": "Überprüfe deine Privatsphäre",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Partner", "Peer": "Partner",
"You": "Du", "You": "Du",
"connected": "verbunden", "connected": "verbunden",

View File

@ -156,7 +156,7 @@
"yes": "yes", "yes": "yes",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Go back", "Go back": "Go back",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Close", "Close": "Close",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Fiat Payment Method(s)", "Fiat Payment Method(s)": "Fiat Payment Method(s)",
"Fidelity Bond Size": "Fidelity Bond Size", "Fidelity Bond Size": "Fidelity Bond Size",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verify your privacy", "Verify your privacy": "Verify your privacy",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Peer", "Peer": "Peer",
"You": "You", "You": "You",
"connected": "connected", "connected": "connected",

View File

@ -156,7 +156,7 @@
"yes": "si", "yes": "si",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activar modo lento (Úsalo cuando tu conexión sea inestable)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Volver", "Go back": "Volver",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Cerrar", "Close": "Cerrar",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "Para proteger tu privacidad, tu selección será ligeramente modificada aleatoriamente sin perder precisión.",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exacto", "Exact": "Exacto",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Método(s) de pago en fiat", "Fiat Payment Method(s)": "Método(s) de pago en fiat",
"Fidelity Bond Size": "Tamaño de la fianza", "Fidelity Bond Size": "Tamaño de la fianza",
"In or Out of Lightning?": "¿Hacia o desde Lightning?", "In or Out of Lightning?": "¿Hacia o desde Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verifica tu privacidad", "Verify your privacy": "Verifica tu privacidad",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activar modo lento (Úsalo cuando tu conexión sea inestable)",
"Peer": "Él", "Peer": "Él",
"You": "Tú", "You": "Tú",
"connected": "conectado", "connected": "conectado",

View File

@ -156,7 +156,7 @@
"yes": "bai", "yes": "bai",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Joan atzera", "Go back": "Joan atzera",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Itxi", "Close": "Itxi",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Fiat Ordainketa Modua(k)", "Fiat Payment Method(s)": "Fiat Ordainketa Modua(k)",
"Fidelity Bond Size": "Fidantzaren tamaina", "Fidelity Bond Size": "Fidantzaren tamaina",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Zure pribatasuna egiaztatu", "Verify your privacy": "Zure pribatasuna egiaztatu",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Bera", "Peer": "Bera",
"You": "Zu", "You": "Zu",
"connected": "konektatuta", "connected": "konektatuta",

View File

@ -156,7 +156,7 @@
"yes": "oui", "yes": "oui",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activer le mode lent (à utiliser lorsque la connexion est lente)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Retourner", "Go back": "Retourner",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Fermer", "Close": "Fermer",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Longueur de l'étape de dépôt fiduciaire/facture", "Escrow/invoice step length": "Longueur de l'étape de dépôt fiduciaire/facture",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Montant exact", "Exact Amount": "Montant exact",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Mode(s) de paiement Fiat", "Fiat Payment Method(s)": "Mode(s) de paiement Fiat",
"Fidelity Bond Size": "Taille de la garantie de fidélité", "Fidelity Bond Size": "Taille de la garantie de fidélité",
"In or Out of Lightning?": "Entrer ou sortir du Lightning?", "In or Out of Lightning?": "Entrer ou sortir du Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Vérifier votre confidentialité", "Verify your privacy": "Vérifier votre confidentialité",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...attente", "...waiting": "...attente",
"Activate slow mode (use it when the connection is slow)": "Activer le mode lent (à utiliser lorsque la connexion est lente)",
"Peer": "Correspondant", "Peer": "Correspondant",
"You": "Vous", "You": "Vous",
"connected": "connecté", "connected": "connecté",

View File

@ -156,7 +156,7 @@
"yes": "si", "yes": "si",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Attiva slow mode (da utilizzare quando la connessione è lenta)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Indietro", "Go back": "Indietro",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Chiudi", "Close": "Chiudi",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Deposito/durata dello step della fattura", "Escrow/invoice step length": "Deposito/durata dello step della fattura",
"Exact": "Esatto", "Exact": "Esatto",
"Exact Amount": "Importo esatto", "Exact Amount": "Importo esatto",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Metodo(i) di pagamento fiat", "Fiat Payment Method(s)": "Metodo(i) di pagamento fiat",
"Fidelity Bond Size": "Ammontare della cauzione", "Fidelity Bond Size": "Ammontare della cauzione",
"In or Out of Lightning?": "Dentro o fuori da Lightning?", "In or Out of Lightning?": "Dentro o fuori da Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verifica la tua privacy", "Verify your privacy": "Verifica la tua privacy",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...in attesa", "...waiting": "...in attesa",
"Activate slow mode (use it when the connection is slow)": "Attiva slow mode (da utilizzare quando la connessione è lenta)",
"Peer": "Pari", "Peer": "Pari",
"You": "Tu", "You": "Tu",
"connected": "connesso", "connected": "connesso",

View File

@ -156,7 +156,7 @@
"yes": "はい", "yes": "はい",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "スローモードを有効にする(接続が遅い場合に使用)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "戻る", "Go back": "戻る",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "閉じる", "Close": "閉じる",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "GitHub。 ", "(GitHub).": "GitHub。 ",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "エスクロー/インボイスのステップ期間", "Escrow/invoice step length": "エスクロー/インボイスのステップ期間",
"Exact": "正確", "Exact": "正確",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "支払い方法", "Fiat Payment Method(s)": "支払い方法",
"Fidelity Bond Size": "信用担保金のサイズ", "Fidelity Bond Size": "信用担保金のサイズ",
"In or Out of Lightning?": "ライトニングに入れる?出す?", "In or Out of Lightning?": "ライトニングに入れる?出す?",
@ -502,6 +504,7 @@
"Verify your privacy": "プライバシーを確認する", "Verify your privacy": "プライバシーを確認する",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...待機中", "...waiting": "...待機中",
"Activate slow mode (use it when the connection is slow)": "スローモードを有効にする(接続が遅い場合に使用)",
"Peer": "相手", "Peer": "相手",
"You": "あなた", "You": "あなた",
"connected": "接続されました", "connected": "接続されました",

View File

@ -156,7 +156,7 @@
"yes": "yes", "yes": "yes",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Wróć", "Go back": "Wróć",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Blisko", "Close": "Blisko",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Fiat Metoda/Metody płatności", "Fiat Payment Method(s)": "Fiat Metoda/Metody płatności",
"Fidelity Bond Size": "Rozmiar obligacji wierności", "Fidelity Bond Size": "Rozmiar obligacji wierności",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verify your privacy", "Verify your privacy": "Verify your privacy",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Par", "Peer": "Par",
"You": "Ty", "You": "Ty",
"connected": "połączony", "connected": "połączony",

View File

@ -156,7 +156,7 @@
"yes": "yes", "yes": "yes",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Voltar", "Go back": "Voltar",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Fechar", "Close": "Fechar",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Forma(s) de Pagamento Fiat", "Fiat Payment Method(s)": "Forma(s) de Pagamento Fiat",
"Fidelity Bond Size": "Tamanho do título de fidelidade", "Fidelity Bond Size": "Tamanho do título de fidelidade",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verifique sua privacidade", "Verify your privacy": "Verifique sua privacidade",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Par", "Peer": "Par",
"You": "Você", "You": "Você",
"connected": "conectado", "connected": "conectado",

View File

@ -156,7 +156,7 @@
"yes": "да", "yes": "да",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Вернуться", "Go back": "Вернуться",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Закрыть", "Close": "Закрыть",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "Для защиты Вашей конфиденциальности выбранное местоположение будет слегка изменено случайным образом без потери точности",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Способ(ы) оплаты", "Fiat Payment Method(s)": "Способ(ы) оплаты",
"Fidelity Bond Size": "Размер залога", "Fidelity Bond Size": "Размер залога",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Проверьте свою конфиденциальность", "Verify your privacy": "Проверьте свою конфиденциальность",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Партнёр", "Peer": "Партнёр",
"You": "Вы", "You": "Вы",
"connected": "подключен", "connected": "подключен",

View File

@ -156,7 +156,7 @@
"yes": "yes", "yes": "yes",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Gå tillbaka", "Go back": "Gå tillbaka",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Stäng", "Close": "Stäng",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Betalningmetod(er) med fiat", "Fiat Payment Method(s)": "Betalningmetod(er) med fiat",
"Fidelity Bond Size": "Storlek på fidelity bond", "Fidelity Bond Size": "Storlek på fidelity bond",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Verifiera din integritet", "Verify your privacy": "Verifiera din integritet",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "Peer", "Peer": "Peer",
"You": "Du", "You": "Du",
"connected": "ansluten", "connected": "ansluten",

View File

@ -156,7 +156,7 @@
"yes": "ndio", "yes": "ndio",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Washa hali ya polepole (itumie wakati muunganisho ni polepole)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "Rudi nyuma", "Go back": "Rudi nyuma",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "Funga", "Close": "Funga",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Hatua ya muda wa Amana/bili", "Escrow/invoice step length": "Hatua ya muda wa Amana/bili",
"Exact": "Sahihi", "Exact": "Sahihi",
"Exact Amount": "Kiasi Sahihi", "Exact Amount": "Kiasi Sahihi",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "Njia za Malipo ya Fiat", "Fiat Payment Method(s)": "Njia za Malipo ya Fiat",
"Fidelity Bond Size": "Ukubwa wa Dhamana ya Uaminifu", "Fidelity Bond Size": "Ukubwa wa Dhamana ya Uaminifu",
"In or Out of Lightning?": "Ndani au Nje ya Lightning?", "In or Out of Lightning?": "Ndani au Nje ya Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "Thibitisha faragha yako", "Verify your privacy": "Thibitisha faragha yako",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...inayosubiri", "...waiting": "...inayosubiri",
"Activate slow mode (use it when the connection is slow)": "Washa hali ya polepole (itumie wakati muunganisho ni polepole)",
"Peer": "Mwenza", "Peer": "Mwenza",
"You": "Wewe", "You": "Wewe",
"connected": "imeunganishwa", "connected": "imeunganishwa",

View File

@ -156,7 +156,7 @@
"yes": "ใช่", "yes": "ใช่",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "กลับ", "Go back": "กลับ",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "ปิด", "Close": "ปิด",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub)", "(GitHub).": "(GitHub)",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "Escrow/invoice step length", "Escrow/invoice step length": "Escrow/invoice step length",
"Exact": "Exact", "Exact": "Exact",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "วิธีการชำระเงินเฟียต", "Fiat Payment Method(s)": "วิธีการชำระเงินเฟียต",
"Fidelity Bond Size": "วงเงินหลักประกันความเสียหาย (bond)", "Fidelity Bond Size": "วงเงินหลักประกันความเสียหาย (bond)",
"In or Out of Lightning?": "In or Out of Lightning?", "In or Out of Lightning?": "In or Out of Lightning?",
@ -502,6 +504,7 @@
"Verify your privacy": "ตรวจสอบความเป็นส่วนตัวของคุณ", "Verify your privacy": "ตรวจสอบความเป็นส่วนตัวของคุณ",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...waiting", "...waiting": "...waiting",
"Activate slow mode (use it when the connection is slow)": "Activate slow mode (use it when the connection is slow)",
"Peer": "คู่ค้า", "Peer": "คู่ค้า",
"You": "คุณ", "You": "คุณ",
"connected": "เชื่อมต่อแล้ว", "connected": "เชื่อมต่อแล้ว",

View File

@ -156,7 +156,7 @@
"yes": "是", "yes": "是",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "开启慢速模式(在连接缓慢时使用)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "返回", "Go back": "返回",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "关闭", "Close": "关闭",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "托管/发票步长", "Escrow/invoice step length": "托管/发票步长",
"Exact": "确切", "Exact": "确切",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "法币付款方法", "Fiat Payment Method(s)": "法币付款方法",
"Fidelity Bond Size": "保证金大小", "Fidelity Bond Size": "保证金大小",
"In or Out of Lightning?": "换入还是换出闪电?", "In or Out of Lightning?": "换入还是换出闪电?",
@ -502,6 +504,7 @@
"Verify your privacy": "验证你的隐私", "Verify your privacy": "验证你的隐私",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...正在等待", "...waiting": "...正在等待",
"Activate slow mode (use it when the connection is slow)": "开启慢速模式(在连接缓慢时使用)",
"Peer": "对等方", "Peer": "对等方",
"You": "你", "You": "你",
"connected": "在线", "connected": "在线",

View File

@ -156,7 +156,7 @@
"yes": "是", "yes": "是",
"#16": "Phrases in components/Charts/DepthChart/index.tsx", "#16": "Phrases in components/Charts/DepthChart/index.tsx",
"#17": "Phrases in components/Charts/MapChart/index.tsx", "#17": "Phrases in components/Charts/MapChart/index.tsx",
"Activate slow mode (use it when the connection is slow)": "開啟慢速模式(在連接緩慢時使用)", "Show tiles": "Show tiles",
"#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx", "#18": "Phrases in components/Charts/helpers/OrderTooltip/index.tsx",
"#19": "Phrases in components/Dialogs/AuditPGP.tsx", "#19": "Phrases in components/Dialogs/AuditPGP.tsx",
"Go back": "返回", "Go back": "返回",
@ -207,6 +207,7 @@
"#23": "Phrases in components/Dialogs/F2fMap.tsx", "#23": "Phrases in components/Dialogs/F2fMap.tsx",
"Close": "關閉", "Close": "關閉",
"Save": "Save", "Save": "Save",
"To protect your privacy, your selection will be slightly randomized without losing accuracy": "To protect your privacy, your selection will be slightly randomized without losing accuracy",
"#24": "Phrases in components/Dialogs/Info.tsx", "#24": "Phrases in components/Dialogs/Info.tsx",
"(GitHub).": "(GitHub).", "(GitHub).": "(GitHub).",
"(Telegram)": "(Telegram)", "(Telegram)": "(Telegram)",
@ -327,6 +328,7 @@
"Escrow/invoice step length": "託管/發票步長", "Escrow/invoice step length": "託管/發票步長",
"Exact": "確切", "Exact": "確切",
"Exact Amount": "Exact Amount", "Exact Amount": "Exact Amount",
"Face-to-face": "Face-to-face",
"Fiat Payment Method(s)": "法幣付款方法", "Fiat Payment Method(s)": "法幣付款方法",
"Fidelity Bond Size": "保證金大小", "Fidelity Bond Size": "保證金大小",
"In or Out of Lightning?": "換入還是換出閃電?", "In or Out of Lightning?": "換入還是換出閃電?",
@ -502,6 +504,7 @@
"Verify your privacy": "驗證你的隱私", "Verify your privacy": "驗證你的隱私",
"#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx", "#52": "Phrases in components/TradeBox/EncryptedChat/ChatHeader/index.tsx",
"...waiting": "...正在等待", "...waiting": "...正在等待",
"Activate slow mode (use it when the connection is slow)": "開啟慢速模式(在連接緩慢時使用)",
"Peer": "對等方", "Peer": "對等方",
"You": "你", "You": "你",
"connected": "在線", "connected": "在線",