Compare commits
69 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
24fc39b016 | ||
|
|
2fc3f3c00e | ||
|
|
21e0faeb1e | ||
|
|
4b71a8d5f4 | ||
|
|
4075965252 | ||
|
|
3538312769 | ||
|
|
2924f36970 | ||
|
|
bf16dfa09c | ||
|
|
910e86d6a2 | ||
|
|
537fea103e | ||
|
|
87a6e2709b | ||
|
|
d704e78223 | ||
|
|
8ceabd513c | ||
|
|
4806c69053 | ||
|
|
c9f333003b | ||
|
|
33fa32cb07 | ||
|
|
5d1377af80 | ||
|
|
a75e239fd2 | ||
|
|
a663482dc6 | ||
|
|
e8d6235529 | ||
|
|
d8677d8a6d | ||
|
|
351f66a83e | ||
|
|
79c7c01964 | ||
|
|
f51474b66d | ||
|
|
14f01905d7 | ||
|
|
23eb31e6a2 | ||
|
|
e8d4f00f49 | ||
|
|
978e3f945d | ||
|
|
072f394476 | ||
|
|
5926d7037d | ||
|
|
52b51ee7d0 | ||
|
|
54f831ede4 | ||
|
|
c9ead63ff6 | ||
|
|
9ca74cf8d2 | ||
|
|
2a0d455419 | ||
|
|
9e959ca455 | ||
|
|
d3f6796bb9 | ||
|
|
64d6eeabcb | ||
|
|
859258c25c | ||
|
|
2338255a54 | ||
|
|
843afa93c3 | ||
|
|
5441e63825 | ||
|
|
7bf741027e | ||
|
|
0017e2fcc8 | ||
|
|
5c9c8b4cb7 | ||
|
|
873d0ea2a3 | ||
|
|
db4987f557 | ||
|
|
b0b61f886d | ||
|
|
5d4b25f417 | ||
|
|
c88d7c880b | ||
|
|
a96d13978b | ||
|
|
22b26de78d | ||
|
|
53b57879a3 | ||
|
|
d794cef770 | ||
|
|
19f175ba89 | ||
|
|
aaf105ef51 | ||
|
|
974308f939 | ||
|
|
0ec738a48a | ||
|
|
904f6e22f4 | ||
|
|
66fad96e61 | ||
|
|
9037930e56 | ||
|
|
d62013177d | ||
|
|
fc08ede58a | ||
|
|
995a62985e | ||
|
|
67d5a00a0c | ||
|
|
84364c9df2 | ||
|
|
446eb9f9a4 | ||
|
|
a73e814167 | ||
|
|
7125562c9d |
@@ -21,20 +21,20 @@ describe('Add Liquidity', () => {
|
||||
cy.get('#add-liquidity-input-tokenb .token-symbol-container').should('not.contain.text', 'ETH')
|
||||
})
|
||||
|
||||
it('token not in storage is loaded', () => {
|
||||
it.skip('token not in storage is loaded', () => {
|
||||
cy.visit('/add/0xb290b2f9f8f108d03ff2af3ac5c8de6de31cdf6d/0xF9bA5210F91D0474bd1e1DcDAeC4C58E359AaD85')
|
||||
cy.get('#add-liquidity-input-tokena .token-symbol-container').should('contain.text', 'SKL')
|
||||
cy.get('#add-liquidity-input-tokenb .token-symbol-container').should('contain.text', 'MKR')
|
||||
})
|
||||
|
||||
it('single token can be selected', () => {
|
||||
it.skip('single token can be selected', () => {
|
||||
cy.visit('/add/0xb290b2f9f8f108d03ff2af3ac5c8de6de31cdf6d')
|
||||
cy.get('#add-liquidity-input-tokena .token-symbol-container').should('contain.text', 'SKL')
|
||||
cy.visit('/add/0xF9bA5210F91D0474bd1e1DcDAeC4C58E359AaD85')
|
||||
cy.get('#add-liquidity-input-tokena .token-symbol-container').should('contain.text', 'MKR')
|
||||
})
|
||||
|
||||
it('loads fee tier distribution', () => {
|
||||
it.skip('loads fee tier distribution', () => {
|
||||
cy.fixture('feeTierDistribution.json').then((feeTierDistribution) => {
|
||||
cy.intercept('POST', '/subgraphs/name/uniswap/uniswap-v3', (req: CyHttpMessages.IncomingHttpRequest) => {
|
||||
if (hasQuery(req, 'FeeTierDistributionQuery')) {
|
||||
|
||||
@@ -23,7 +23,7 @@ describe('Remove Liquidity', () => {
|
||||
cy.get('#remove-liquidity-tokenb-symbol').should('contain.text', 'WETH')
|
||||
})
|
||||
|
||||
it('token not in storage is loaded', () => {
|
||||
it.skip('token not in storage is loaded', () => {
|
||||
cy.visit('/remove/v2/0xb290b2f9f8f108d03ff2af3ac5c8de6de31cdf6d/0xF9bA5210F91D0474bd1e1DcDAeC4C58E359AaD85')
|
||||
cy.get('#remove-liquidity-tokena-symbol').should('contain.text', 'SKL')
|
||||
cy.get('#remove-liquidity-tokenb-symbol').should('contain.text', 'MKR')
|
||||
|
||||
@@ -34,7 +34,7 @@ Cypress.Commands.overwrite(
|
||||
cy.intercept('/service-worker.js', options?.serviceWorker ? undefined : { statusCode: 404 }).then(() => {
|
||||
original({
|
||||
...options,
|
||||
url: (url.startsWith('/') && url.length > 2 && !url.startsWith('/#') ? `/#${url}` : url) + '?chain=rinkeby',
|
||||
url: (url.startsWith('/') && url.length > 2 && !url.startsWith('/#') ? `/#${url}` : url) + '?chain=goerli',
|
||||
onBeforeLoad(win) {
|
||||
options?.onBeforeLoad?.(win)
|
||||
win.localStorage.clear()
|
||||
|
||||
@@ -19,10 +19,10 @@ export const TEST_ADDRESS_NEVER_USE_SHORTENED = `${TEST_ADDRESS_NEVER_USE.substr
|
||||
6
|
||||
)}...${TEST_ADDRESS_NEVER_USE.substr(-4, 4)}`
|
||||
|
||||
const provider = new JsonRpcProvider('https://rinkeby.infura.io/v3/4bf032f2d38a4ed6bb975b80d6340847', 4)
|
||||
const provider = new JsonRpcProvider('https://goerli.infura.io/v3/4bf032f2d38a4ed6bb975b80d6340847', 4)
|
||||
const signer = new Wallet(TEST_PRIVATE_KEY, provider)
|
||||
export const injected = new (class extends Eip1193Bridge {
|
||||
chainId = 4
|
||||
chainId = /* GOERLI= */ 5
|
||||
|
||||
async sendAsync(...args: any[]) {
|
||||
console.debug('sendAsync called', ...args)
|
||||
|
||||
@@ -135,7 +135,7 @@
|
||||
"@uniswap/governance": "^1.0.2",
|
||||
"@uniswap/liquidity-staker": "^1.0.2",
|
||||
"@uniswap/merkle-distributor": "1.0.1",
|
||||
"@uniswap/redux-multicall": "^1.1.5",
|
||||
"@uniswap/redux-multicall": "^1.1.6",
|
||||
"@uniswap/router-sdk": "^1.3.0",
|
||||
"@uniswap/sdk-core": "^3.0.1",
|
||||
"@uniswap/smart-order-router": "^2.10.0",
|
||||
@@ -146,7 +146,7 @@
|
||||
"@uniswap/v3-core": "1.0.0",
|
||||
"@uniswap/v3-periphery": "^1.1.1",
|
||||
"@uniswap/v3-sdk": "^3.9.0",
|
||||
"@uniswap/widgets": "^2.9.2",
|
||||
"@uniswap/widgets": "^2.14.1",
|
||||
"@vanilla-extract/css": "^1.7.2",
|
||||
"@vanilla-extract/css-utils": "^0.1.2",
|
||||
"@vanilla-extract/dynamic": "^2.0.2",
|
||||
|
||||
@@ -64,8 +64,6 @@ export enum WALLET_CONNECTION_RESULT {
|
||||
FAILED = 'Failed',
|
||||
}
|
||||
|
||||
export const NATIVE_CHAIN_ID = 'NATIVE'
|
||||
|
||||
export enum SWAP_PRICE_UPDATE_USER_RESPONSE {
|
||||
ACCEPTED = 'Accepted',
|
||||
REJECTED = 'Rejected',
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import { Currency, CurrencyAmount, Percent, Token } from '@uniswap/sdk-core'
|
||||
|
||||
import { NATIVE_CHAIN_ID } from './constants'
|
||||
import { NATIVE_CHAIN_ID } from 'constants/tokens'
|
||||
|
||||
export const getDurationUntilTimestampSeconds = (futureTimestampInSecondsSinceEpoch?: number): number | undefined => {
|
||||
if (!futureTimestampInSecondsSinceEpoch) return undefined
|
||||
|
||||
3
src/assets/svg/swap-arrows.svg
Normal file
3
src/assets/svg/swap-arrows.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.80333 4.8863C7.51044 5.17919 7.51044 5.65406 7.80333 5.94696C8.09622 6.23985 8.5711 6.23985 8.86399 5.94696L7.80333 4.8863ZM12.0837 1.66663L12.614 1.1363C12.3211 0.843403 11.8462 0.843403 11.5533 1.1363L12.0837 1.66663ZM15.3033 5.94696C15.5962 6.23985 16.0711 6.23985 16.364 5.94696C16.6569 5.65406 16.6569 5.17919 16.364 4.8863L15.3033 5.94696ZM11.3337 9.99996C11.3337 10.4142 11.6694 10.75 12.0837 10.75C12.4979 10.75 12.8337 10.4142 12.8337 9.99996H11.3337ZM12.1973 15.1136C12.4902 14.8207 12.4902 14.3459 12.1973 14.053C11.9044 13.7601 11.4296 13.7601 11.1367 14.053L12.1973 15.1136ZM7.91699 18.3333L7.38666 18.8636C7.52731 19.0043 7.71808 19.0833 7.91699 19.0833C8.1159 19.0833 8.30667 19.0043 8.44732 18.8636L7.91699 18.3333ZM4.69732 14.053C4.40443 13.7601 3.92956 13.7601 3.63666 14.053C3.34377 14.3459 3.34377 14.8207 3.63666 15.1136L4.69732 14.053ZM8.66699 10.8333C8.66699 10.4191 8.33121 10.0833 7.91699 10.0833C7.50278 10.0833 7.16699 10.4191 7.16699 10.8333H8.66699ZM8.86399 5.94696L12.614 2.19696L11.5533 1.1363L7.80333 4.8863L8.86399 5.94696ZM11.5533 2.19696L15.3033 5.94696L16.364 4.8863L12.614 1.1363L11.5533 2.19696ZM11.3337 1.66663V9.99996H12.8337V1.66663H11.3337ZM11.1367 14.053L7.38666 17.803L8.44732 18.8636L12.1973 15.1136L11.1367 14.053ZM8.44732 17.803L4.69732 14.053L3.63666 15.1136L7.38666 18.8636L8.44732 17.803ZM8.66699 18.3333L8.66699 10.8333H7.16699L7.16699 18.3333H8.66699Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -1,4 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.24453 18.0887C3.24331 19.0467 3.47372 19.7558 3.93576 20.2158C4.39658 20.6771 5.09574 20.904 6.03326 20.8967H8.11975C8.20693 20.8934 8.29386 20.9079 8.37521 20.9395C8.45656 20.9711 8.53062 21.019 8.5928 21.0802L10.0779 22.5484C10.7527 23.2226 11.4139 23.5578 12.0617 23.5541C12.7096 23.5504 13.3709 23.2152 14.0456 22.5484L15.5124 21.0802C15.5767 21.0182 15.6529 20.97 15.7365 20.9385C15.82 20.9069 15.9091 20.8927 15.9982 20.8967H18.0719C19.0192 20.8979 19.7251 20.6673 20.1896 20.2048C20.6541 19.7423 20.8864 19.0333 20.8864 18.0777V16.0021C20.8816 15.8222 20.9474 15.6476 21.0697 15.5157L22.5365 14.0475C23.2198 13.3758 23.559 12.7145 23.5541 12.0636C23.5492 11.4127 23.21 10.7508 22.5365 10.0779L21.0697 8.6097C20.9471 8.47802 20.8812 8.30329 20.8864 8.12336V6.04769C20.8851 5.09092 20.6547 4.3819 20.1951 3.92064C19.7355 3.45939 19.0278 3.22875 18.0719 3.22875H15.9982C15.9091 3.23242 15.8201 3.21807 15.7366 3.18653C15.6532 3.155 15.5769 3.10694 15.5124 3.04523L14.0456 1.57703C13.3709 0.902883 12.7096 0.567648 12.0617 0.571319C11.4139 0.574989 10.7527 0.910224 10.0779 1.57703L8.5928 3.04523C8.53043 3.10622 8.45638 3.15393 8.37508 3.18547C8.29377 3.21701 8.20689 3.23173 8.11975 3.22875H6.03326C5.08718 3.22998 4.38373 3.45877 3.92291 3.91513C3.4621 4.3715 3.23168 5.08235 3.23168 6.04769V8.12887C3.23683 8.3088 3.17096 8.48352 3.04833 8.6152L1.58154 10.0834C0.908042 10.7551 0.571289 11.417 0.571289 12.0691C0.571289 12.7213 0.912332 13.3844 1.59439 14.0585L3.06118 15.5267C3.18346 15.6586 3.24928 15.8332 3.24453 16.0131V18.0887Z" fill="#4C82FB"/>
|
||||
<path d="M3.24453 18.0887C3.24331 19.0467 3.47372 19.7558 3.93576 20.2158C4.39658 20.6771 5.09574 20.904 6.03326 20.8967H8.11975C8.20693 20.8934 8.29386 20.9079 8.37521 20.9395C8.45656 20.9711 8.53062 21.019 8.5928 21.0802L10.0779 22.5484C10.7527 23.2226 11.4139 23.5578 12.0617 23.5541C12.7096 23.5504 13.3709 23.2152 14.0456 22.5484L15.5124 21.0802C15.5767 21.0182 15.6529 20.97 15.7365 20.9385C15.82 20.9069 15.9091 20.8927 15.9982 20.8967H18.0719C19.0192 20.8979 19.7251 20.6673 20.1896 20.2048C20.6541 19.7423 20.8864 19.0333 20.8864 18.0777V16.0021C20.8816 15.8222 20.9474 15.6476 21.0697 15.5157L22.5365 14.0475C23.2198 13.3758 23.559 12.7145 23.5541 12.0636C23.5492 11.4127 23.21 10.7508 22.5365 10.0779L21.0697 8.6097C20.9471 8.47802 20.8812 8.30329 20.8864 8.12336V6.04769C20.8851 5.09092 20.6547 4.3819 20.1951 3.92064C19.7355 3.45939 19.0278 3.22875 18.0719 3.22875H15.9982C15.9091 3.23242 15.8201 3.21807 15.7366 3.18653C15.6532 3.155 15.5769 3.10694 15.5124 3.04523L14.0456 1.57703C13.3709 0.902883 12.7096 0.567648 12.0617 0.571319C11.4139 0.574989 10.7527 0.910224 10.0779 1.57703L8.5928 3.04523C8.53043 3.10622 8.45638 3.15393 8.37508 3.18547C8.29377 3.21701 8.20689 3.23173 8.11975 3.22875H6.03326C5.08718 3.22998 4.38373 3.45877 3.92291 3.91513C3.4621 4.3715 3.23168 5.08235 3.23168 6.04769V8.12887C3.23683 8.3088 3.17096 8.48352 3.04833 8.6152L1.58154 10.0834C0.908042 10.7551 0.571289 11.417 0.571289 12.0691C0.571289 12.7213 0.912332 13.3844 1.59439 14.0585L3.06118 15.5267C3.18346 15.6586 3.24928 15.8332 3.24453 16.0131V18.0887Z" fill="currentColor"/>
|
||||
<path d="M11.996 15.9909C11.7795 16.3208 11.4599 16.5064 11.0887 16.5064C10.7072 16.5064 10.4083 16.3517 10.1299 15.9909L7.69677 13.0216C7.5215 12.8051 7.42871 12.5783 7.42871 12.3309C7.42871 11.8154 7.82049 11.4133 8.32567 11.4133C8.63497 11.4133 8.8824 11.5267 9.12984 11.8463L11.0475 14.2897L15.1199 7.75329C15.3364 7.40275 15.6147 7.23779 15.924 7.23779C16.4086 7.23779 16.8622 7.57802 16.8622 8.0832C16.8622 8.32033 16.7385 8.56777 16.6045 8.78427L11.996 15.9909Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
@@ -8,6 +8,8 @@ import { useTheme } from 'styled-components/macro'
|
||||
|
||||
import { LineChartProps } from './LineChart'
|
||||
|
||||
type AnimatedInLineChartProps<T> = Omit<LineChartProps<T>, 'height' | 'width' | 'children'>
|
||||
|
||||
const config = {
|
||||
duration: 800,
|
||||
easing: easeCubicInOut,
|
||||
@@ -23,10 +25,7 @@ function AnimatedInLineChart<T>({
|
||||
curve,
|
||||
color,
|
||||
strokeWidth,
|
||||
width,
|
||||
height,
|
||||
children,
|
||||
}: LineChartProps<T>) {
|
||||
}: AnimatedInLineChartProps<T>) {
|
||||
const lineRef = useRef<SVGPathElement>(null)
|
||||
const [lineLength, setLineLength] = useState(0)
|
||||
const [shouldAnimate, setShouldAnimate] = useState(false)
|
||||
@@ -41,49 +40,54 @@ function AnimatedInLineChart<T>({
|
||||
},
|
||||
})
|
||||
|
||||
const effectDependency = lineRef.current
|
||||
// We need to check to see after the "invisble" line has been drawn
|
||||
// what the length is to be able to animate in the line for the first time
|
||||
// This will run on each render to see if there is a new line length
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
useEffect(() => {
|
||||
if (lineRef.current) {
|
||||
setLineLength(lineRef.current.getTotalLength())
|
||||
setShouldAnimate(true)
|
||||
const length = lineRef.current.getTotalLength()
|
||||
if (length !== lineLength) {
|
||||
setLineLength(length)
|
||||
}
|
||||
if (length > 0 && !shouldAnimate && !hasAnimatedIn) {
|
||||
setShouldAnimate(true)
|
||||
}
|
||||
}
|
||||
}, [effectDependency])
|
||||
})
|
||||
const theme = useTheme()
|
||||
const lineColor = color ?? theme.accentAction
|
||||
|
||||
return (
|
||||
<svg width={width} height={height}>
|
||||
<Group top={marginTop}>
|
||||
<LinePath curve={curve} x={getX} y={getY}>
|
||||
{({ path }) => {
|
||||
const d = path(data) || ''
|
||||
return (
|
||||
<>
|
||||
<Group top={marginTop}>
|
||||
<LinePath curve={curve} x={getX} y={getY}>
|
||||
{({ path }) => {
|
||||
const d = path(data) || ''
|
||||
return (
|
||||
<>
|
||||
<animated.path
|
||||
d={d}
|
||||
ref={lineRef}
|
||||
strokeWidth={strokeWidth}
|
||||
strokeOpacity={hasAnimatedIn ? 1 : 0}
|
||||
fill="none"
|
||||
stroke={lineColor}
|
||||
/>
|
||||
{shouldAnimate && lineLength !== 0 && (
|
||||
<animated.path
|
||||
d={d}
|
||||
ref={lineRef}
|
||||
strokeWidth={strokeWidth}
|
||||
strokeOpacity={hasAnimatedIn ? 1 : 0}
|
||||
fill="none"
|
||||
stroke={lineColor}
|
||||
strokeDashoffset={spring.frame.to((v) => v * lineLength)}
|
||||
strokeDasharray={lineLength}
|
||||
/>
|
||||
{shouldAnimate && lineLength !== 0 && (
|
||||
<animated.path
|
||||
d={d}
|
||||
strokeWidth={strokeWidth}
|
||||
fill="none"
|
||||
stroke={lineColor}
|
||||
strokeDashoffset={spring.frame.to((v) => v * lineLength)}
|
||||
strokeDasharray={lineLength}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}}
|
||||
</LinePath>
|
||||
</Group>
|
||||
{children}
|
||||
</svg>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}}
|
||||
</LinePath>
|
||||
</Group>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
import { SparkLineLoadingBubble } from 'components/Tokens/TokenTable/TokenRow'
|
||||
import { curveCardinal, scaleLinear } from 'd3'
|
||||
import { filterPrices } from 'graphql/data/Token'
|
||||
import { TopToken } from 'graphql/data/TopTokens'
|
||||
import { PricePoint } from 'graphql/data/Token'
|
||||
import { SparklineMap, TopToken } from 'graphql/data/TopTokens'
|
||||
import { TimePeriod } from 'graphql/data/util'
|
||||
import React from 'react'
|
||||
import { useTheme } from 'styled-components/macro'
|
||||
import { memo } from 'react'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
|
||||
import { DATA_EMPTY, getPriceBounds } from '../Tokens/TokenDetails/PriceChart'
|
||||
import { getPriceBounds } from '../Tokens/TokenDetails/PriceChart'
|
||||
import LineChart from './LineChart'
|
||||
|
||||
type PricePoint = { value: number; timestamp: number }
|
||||
const LoadingContainer = styled.div`
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
`
|
||||
|
||||
interface SparklineChartProps {
|
||||
width: number
|
||||
@@ -16,15 +22,32 @@ interface SparklineChartProps {
|
||||
tokenData: TopToken
|
||||
pricePercentChange: number | undefined | null
|
||||
timePeriod: TimePeriod
|
||||
sparklineMap: SparklineMap
|
||||
}
|
||||
|
||||
function SparklineChart({ width, height, tokenData, pricePercentChange, timePeriod }: SparklineChartProps) {
|
||||
function _SparklineChart({
|
||||
width,
|
||||
height,
|
||||
tokenData,
|
||||
pricePercentChange,
|
||||
timePeriod,
|
||||
sparklineMap,
|
||||
}: SparklineChartProps) {
|
||||
const theme = useTheme()
|
||||
// for sparkline
|
||||
const pricePoints = filterPrices(tokenData?.market?.priceHistory) ?? []
|
||||
const hasData = pricePoints.length !== 0
|
||||
const startingPrice = hasData ? pricePoints[0] : DATA_EMPTY
|
||||
const endingPrice = hasData ? pricePoints[pricePoints.length - 1] : DATA_EMPTY
|
||||
const pricePoints = tokenData?.address ? sparklineMap[tokenData.address] : null
|
||||
|
||||
// Don't display if there's one or less pricepoints
|
||||
if (!pricePoints || pricePoints.length <= 1) {
|
||||
return (
|
||||
<LoadingContainer>
|
||||
<SparkLineLoadingBubble />
|
||||
</LoadingContainer>
|
||||
)
|
||||
}
|
||||
|
||||
const startingPrice = pricePoints[0]
|
||||
const endingPrice = pricePoints[pricePoints.length - 1]
|
||||
const widthScale = scaleLinear()
|
||||
.domain(
|
||||
// the range of possible input values
|
||||
@@ -52,4 +75,4 @@ function SparklineChart({ width, height, tokenData, pricePercentChange, timePeri
|
||||
)
|
||||
}
|
||||
|
||||
export default React.memo(SparklineChart)
|
||||
export default memo(_SparklineChart)
|
||||
|
||||
@@ -11,7 +11,7 @@ import { RedesignVariant, useRedesignFlag } from 'featureFlags/flags/redesign'
|
||||
import { darken } from 'polished'
|
||||
import { ReactNode, useCallback, useState } from 'react'
|
||||
import { Lock } from 'react-feather'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
import styled, { css, useTheme } from 'styled-components/macro'
|
||||
import { formatCurrencyAmount } from 'utils/formatCurrencyAmount'
|
||||
|
||||
import { ReactComponent as DropDown } from '../../assets/images/dropdown.svg'
|
||||
@@ -50,7 +50,7 @@ const FixedContainer = styled.div<{ redesignFlag: boolean }>`
|
||||
`
|
||||
|
||||
const Container = styled.div<{ hideInput: boolean; disabled: boolean; redesignFlag: boolean }>`
|
||||
min-height: ${({ redesignFlag }) => redesignFlag && '69px'};
|
||||
min-height: ${({ redesignFlag }) => redesignFlag && '44px'};
|
||||
border-radius: ${({ hideInput }) => (hideInput ? '16px' : '20px')};
|
||||
border: 1px solid ${({ theme, redesignFlag }) => (redesignFlag ? 'transparent' : theme.deprecated_bg0)};
|
||||
background-color: ${({ theme, redesignFlag }) => (redesignFlag ? 'transparent' : theme.deprecated_bg1)};
|
||||
@@ -77,7 +77,7 @@ const CurrencySelect = styled(ButtonGray)<{
|
||||
background-color: ${({ selected, theme, redesignFlag }) =>
|
||||
redesignFlag
|
||||
? selected
|
||||
? theme.stateOverlayPressed
|
||||
? theme.backgroundInteractive
|
||||
: theme.accentAction
|
||||
: selected
|
||||
? theme.deprecated_bg2
|
||||
@@ -100,23 +100,47 @@ const CurrencySelect = styled(ButtonGray)<{
|
||||
justify-content: space-between;
|
||||
margin-left: ${({ hideInput }) => (hideInput ? '0' : '12px')};
|
||||
|
||||
&:hover {
|
||||
background-color: ${({ selected, theme, redesignFlag }) =>
|
||||
redesignFlag
|
||||
? theme.stateOverlayHover
|
||||
: selected
|
||||
? darken(0.05, theme.deprecated_primary1)
|
||||
: theme.deprecated_bg3};
|
||||
}
|
||||
${({ redesignFlag, selected }) =>
|
||||
!redesignFlag &&
|
||||
css`
|
||||
&:hover {
|
||||
background-color: ${({ theme }) => (selected ? theme.deprecated_bg3 : darken(0.05, theme.deprecated_primary1))};
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: ${({ selected, theme, redesignFlag }) =>
|
||||
redesignFlag
|
||||
? theme.stateOverlayPressed
|
||||
: selected
|
||||
? darken(0.05, theme.deprecated_primary1)
|
||||
: theme.deprecated_bg3};
|
||||
}
|
||||
&:active {
|
||||
background-color: ${({ theme }) => (selected ? theme.deprecated_bg3 : darken(0.05, theme.deprecated_primary1))};
|
||||
}
|
||||
`}
|
||||
|
||||
${({ redesignFlag, selected }) =>
|
||||
redesignFlag &&
|
||||
css`
|
||||
&:hover,
|
||||
&:active {
|
||||
background-color: ${({ theme }) => (selected ? theme.backgroundInteractive : theme.accentAction)};
|
||||
}
|
||||
|
||||
&:before {
|
||||
background-size: 100%;
|
||||
border-radius: inherit;
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
content: '';
|
||||
}
|
||||
|
||||
&:hover:before {
|
||||
background-color: ${({ theme }) => theme.stateOverlayHover};
|
||||
}
|
||||
|
||||
&:active:before {
|
||||
background-color: ${({ theme }) => theme.stateOverlayPressed};
|
||||
}
|
||||
`}
|
||||
|
||||
visibility: ${({ visible }) => (visible ? 'visible' : 'hidden')};
|
||||
`
|
||||
@@ -135,7 +159,7 @@ const LabelRow = styled.div<{ redesignFlag: boolean }>`
|
||||
color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.textSecondary : theme.deprecated_text1)};
|
||||
font-size: 0.75rem;
|
||||
line-height: 1rem;
|
||||
padding: 0 1rem 1rem;
|
||||
padding: ${({ redesignFlag }) => (redesignFlag ? '0px' : '0 1rem 1rem')};
|
||||
|
||||
span:hover {
|
||||
cursor: pointer;
|
||||
@@ -145,8 +169,8 @@ const LabelRow = styled.div<{ redesignFlag: boolean }>`
|
||||
|
||||
const FiatRow = styled(LabelRow)<{ redesignFlag: boolean }>`
|
||||
justify-content: flex-end;
|
||||
min-height: ${({ redesignFlag }) => redesignFlag && '32px'};
|
||||
padding: ${({ redesignFlag }) => redesignFlag && '8px 0px'};
|
||||
min-height: ${({ redesignFlag }) => redesignFlag && '20px'};
|
||||
padding: ${({ redesignFlag }) => redesignFlag && '8px 0px 0px 0px'};
|
||||
height: ${({ redesignFlag }) => !redesignFlag && '24px'};
|
||||
`
|
||||
|
||||
@@ -170,7 +194,7 @@ const StyledDropDown = styled(DropDown)<{ selected: boolean; redesignFlag: boole
|
||||
|
||||
const StyledTokenName = styled.span<{ active?: boolean; redesignFlag: boolean }>`
|
||||
${({ active }) => (active ? ' margin: 0 0.25rem 0 0.25rem;' : ' margin: 0 0.25rem 0 0.25rem;')}
|
||||
font-size: ${({ active }) => (active ? '18px' : '18px')};
|
||||
font-size: ${({ redesignFlag }) => (redesignFlag ? '20px' : '18px')};
|
||||
font-weight: ${({ redesignFlag }) => (redesignFlag ? '600' : '500')};
|
||||
`
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ const StyledDropDown = styled(DropDown)<{ selected: boolean }>`
|
||||
|
||||
const StyledTokenName = styled.span<{ active?: boolean }>`
|
||||
${({ active }) => (active ? ' margin: 0 0.25rem 0 0.25rem;' : ' margin: 0 0.25rem 0 0.25rem;')}
|
||||
font-size: ${({ active }) => (active ? '18px' : '18px')};
|
||||
font-size: 20px;
|
||||
`
|
||||
|
||||
const StyledBalanceMax = styled.button<{ disabled?: boolean }>`
|
||||
|
||||
@@ -143,7 +143,7 @@ export const MenuDropdown = () => {
|
||||
<BarChartIcon width={24} height={24} />
|
||||
</Icon>
|
||||
<PrimaryMenuRow.Text>
|
||||
<Trans>View token analytics</Trans>
|
||||
<Trans>View more analytics</Trans>
|
||||
</PrimaryMenuRow.Text>
|
||||
</PrimaryMenuRow>
|
||||
</Column>
|
||||
|
||||
@@ -106,7 +106,7 @@ interface SearchBarDropdownProps {
|
||||
|
||||
export const SearchBarDropdown = ({ toggleOpen, tokens, collections, hasInput, isLoading }: SearchBarDropdownProps) => {
|
||||
const [hoveredIndex, setHoveredIndex] = useState<number | undefined>(0)
|
||||
const searchHistory = useSearchHistory((state: { history: (FungibleToken | GenieCollection)[] }) => state.history)
|
||||
const { history: searchHistory, updateItem: updateSearchHistory } = useSearchHistory()
|
||||
const shortenedHistory = useMemo(() => searchHistory.slice(0, 2), [searchHistory])
|
||||
const { pathname } = useLocation()
|
||||
const isNFTPage = pathname.includes('/nfts')
|
||||
@@ -146,9 +146,11 @@ export const SearchBarDropdown = ({ toggleOpen, tokens, collections, hasInput, i
|
||||
refetchOnReconnect: false,
|
||||
}
|
||||
)
|
||||
useEffect(() => {
|
||||
trendingTokenResults?.forEach(updateSearchHistory)
|
||||
}, [trendingTokenResults, updateSearchHistory])
|
||||
|
||||
const trendingTokensLength = phase1Flag === NftVariant.Enabled ? (isTokenPage ? 3 : 2) : 4
|
||||
|
||||
const trendingTokens = useMemo(
|
||||
() =>
|
||||
trendingTokenResults
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import clsx from 'clsx'
|
||||
import { L2NetworkLogo, LogoContainer } from 'components/Tokens/TokenTable/TokenRow'
|
||||
import { VerifiedIcon } from 'components/TokenSafety/TokenSafetyIcon'
|
||||
import { getChainInfo } from 'constants/chainInfo'
|
||||
import { getTokenDetailsURL } from 'graphql/data/util'
|
||||
import uriToHttp from 'lib/utils/uriToHttp'
|
||||
import { Box } from 'nft/components/Box'
|
||||
@@ -10,8 +14,8 @@ import { ethNumberStandardFormatter } from 'nft/utils/currency'
|
||||
import { putCommas } from 'nft/utils/putCommas'
|
||||
import { useCallback, useEffect, useState } from 'react'
|
||||
import { Link, useNavigate } from 'react-router-dom'
|
||||
import { formatDollar } from 'utils/formatNumbers'
|
||||
|
||||
import { VerifiedIcon } from '../../nft/components/icons'
|
||||
import * as styles from './SearchBar.css'
|
||||
|
||||
interface CollectionRowProps {
|
||||
@@ -100,6 +104,15 @@ export const CollectionRow = ({
|
||||
)
|
||||
}
|
||||
|
||||
function useBridgedAddress(token: FungibleToken): [string | undefined, number | undefined, string | undefined] {
|
||||
const { chainId: connectedChainId } = useWeb3React()
|
||||
const bridgedAddress = connectedChainId ? token.extensions?.bridgeInfo?.[connectedChainId]?.tokenAddress : undefined
|
||||
if (bridgedAddress && connectedChainId) {
|
||||
return [bridgedAddress, connectedChainId, getChainInfo(connectedChainId)?.circleLogoUrl]
|
||||
}
|
||||
return [undefined, undefined, undefined]
|
||||
}
|
||||
|
||||
interface TokenRowProps {
|
||||
token: FungibleToken
|
||||
isHovered: boolean
|
||||
@@ -123,7 +136,8 @@ export const TokenRow = ({ token, isHovered, setHoveredIndex, toggleOpen, traceE
|
||||
traceEvent()
|
||||
}, [addToSearchHistory, toggleOpen, token, traceEvent])
|
||||
|
||||
const tokenDetailsPath = getTokenDetailsURL(token.address, undefined, token.chainId)
|
||||
const [bridgedAddress, bridgedChain, L2Icon] = useBridgedAddress(token)
|
||||
const tokenDetailsPath = getTokenDetailsURL(bridgedAddress ?? token.address, undefined, bridgedChain ?? token.chainId)
|
||||
// Close the modal on escape
|
||||
useEffect(() => {
|
||||
const keyDownHandler = (event: KeyboardEvent) => {
|
||||
@@ -150,14 +164,17 @@ export const TokenRow = ({ token, isHovered, setHoveredIndex, toggleOpen, traceE
|
||||
>
|
||||
<Row style={{ width: '65%' }}>
|
||||
{!brokenImage && token.logoURI ? (
|
||||
<Box
|
||||
as="img"
|
||||
src={token.logoURI.includes('ipfs://') ? uriToHttp(token.logoURI)[0] : token.logoURI}
|
||||
alt={token.name}
|
||||
className={clsx(loaded ? styles.suggestionImage : styles.imageHolder)}
|
||||
onError={() => setBrokenImage(true)}
|
||||
onLoad={() => setLoaded(true)}
|
||||
/>
|
||||
<LogoContainer>
|
||||
<Box
|
||||
as="img"
|
||||
src={token.logoURI.includes('ipfs://') ? uriToHttp(token.logoURI)[0] : token.logoURI}
|
||||
alt={token.name}
|
||||
className={clsx(loaded ? styles.suggestionImage : styles.imageHolder)}
|
||||
onError={() => setBrokenImage(true)}
|
||||
onLoad={() => setLoaded(true)}
|
||||
/>
|
||||
<L2NetworkLogo networkUrl={L2Icon} size="16px" />
|
||||
</LogoContainer>
|
||||
) : (
|
||||
<Box className={styles.imageHolder} />
|
||||
)}
|
||||
@@ -173,7 +190,7 @@ export const TokenRow = ({ token, isHovered, setHoveredIndex, toggleOpen, traceE
|
||||
<Column className={styles.suggestionSecondaryContainer}>
|
||||
{token.priceUsd && (
|
||||
<Row gap="4">
|
||||
<Box className={styles.primaryText}>{ethNumberStandardFormatter(token.priceUsd, true)}</Box>
|
||||
<Box className={styles.primaryText}>{formatDollar({ num: token.priceUsd, isPrice: true })}</Box>
|
||||
</Row>
|
||||
)}
|
||||
{token.price24hChange && (
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import Web3Status from 'components/Web3Status'
|
||||
import { NftVariant, useNftFlag } from 'featureFlags/flags/nft'
|
||||
import { useGlobalChainName } from 'graphql/data/util'
|
||||
import { chainIdToBackendName } from 'graphql/data/util'
|
||||
import { Box } from 'nft/components/Box'
|
||||
import { Row } from 'nft/components/Flex'
|
||||
import { UniIcon } from 'nft/components/icons'
|
||||
@@ -37,7 +38,8 @@ const MenuItem = ({ href, id, isActive, children }: MenuItemProps) => {
|
||||
const PageTabs = () => {
|
||||
const { pathname } = useLocation()
|
||||
const nftFlag = useNftFlag()
|
||||
const chainName = useGlobalChainName()
|
||||
const { chainId: connectedChainId } = useWeb3React()
|
||||
const chainName = chainIdToBackendName(connectedChainId)
|
||||
|
||||
const isPoolActive =
|
||||
pathname.startsWith('/pool') ||
|
||||
|
||||
@@ -36,7 +36,7 @@ const StyledInput = styled.input<{ error?: boolean; fontSize?: string; align?: s
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.textSecondary : theme.deprecated_text4)};
|
||||
color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.textTertiary : theme.deprecated_text4)};
|
||||
}
|
||||
`
|
||||
|
||||
|
||||
@@ -212,12 +212,74 @@ exports[`renders currency rows correctly when currencies list is non-empty 1`] =
|
||||
|
||||
exports[`renders loading rows when isLoading is true 1`] = `
|
||||
<DocumentFragment>
|
||||
<div
|
||||
.c0 {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.c0 > div {
|
||||
-webkit-animation: fAQEyV 1.5s infinite;
|
||||
animation: fAQEyV 1.5s infinite;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
background: linear-gradient( to left,#F7F8FA 25%,#EDEEF2 50%,#F7F8FA 75% );
|
||||
background-size: 400%;
|
||||
border-radius: 12px;
|
||||
height: 2.4em;
|
||||
will-change: background-position;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
grid-column-gap: 0.5em;
|
||||
grid-template-columns: repeat(12,1fr);
|
||||
max-width: 960px;
|
||||
padding: 12px 20px;
|
||||
}
|
||||
|
||||
.c1 > div:nth-child(4n + 1) {
|
||||
grid-column: 1 / 8;
|
||||
height: 1em;
|
||||
margin-bottom: 0.25em;
|
||||
}
|
||||
|
||||
.c1 > div:nth-child(4n + 2) {
|
||||
grid-column: 12;
|
||||
height: 1em;
|
||||
margin-top: 0.25em;
|
||||
}
|
||||
|
||||
.c1 > div:nth-child(4n + 3) {
|
||||
grid-column: 1 / 4;
|
||||
height: 0.75em;
|
||||
}
|
||||
|
||||
<div
|
||||
style="position: relative; height: 10px; width: 100%; overflow: auto; will-change: transform; direction: ltr;"
|
||||
>
|
||||
<div
|
||||
style="height: 0px; width: 100%;"
|
||||
/>
|
||||
style="height: 560px; width: 100%;"
|
||||
>
|
||||
<div
|
||||
class="c0 c1"
|
||||
>
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</div>
|
||||
<div
|
||||
class="c0 c1"
|
||||
>
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</div>
|
||||
<div
|
||||
class="c0 c1"
|
||||
>
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
||||
@@ -227,6 +227,14 @@ export const formatAnalyticsEventProperties = (
|
||||
: { search_token_address_input: isAddressSearch }),
|
||||
})
|
||||
|
||||
const LoadingRow = () => (
|
||||
<LoadingRows>
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</LoadingRows>
|
||||
)
|
||||
|
||||
export default function CurrencyList({
|
||||
height,
|
||||
currencies,
|
||||
@@ -272,13 +280,7 @@ export default function CurrencyList({
|
||||
const token = currency?.wrapped
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
<LoadingRows>
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</LoadingRows>
|
||||
)
|
||||
return LoadingRow()
|
||||
} else if (currency) {
|
||||
return (
|
||||
<CurrencyRow
|
||||
@@ -303,7 +305,11 @@ export default function CurrencyList({
|
||||
return currencyKey(currency)
|
||||
}, [])
|
||||
|
||||
return (
|
||||
return isLoading ? (
|
||||
<FixedSizeList height={height} ref={fixedListRef as any} width="100%" itemData={[]} itemCount={10} itemSize={56}>
|
||||
{LoadingRow}
|
||||
</FixedSizeList>
|
||||
) : (
|
||||
<FixedSizeList
|
||||
height={height}
|
||||
ref={fixedListRef as any}
|
||||
|
||||
@@ -107,11 +107,12 @@ export function CurrencySearch({
|
||||
return Object.values(allTokens).filter(getTokenFilter(debouncedQuery))
|
||||
}, [allTokens, debouncedQuery])
|
||||
|
||||
const [balances, balancesIsLoading] = useAllTokenBalances()
|
||||
const [balances, balancesAreLoading] = useAllTokenBalances()
|
||||
const sortedTokens: Token[] = useMemo(
|
||||
() => (!balancesIsLoading ? [...filteredTokens].sort(tokenComparator.bind(null, balances)) : []),
|
||||
[balances, filteredTokens, balancesIsLoading]
|
||||
() => (!balancesAreLoading ? [...filteredTokens].sort(tokenComparator.bind(null, balances)) : []),
|
||||
[balances, filteredTokens, balancesAreLoading]
|
||||
)
|
||||
const isLoading = Boolean(balancesAreLoading && !tokenLoaderTimerElapsed)
|
||||
|
||||
const filteredSortedTokens = useSortTokensByQuery(debouncedQuery, sortedTokens)
|
||||
|
||||
@@ -241,7 +242,7 @@ export function CurrencySearch({
|
||||
)}
|
||||
/>
|
||||
</Column>
|
||||
) : filteredSortedTokens?.length > 0 || filteredInactiveTokens?.length > 0 ? (
|
||||
) : filteredSortedTokens?.length > 0 || filteredInactiveTokens?.length > 0 || isLoading ? (
|
||||
<div style={{ flex: '1' }}>
|
||||
<AutoSizer disableWidth>
|
||||
{({ height }) => (
|
||||
@@ -254,7 +255,7 @@ export function CurrencySearch({
|
||||
selectedCurrency={selectedCurrency}
|
||||
fixedListRef={fixedList}
|
||||
showCurrencyAmount={showCurrencyAmount}
|
||||
isLoading={balancesIsLoading && !tokenLoaderTimerElapsed}
|
||||
isLoading={isLoading}
|
||||
searchQuery={searchQuery}
|
||||
isAddressSearch={isAddressSearch}
|
||||
/>
|
||||
|
||||
@@ -11,6 +11,7 @@ const VerifiedContainer = styled.div`
|
||||
export const VerifiedIcon = styled(Verified)<{ size?: string }>`
|
||||
width: ${({ size }) => size ?? '1em'};
|
||||
height: ${({ size }) => size ?? '1em'};
|
||||
color: ${({ theme }) => theme.accentAction};
|
||||
`
|
||||
|
||||
export default function TokenSafetyIcon({ warning }: { warning: Warning | null }) {
|
||||
|
||||
@@ -2,6 +2,7 @@ import { Trans } from '@lingui/macro'
|
||||
import { darken } from 'polished'
|
||||
import { useState } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
import { ThemedText } from 'theme'
|
||||
import { textFadeIn } from 'theme/animations'
|
||||
|
||||
import Resource from './Resource'
|
||||
@@ -24,8 +25,8 @@ const TokenDescriptionContainer = styled.div`
|
||||
const TruncateDescriptionButton = styled.div`
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
padding-top: 14px;
|
||||
font-size: 0.85em;
|
||||
padding-top: 0.5em;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@@ -52,9 +53,8 @@ export const AboutContainer = styled.div`
|
||||
padding: 24px 0px;
|
||||
${textFadeIn}
|
||||
`
|
||||
export const AboutHeader = styled.span`
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
export const AboutHeader = styled(ThemedText.MediumHeader)`
|
||||
font-size: 28px !important;
|
||||
`
|
||||
|
||||
export const ResourcesContainer = styled.div`
|
||||
@@ -90,13 +90,17 @@ export function AboutSection({ address, description, homepageUrl, twitterName }:
|
||||
{tokenDescription}
|
||||
{shouldTruncate && (
|
||||
<TruncateDescriptionButton onClick={() => setIsDescriptionTruncated(!isDescriptionTruncated)}>
|
||||
{isDescriptionTruncated ? <Trans>Read more</Trans> : <Trans>Hide</Trans>}
|
||||
{isDescriptionTruncated ? <Trans>Show more</Trans> : <Trans>Hide</Trans>}
|
||||
</TruncateDescriptionButton>
|
||||
)}
|
||||
</TokenDescriptionContainer>
|
||||
<br />
|
||||
<ThemedText.SubHeaderSmall>
|
||||
<Trans>Links</Trans>
|
||||
</ThemedText.SubHeaderSmall>
|
||||
<ResourcesContainer>
|
||||
<Resource name={'Etherscan'} link={`https://etherscan.io/address/${address}`} />
|
||||
<Resource name={'Protocol info'} link={`https://info.uniswap.org/#/tokens/${address}`} />
|
||||
<Resource name={'More analytics'} link={`https://info.uniswap.org/#/tokens/${address}`} />
|
||||
{homepageUrl && <Resource name={'Website'} link={homepageUrl} />}
|
||||
{twitterName && <Resource name={'Twitter'} link={`https://twitter.com/${twitterName}`} />}
|
||||
</ResourcesContainer>
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import styled from 'styled-components/macro'
|
||||
import { CopyContractAddress } from 'theme'
|
||||
import { CopyContractAddress, ThemedText } from 'theme'
|
||||
|
||||
export const ContractAddressSection = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-size: 0.9em;
|
||||
gap: 4px;
|
||||
padding: 36px 0px;
|
||||
padding: 4px 0px;
|
||||
`
|
||||
|
||||
const ContractAddress = styled.button`
|
||||
@@ -21,13 +20,14 @@ const ContractAddress = styled.button`
|
||||
border: none;
|
||||
min-height: 38px;
|
||||
padding: 0px;
|
||||
cursor: pointer;
|
||||
`
|
||||
|
||||
export default function AddressSection({ address }: { address: string }) {
|
||||
return (
|
||||
<ContractAddressSection>
|
||||
<Trans>Contract address</Trans>
|
||||
<ThemedText.SubHeaderSmall>
|
||||
<Trans>Contract address</Trans>
|
||||
</ThemedText.SubHeaderSmall>
|
||||
<ContractAddress>
|
||||
<CopyContractAddress address={address} />
|
||||
</ContractAddress>
|
||||
|
||||
@@ -1,83 +1,140 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { useToken } from 'hooks/Tokens'
|
||||
import { useNetworkTokenBalances } from 'hooks/useNetworkTokenBalances'
|
||||
import { AlertTriangle } from 'react-feather'
|
||||
import { Currency, CurrencyAmount, Token } from '@uniswap/sdk-core'
|
||||
import { formatToDecimal } from 'analytics/utils'
|
||||
import CurrencyLogo from 'components/CurrencyLogo'
|
||||
import { validateUrlChainParam } from 'graphql/data/util'
|
||||
import { useStablecoinValue } from 'hooks/useStablecoinPrice'
|
||||
import { useParams } from 'react-router-dom'
|
||||
import styled from 'styled-components/macro'
|
||||
import { StyledInternalLink } from 'theme'
|
||||
import { currencyAmountToPreciseFloat, formatDollar } from 'utils/formatNumbers'
|
||||
|
||||
const BalancesCard = styled.div`
|
||||
width: 100%;
|
||||
height: fit-content;
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
padding: 20px;
|
||||
box-shadow: ${({ theme }) => theme.shallowShadow};
|
||||
background-color: ${({ theme }) => theme.backgroundSurface};
|
||||
border: ${({ theme }) => `1px solid ${theme.backgroundOutline}`};
|
||||
border-radius: 16px;
|
||||
`
|
||||
const ErrorState = styled.div`
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
`
|
||||
const ErrorText = styled.span`
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
`
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
display: none;
|
||||
font-size: 12px;
|
||||
height: fit-content;
|
||||
line-height: 16px;
|
||||
padding: 20px;
|
||||
width: 100%;
|
||||
|
||||
// 768 hardcoded to match NFT-redesign navbar breakpoints
|
||||
// src/nft/css/sprinkles.css.ts
|
||||
// change to match theme breakpoints when this navbar is updated
|
||||
@media screen and (min-width: 768px) {
|
||||
display: flex;
|
||||
}
|
||||
`
|
||||
const TotalBalanceSection = styled.div`
|
||||
height: fit-content;
|
||||
width: 100%;
|
||||
`
|
||||
const TotalBalance = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row;
|
||||
font-size: 20px;
|
||||
justify-content: space-between;
|
||||
line-height: 28px;
|
||||
margin-top: 12px;
|
||||
align-items: center;
|
||||
`
|
||||
const TotalBalanceItem = styled.div`
|
||||
display: flex;
|
||||
`
|
||||
|
||||
export default function BalanceSummary({
|
||||
address,
|
||||
balance,
|
||||
balanceUsd,
|
||||
}: {
|
||||
address: string
|
||||
balance?: number
|
||||
balanceUsd?: number
|
||||
}) {
|
||||
const token = useToken(address)
|
||||
const { loading, error } = useNetworkTokenBalances({ address })
|
||||
const BalanceRowLink = styled(StyledInternalLink)`
|
||||
color: unset;
|
||||
`
|
||||
|
||||
function BalanceRow({ currency, formattedBalance, usdValue, href }: BalanceRowData) {
|
||||
const content = (
|
||||
<TotalBalance key={currency.wrapped.address}>
|
||||
<TotalBalanceItem>
|
||||
<CurrencyLogo currency={currency} />
|
||||
{formattedBalance} {currency?.symbol}
|
||||
</TotalBalanceItem>
|
||||
<TotalBalanceItem>{formatDollar({ num: usdValue === 0 ? undefined : usdValue, isPrice: true })}</TotalBalanceItem>
|
||||
</TotalBalance>
|
||||
)
|
||||
if (href) {
|
||||
return <BalanceRowLink to={href}>{content}</BalanceRowLink>
|
||||
}
|
||||
return content
|
||||
}
|
||||
|
||||
interface BalanceRowData {
|
||||
currency: Currency
|
||||
formattedBalance: number
|
||||
usdValue: number | undefined
|
||||
href?: string
|
||||
}
|
||||
export interface BalanceSummaryProps {
|
||||
tokenAmount: CurrencyAmount<Token> | undefined
|
||||
nativeCurrencyAmount: CurrencyAmount<Currency> | undefined
|
||||
isNative: boolean
|
||||
}
|
||||
|
||||
export default function BalanceSummary({ tokenAmount, nativeCurrencyAmount, isNative }: BalanceSummaryProps) {
|
||||
const balanceUsdValue = useStablecoinValue(tokenAmount)
|
||||
const nativeBalanceUsdValue = useStablecoinValue(nativeCurrencyAmount)
|
||||
|
||||
const { chainName } = useParams<{ chainName?: string }>()
|
||||
const pageChainName = validateUrlChainParam(chainName).toLowerCase()
|
||||
|
||||
const tokenIsWrappedNative =
|
||||
tokenAmount &&
|
||||
nativeCurrencyAmount &&
|
||||
tokenAmount.currency.address.toLowerCase() === nativeCurrencyAmount.currency.wrapped.address.toLowerCase()
|
||||
|
||||
if (
|
||||
(!tokenAmount && !nativeCurrencyAmount) ||
|
||||
(!tokenAmount && !tokenIsWrappedNative && !isNative) ||
|
||||
(!isNative && !tokenIsWrappedNative && tokenAmount?.equalTo(0)) ||
|
||||
(isNative && tokenAmount?.equalTo(0) && nativeCurrencyAmount?.equalTo(0))
|
||||
) {
|
||||
return null
|
||||
}
|
||||
const showNative = tokenIsWrappedNative || isNative
|
||||
|
||||
const currencies = []
|
||||
|
||||
if (tokenAmount) {
|
||||
const tokenData: BalanceRowData = {
|
||||
currency: tokenAmount.currency,
|
||||
formattedBalance: formatToDecimal(tokenAmount, Math.min(tokenAmount.currency.decimals, 2)),
|
||||
usdValue: balanceUsdValue ? currencyAmountToPreciseFloat(balanceUsdValue) : undefined,
|
||||
}
|
||||
if (isNative) {
|
||||
tokenData.href = `/tokens/${pageChainName}/${tokenAmount.currency.address}`
|
||||
}
|
||||
currencies.push(tokenData)
|
||||
}
|
||||
if (showNative && nativeCurrencyAmount) {
|
||||
const nativeData: BalanceRowData = {
|
||||
currency: nativeCurrencyAmount.currency,
|
||||
formattedBalance: formatToDecimal(nativeCurrencyAmount, Math.min(nativeCurrencyAmount.currency.decimals, 2)),
|
||||
usdValue: nativeBalanceUsdValue ? currencyAmountToPreciseFloat(nativeBalanceUsdValue) : undefined,
|
||||
}
|
||||
if (isNative) {
|
||||
currencies.unshift(nativeData)
|
||||
} else {
|
||||
nativeData.href = `/tokens/${pageChainName}/NATIVE`
|
||||
currencies.push(nativeData)
|
||||
}
|
||||
}
|
||||
|
||||
if (loading || (!error && !balance && !balanceUsd)) return null
|
||||
return (
|
||||
<BalancesCard>
|
||||
{error ? (
|
||||
<ErrorState>
|
||||
<AlertTriangle size={24} />
|
||||
<ErrorText>
|
||||
<Trans>There was an error loading your {token?.symbol} balance</Trans>
|
||||
</ErrorText>
|
||||
</ErrorState>
|
||||
) : (
|
||||
<>
|
||||
<TotalBalanceSection>
|
||||
Your balance
|
||||
<TotalBalance>
|
||||
<TotalBalanceItem>{`${balance} ${token?.symbol}`}</TotalBalanceItem>
|
||||
<TotalBalanceItem>{`$${balanceUsd}`}</TotalBalanceItem>
|
||||
</TotalBalance>
|
||||
</TotalBalanceSection>
|
||||
</>
|
||||
)}
|
||||
<TotalBalanceSection>
|
||||
<Trans>Your balance</Trans>
|
||||
{currencies.map((props, i) => (
|
||||
<BalanceRow {...props} key={props.currency.wrapped.address + i} />
|
||||
))}
|
||||
</TotalBalanceSection>
|
||||
</BalancesCard>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -6,15 +6,16 @@ import { VerifiedIcon } from 'components/TokenSafety/TokenSafetyIcon'
|
||||
import { getChainInfo } from 'constants/chainInfo'
|
||||
import { checkWarning } from 'constants/tokenSafety'
|
||||
import { FavoriteTokensVariant, useFavoriteTokensFlag } from 'featureFlags/flags/favoriteTokens'
|
||||
import { SingleTokenData, useTokenPricesCached } from 'graphql/data/Token'
|
||||
import { PriceDurations, PricePoint, SingleTokenData } from 'graphql/data/Token'
|
||||
import { TopToken } from 'graphql/data/TopTokens'
|
||||
import { CHAIN_NAME_TO_CHAIN_ID } from 'graphql/data/util'
|
||||
import useCurrencyLogoURIs, { getTokenLogoURI } from 'lib/hooks/useCurrencyLogoURIs'
|
||||
import { CHAIN_NAME_TO_CHAIN_ID, TimePeriod } from 'graphql/data/util'
|
||||
import { useAtomValue } from 'jotai/utils'
|
||||
import useCurrencyLogoURIs from 'lib/hooks/useCurrencyLogoURIs'
|
||||
import { useMemo } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
import { textFadeIn } from 'theme/animations'
|
||||
import { isAddress } from 'utils'
|
||||
|
||||
import { useIsFavorited, useToggleFavorite } from '../state'
|
||||
import { filterTimeAtom, useIsFavorited, useToggleFavorite } from '../state'
|
||||
import { ClickFavorited, FavoriteIcon, L2NetworkLogo, LogoContainer } from '../TokenTable/TokenRow'
|
||||
import PriceChart from './PriceChart'
|
||||
import ShareButton from './ShareButton'
|
||||
@@ -59,32 +60,52 @@ export function useTokenLogoURI(
|
||||
token: NonNullable<SingleTokenData> | NonNullable<TopToken>,
|
||||
nativeCurrency?: Token | NativeCurrency
|
||||
) {
|
||||
const checksummedAddress = isAddress(token.address)
|
||||
const chainId = CHAIN_NAME_TO_CHAIN_ID[token.chain]
|
||||
return (
|
||||
useCurrencyLogoURIs(nativeCurrency)[0] ??
|
||||
(checksummedAddress && getTokenLogoURI(checksummedAddress, chainId)) ??
|
||||
token.project?.logoUrl
|
||||
)
|
||||
return [
|
||||
...useCurrencyLogoURIs(nativeCurrency),
|
||||
...useCurrencyLogoURIs({ ...token, chainId }),
|
||||
token.project?.logoUrl,
|
||||
][0]
|
||||
}
|
||||
|
||||
export default function ChartSection({
|
||||
token,
|
||||
nativeCurrency,
|
||||
prices,
|
||||
}: {
|
||||
token: NonNullable<SingleTokenData>
|
||||
nativeCurrency?: Token | NativeCurrency
|
||||
prices: PriceDurations
|
||||
}) {
|
||||
const isFavorited = useIsFavorited(token.address)
|
||||
const toggleFavorite = useToggleFavorite(token.address)
|
||||
const chainId = CHAIN_NAME_TO_CHAIN_ID[token.chain]
|
||||
const L2Icon = getChainInfo(chainId).circleLogoUrl
|
||||
const warning = checkWarning(token.address ?? '')
|
||||
|
||||
const { prices } = useTokenPricesCached(token)
|
||||
const timePeriod = useAtomValue(filterTimeAtom)
|
||||
|
||||
const logoSrc = useTokenLogoURI(token, nativeCurrency)
|
||||
|
||||
// Backend doesn't always return latest price point for every duration.
|
||||
// Thus we need to manually determine latest price point available, and
|
||||
// append it to the prices list for every duration.
|
||||
useMemo(() => {
|
||||
let latestPricePoint: PricePoint = { value: 0, timestamp: 0 }
|
||||
let latestPricePointTimePeriod: TimePeriod
|
||||
Object.keys(prices).forEach((key) => {
|
||||
const latestPricePointForTimePeriod = prices[key as unknown as TimePeriod]?.slice(-1)[0]
|
||||
if (latestPricePointForTimePeriod && latestPricePointForTimePeriod.timestamp > latestPricePoint.timestamp) {
|
||||
latestPricePoint = latestPricePointForTimePeriod
|
||||
latestPricePointTimePeriod = key as unknown as TimePeriod
|
||||
}
|
||||
})
|
||||
Object.keys(prices).forEach((key) => {
|
||||
if ((key as unknown as TimePeriod) !== latestPricePointTimePeriod) {
|
||||
prices[key as unknown as TimePeriod]?.push(latestPricePoint)
|
||||
}
|
||||
})
|
||||
}, [prices])
|
||||
|
||||
return (
|
||||
<ChartHeader>
|
||||
<TokenInfoContainer>
|
||||
@@ -95,12 +116,10 @@ export default function ChartSection({
|
||||
</LogoContainer>
|
||||
{nativeCurrency?.name ?? token.name ?? <Trans>Name not found</Trans>}
|
||||
<TokenSymbol>{nativeCurrency?.symbol ?? token.symbol ?? <Trans>Symbol not found</Trans>}</TokenSymbol>
|
||||
{!warning && <VerifiedIcon size="20px" />}
|
||||
{!warning && <VerifiedIcon size="16px" />}
|
||||
</TokenNameCell>
|
||||
<TokenActions>
|
||||
{token.name && token.symbol && token.address && (
|
||||
<ShareButton tokenName={token.name} tokenSymbol={token.symbol} tokenAddress={token.address} />
|
||||
)}
|
||||
{token.name && token.symbol && token.address && <ShareButton token={token} isNative={!!nativeCurrency} />}
|
||||
{useFavoriteTokensFlag() === FavoriteTokensVariant.Enabled && (
|
||||
<ClickFavorited onClick={toggleFavorite}>
|
||||
<FavoriteIcon isFavorited={isFavorited} />
|
||||
@@ -110,7 +129,7 @@ export default function ChartSection({
|
||||
</TokenInfoContainer>
|
||||
<ChartContainer>
|
||||
<ParentSize>
|
||||
{({ width, height }) => prices && <PriceChart prices={prices} width={width} height={height} />}
|
||||
{({ width, height }) => prices && <PriceChart prices={prices[timePeriod]} width={width} height={height} />}
|
||||
</ParentSize>
|
||||
</ChartContainer>
|
||||
</ChartHeader>
|
||||
|
||||
@@ -1,199 +0,0 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { useToken } from 'hooks/Tokens'
|
||||
import { useNetworkTokenBalances } from 'hooks/useNetworkTokenBalances'
|
||||
import { useState } from 'react'
|
||||
import { AlertTriangle } from 'react-feather'
|
||||
import { Link } from 'react-router-dom'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
import { SMALLEST_MOBILE_MEDIA_BREAKPOINT } from '../constants'
|
||||
import { LoadingBubble } from '../loading'
|
||||
|
||||
const PLACEHOLDER_NAV_FOOTER_HEIGHT = '56px'
|
||||
const BalanceFooter = styled.div`
|
||||
height: fit-content;
|
||||
border: 1px solid ${({ theme }) => theme.backgroundOutline};
|
||||
background-color: ${({ theme }) => theme.backgroundSurface};
|
||||
border-radius: 20px 20px 0px 0px;
|
||||
padding: 12px 16px;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
width: 100%;
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: ${PLACEHOLDER_NAV_FOOTER_HEIGHT};
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-content: center;
|
||||
`
|
||||
const BalanceValue = styled.div`
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
`
|
||||
const BalanceTotal = styled.div`
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
`
|
||||
const BalanceInfo = styled.div`
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
flex-direction: column;
|
||||
`
|
||||
const FakeFooterNavBar = styled.div`
|
||||
position: fixed;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
background-color: ${({ theme }) => theme.backgroundBackdrop};
|
||||
height: ${PLACEHOLDER_NAV_FOOTER_HEIGHT};
|
||||
width: 100%;
|
||||
align-items: flex-end;
|
||||
padding: 20px 8px;
|
||||
font-size: 10px;
|
||||
`
|
||||
const FiatValue = styled.span`
|
||||
display: flex;
|
||||
align-self: flex-end;
|
||||
font-size: 12px;
|
||||
line-height: 24px;
|
||||
|
||||
@media only screen and (max-width: ${SMALLEST_MOBILE_MEDIA_BREAKPOINT}) {
|
||||
line-height: 16px;
|
||||
}
|
||||
`
|
||||
const NetworkBalancesSection = styled.div`
|
||||
height: fit-content;
|
||||
border-top: 1px solid ${({ theme }) => theme.backgroundOutline};
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 16px 0px 8px 0px;
|
||||
margin-top: 16px;
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
`
|
||||
const NetworkBalancesLabel = styled.span`
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
`
|
||||
const SwapButton = styled.button`
|
||||
background-color: ${({ theme }) => theme.accentAction};
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border: none;
|
||||
color: ${({ theme }) => theme.accentTextLightPrimary};
|
||||
padding: 12px 16px;
|
||||
width: 120px;
|
||||
height: 44px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
justify-content: center;
|
||||
`
|
||||
const TotalBalancesSection = styled.div`
|
||||
display: flex;
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
`
|
||||
const ViewAll = styled.span`
|
||||
display: flex;
|
||||
color: ${({ theme }) => theme.accentAction};
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
cursor: pointer;
|
||||
`
|
||||
const ErrorState = styled.div`
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding-right: 8px;
|
||||
`
|
||||
const LoadingState = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
`
|
||||
const TopBalanceLoadBubble = styled(LoadingBubble)`
|
||||
height: 12px;
|
||||
width: 172px;
|
||||
`
|
||||
const BottomBalanceLoadBubble = styled(LoadingBubble)`
|
||||
height: 16px;
|
||||
width: 188px;
|
||||
`
|
||||
const ErrorText = styled.span`
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
`
|
||||
|
||||
export default function FooterBalanceSummary({
|
||||
address,
|
||||
networkBalances,
|
||||
balance,
|
||||
balanceUsd,
|
||||
}: {
|
||||
address: string
|
||||
networkBalances: (JSX.Element | null)[] | null
|
||||
balance?: number
|
||||
balanceUsd?: number
|
||||
}) {
|
||||
const tokenSymbol = useToken(address)?.symbol
|
||||
const [showMultipleBalances, setShowMultipleBalances] = useState(false)
|
||||
const multipleBalances = false // for testing purposes
|
||||
const networkNameIfOneBalance = 'Ethereum' // for testing purposes
|
||||
const { loading, error } = useNetworkTokenBalances({ address })
|
||||
return (
|
||||
<BalanceFooter>
|
||||
<TotalBalancesSection>
|
||||
{loading ? (
|
||||
<LoadingState>
|
||||
<TopBalanceLoadBubble></TopBalanceLoadBubble>
|
||||
<BottomBalanceLoadBubble></BottomBalanceLoadBubble>
|
||||
</LoadingState>
|
||||
) : error ? (
|
||||
<ErrorState>
|
||||
<AlertTriangle size={17} />
|
||||
<ErrorText>
|
||||
<Trans>There was an error fetching your balance</Trans>
|
||||
</ErrorText>
|
||||
</ErrorState>
|
||||
) : (
|
||||
!!balance &&
|
||||
!!balanceUsd && (
|
||||
<BalanceInfo>
|
||||
{multipleBalances ? 'Balance on all networks' : `Your balance on ${networkNameIfOneBalance}`}
|
||||
<BalanceTotal>
|
||||
<BalanceValue>
|
||||
{balance} {tokenSymbol}
|
||||
</BalanceValue>
|
||||
<FiatValue>{`$${balanceUsd}`}</FiatValue>
|
||||
</BalanceTotal>
|
||||
{multipleBalances && (
|
||||
<ViewAll onClick={() => setShowMultipleBalances(!showMultipleBalances)}>
|
||||
<Trans>{showMultipleBalances ? 'Hide' : 'View'} all balances</Trans>
|
||||
</ViewAll>
|
||||
)}
|
||||
</BalanceInfo>
|
||||
)
|
||||
)}
|
||||
<Link to={`/swap?outputCurrency=${address}`}>
|
||||
<SwapButton>
|
||||
<Trans>Swap</Trans>
|
||||
</SwapButton>
|
||||
</Link>
|
||||
</TotalBalancesSection>
|
||||
{showMultipleBalances && (
|
||||
<NetworkBalancesSection>
|
||||
<NetworkBalancesLabel>
|
||||
<Trans>Your balances by network</Trans>
|
||||
</NetworkBalancesLabel>
|
||||
{networkBalances}
|
||||
</NetworkBalancesSection>
|
||||
)}
|
||||
<FakeFooterNavBar>**leaving space for updated nav footer**</FakeFooterNavBar>
|
||||
</BalanceFooter>
|
||||
)
|
||||
}
|
||||
40
src/components/Tokens/TokenDetails/InfoTip.tsx
Normal file
40
src/components/Tokens/TokenDetails/InfoTip.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
import Tooltip from 'components/Tooltip'
|
||||
import { ReactNode, useCallback, useState } from 'react'
|
||||
import { Info } from 'react-feather'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
const InfoTipContainer = styled.div`
|
||||
display: flex;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
cursor: help;
|
||||
`
|
||||
|
||||
const InfoTipBody = styled.div`
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
`
|
||||
|
||||
const InfoTipWrapper = styled.div`
|
||||
margin-left: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
`
|
||||
|
||||
export default function InfoTip({ text }: { text: ReactNode; size?: number }) {
|
||||
const [show, setShow] = useState<boolean>(false)
|
||||
|
||||
const open = useCallback(() => setShow(true), [setShow])
|
||||
const close = useCallback(() => setShow(false), [setShow])
|
||||
return (
|
||||
<InfoTipWrapper>
|
||||
<Tooltip text={<InfoTipBody>{text}</InfoTipBody>} show={show} placement="right">
|
||||
<InfoTipContainer onClick={open} onMouseEnter={open} onMouseLeave={close}>
|
||||
<Info size={14} />
|
||||
</InfoTipContainer>
|
||||
</Tooltip>
|
||||
</InfoTipWrapper>
|
||||
)
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Footer, LeftPanel, RightPanel, TokenDetailsLayout } from 'pages/TokenDetails'
|
||||
import { WidgetSkeleton } from 'components/Widget'
|
||||
import { LeftPanel, RightPanel, TokenDetailsLayout } from 'pages/TokenDetails'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
|
||||
import { LoadingBubble } from '../loading'
|
||||
@@ -154,8 +155,9 @@ export function LoadingTokenDetails() {
|
||||
return (
|
||||
<TokenDetailsLayout>
|
||||
<LoadingTokenDetail />
|
||||
<RightPanel />
|
||||
<Footer />
|
||||
<RightPanel>
|
||||
<WidgetSkeleton />
|
||||
</RightPanel>
|
||||
</TokenDetailsLayout>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,131 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { formatToDecimal } from 'analytics/utils'
|
||||
import { useStablecoinValue } from 'hooks/useStablecoinPrice'
|
||||
import styled from 'styled-components/macro'
|
||||
import { StyledInternalLink } from 'theme'
|
||||
import { currencyAmountToPreciseFloat, formatDollar } from 'utils/formatNumbers'
|
||||
|
||||
import { BalanceSummaryProps } from './BalanceSummary'
|
||||
|
||||
const Wrapper = styled.div`
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid ${({ theme }) => theme.backgroundOutline};
|
||||
background-color: ${({ theme }) => theme.backgroundSurface};
|
||||
border-radius: 20px 20px 0px 0px;
|
||||
bottom: 56px;
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
height: fit-content;
|
||||
justify-content: space-between;
|
||||
left: 0;
|
||||
line-height: 20px;
|
||||
padding: 12px 16px;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
|
||||
@media screen and (min-width: ${({ theme }) => theme.breakpoint.md}px) {
|
||||
bottom: 0px;
|
||||
}
|
||||
@media screen and (min-width: ${({ theme }) => theme.breakpoint.lg}px) {
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
const BalanceValue = styled.div`
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
`
|
||||
const BalanceTotal = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
`
|
||||
const BalanceInfo = styled.div`
|
||||
display: flex;
|
||||
flex: 10 1 auto;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
`
|
||||
const FiatValue = styled.span`
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
|
||||
@media screen and (min-width: ${({ theme }) => theme.breakpoint.sm}px) {
|
||||
line-height: 24px;
|
||||
}
|
||||
`
|
||||
const SwapButton = styled(StyledInternalLink)`
|
||||
background-color: ${({ theme }) => theme.accentAction};
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
color: ${({ theme }) => theme.accentTextLightPrimary};
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
padding: 12px 16px;
|
||||
font-size: 1em;
|
||||
font-weight: 600;
|
||||
height: 44px;
|
||||
justify-content: center;
|
||||
margin: auto;
|
||||
max-width: 100vw;
|
||||
`
|
||||
|
||||
export default function MobileBalanceSummaryFooter({
|
||||
tokenAmount,
|
||||
nativeCurrencyAmount,
|
||||
isNative,
|
||||
}: BalanceSummaryProps) {
|
||||
const balanceUsdValue = useStablecoinValue(tokenAmount)
|
||||
const nativeBalanceUsdValue = useStablecoinValue(nativeCurrencyAmount)
|
||||
|
||||
const formattedBalance = tokenAmount
|
||||
? formatToDecimal(tokenAmount, Math.min(tokenAmount.currency.decimals, 2))
|
||||
: undefined
|
||||
|
||||
const balanceUsd = balanceUsdValue ? currencyAmountToPreciseFloat(balanceUsdValue) : undefined
|
||||
|
||||
const formattedNativeBalance = nativeCurrencyAmount
|
||||
? formatToDecimal(nativeCurrencyAmount, Math.min(nativeCurrencyAmount.currency.decimals, 2))
|
||||
: undefined
|
||||
const nativeBalanceUsd = nativeBalanceUsdValue ? currencyAmountToPreciseFloat(nativeBalanceUsdValue) : undefined
|
||||
|
||||
const outputTokenAddress = tokenAmount?.currency.address ?? nativeCurrencyAmount?.wrapped.currency.address
|
||||
|
||||
return (
|
||||
<Wrapper>
|
||||
{Boolean(formattedBalance !== undefined && !isNative && tokenAmount?.greaterThan(0)) && (
|
||||
<BalanceInfo>
|
||||
<Trans>Your {tokenAmount?.currency?.symbol} balance</Trans>
|
||||
<BalanceTotal>
|
||||
<BalanceValue>
|
||||
{formattedBalance} {tokenAmount?.currency?.symbol}
|
||||
</BalanceValue>
|
||||
<FiatValue>{formatDollar({ num: balanceUsd, isPrice: true })}</FiatValue>
|
||||
</BalanceTotal>
|
||||
</BalanceInfo>
|
||||
)}
|
||||
{Boolean(isNative && nativeCurrencyAmount?.greaterThan(0)) && (
|
||||
<BalanceInfo>
|
||||
<Trans>Your {nativeCurrencyAmount?.currency?.symbol} balance</Trans>
|
||||
<BalanceTotal>
|
||||
<BalanceValue>
|
||||
{formattedNativeBalance} {nativeCurrencyAmount?.currency?.symbol}
|
||||
</BalanceValue>
|
||||
<FiatValue>{formatDollar({ num: nativeBalanceUsd, isPrice: true })}</FiatValue>
|
||||
</BalanceTotal>
|
||||
</BalanceInfo>
|
||||
)}
|
||||
<SwapButton to={`/swap?outputCurrency=${outputTokenAddress}`}>
|
||||
<Trans>Swap</Trans>
|
||||
</SwapButton>
|
||||
</Wrapper>
|
||||
)
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
|
||||
const Balance = styled.div`
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
`
|
||||
const BalanceItem = styled.div`
|
||||
display: flex;
|
||||
`
|
||||
const BalanceRow = styled.div`
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
`
|
||||
const Logo = styled.img`
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin-right: 8px;
|
||||
`
|
||||
const Network = styled.span<{ color: string }>`
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
font-weight: 500;
|
||||
color: ${({ color }) => color};
|
||||
`
|
||||
const NetworkBalanceContainer = styled.div`
|
||||
display: flex;
|
||||
padding-top: 16px;
|
||||
align-items: center;
|
||||
`
|
||||
|
||||
export default function NetworkBalance({
|
||||
logoUrl,
|
||||
balance,
|
||||
tokenSymbol,
|
||||
fiatValue,
|
||||
label,
|
||||
networkColor,
|
||||
}: {
|
||||
logoUrl: string
|
||||
balance: string
|
||||
tokenSymbol: string
|
||||
fiatValue: string | number
|
||||
label: string
|
||||
networkColor: string | undefined
|
||||
}) {
|
||||
const theme = useTheme()
|
||||
return (
|
||||
<NetworkBalanceContainer>
|
||||
<Logo src={logoUrl} />
|
||||
<Balance>
|
||||
<BalanceRow>
|
||||
<BalanceItem>
|
||||
{balance} {tokenSymbol}
|
||||
</BalanceItem>
|
||||
<BalanceItem>${fiatValue}</BalanceItem>
|
||||
</BalanceRow>
|
||||
<Network color={networkColor ?? theme.textPrimary}>{label}</Network>
|
||||
</Balance>
|
||||
</NetworkBalanceContainer>
|
||||
)
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { AxisBottom, TickFormatter } from '@visx/axis'
|
||||
import { localPoint } from '@visx/event'
|
||||
import { EventType } from '@visx/event/lib/types'
|
||||
@@ -10,8 +11,8 @@ import { PricePoint } from 'graphql/data/Token'
|
||||
import { TimePeriod } from 'graphql/data/util'
|
||||
import { useActiveLocale } from 'hooks/useActiveLocale'
|
||||
import { useAtom } from 'jotai'
|
||||
import { useCallback, useEffect, useMemo, useState } from 'react'
|
||||
import { ArrowDownRight, ArrowUpRight } from 'react-feather'
|
||||
import { ReactNode, useCallback, useEffect, useMemo, useState } from 'react'
|
||||
import { ArrowDownRight, ArrowUpRight, TrendingUp } from 'react-feather'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
import {
|
||||
dayHourFormatter,
|
||||
@@ -21,6 +22,7 @@ import {
|
||||
monthYearDayFormatter,
|
||||
weekFormatter,
|
||||
} from 'utils/formatChartTimes'
|
||||
import { formatDollar } from 'utils/formatNumbers'
|
||||
|
||||
import { MEDIUM_MEDIA_BREAKPOINT } from '../constants'
|
||||
import { DISPLAYS, ORDERED_TIMES } from '../TokenTable/TimeSelector'
|
||||
@@ -109,6 +111,7 @@ const TimeButton = styled.button<{ active: boolean }>`
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: ${({ theme, active }) => (active ? theme.backgroundInteractive : 'transparent')};
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
@@ -247,17 +250,13 @@ export function PriceChart({ width, height, prices }: PriceChartProps) {
|
||||
setDisplayPrice(endingPrice)
|
||||
}, [setCrosshair, setDisplayPrice, endingPrice])
|
||||
|
||||
// TODO: Display no data available error
|
||||
if (!prices) {
|
||||
return null
|
||||
}
|
||||
|
||||
const [tickFormatter, crosshairDateFormatter, ticks] = tickFormat(timePeriod, locale)
|
||||
const delta = calculateDelta(startingPrice.value, displayPrice.value)
|
||||
const formattedDelta = formatDelta(delta)
|
||||
const arrow = getDeltaArrow(delta)
|
||||
const crosshairEdgeMax = width * 0.85
|
||||
const crosshairAtEdge = !!crosshair && crosshair > crosshairEdgeMax
|
||||
const hasData = prices && prices.length > 0
|
||||
|
||||
/*
|
||||
* Default curve doesn't look good for the HOUR chart.
|
||||
@@ -266,85 +265,95 @@ export function PriceChart({ width, height, prices }: PriceChartProps) {
|
||||
*/
|
||||
const curveTension = timePeriod === TimePeriod.HOUR ? 1 : 0.9
|
||||
|
||||
const getX = useMemo(() => (p: PricePoint) => timeScale(p.timestamp), [timeScale])
|
||||
const getY = useMemo(() => (p: PricePoint) => rdScale(p.value), [rdScale])
|
||||
const curve = useMemo(() => curveCardinal.tension(curveTension), [curveTension])
|
||||
return (
|
||||
<>
|
||||
<ChartHeader>
|
||||
<TokenPrice>${displayPrice.value < 0.000001 ? '<0.000001' : displayPrice.value.toFixed(6)}</TokenPrice>
|
||||
<TokenPrice>{formatDollar({ num: displayPrice.value, isPrice: true })}</TokenPrice>
|
||||
<DeltaContainer>
|
||||
{formattedDelta}
|
||||
<ArrowCell>{arrow}</ArrowCell>
|
||||
</DeltaContainer>
|
||||
</ChartHeader>
|
||||
<AnimatedInLineChart
|
||||
data={prices}
|
||||
getX={(p: PricePoint) => timeScale(p.timestamp)}
|
||||
getY={(p: PricePoint) => rdScale(p.value)}
|
||||
marginTop={margin.top}
|
||||
curve={curveCardinal.tension(curveTension)}
|
||||
strokeWidth={2}
|
||||
width={width}
|
||||
height={graphHeight}
|
||||
>
|
||||
{crosshair !== null ? (
|
||||
<g>
|
||||
<AxisBottom
|
||||
scale={timeScale}
|
||||
stroke={theme.backgroundOutline}
|
||||
tickFormat={tickFormatter}
|
||||
tickStroke={theme.backgroundOutline}
|
||||
tickLength={4}
|
||||
hideTicks={true}
|
||||
tickTransform={'translate(0 -5)'}
|
||||
tickValues={ticks}
|
||||
top={graphHeight - 1}
|
||||
tickLabelProps={() => ({
|
||||
fill: theme.textSecondary,
|
||||
fontSize: 12,
|
||||
textAnchor: 'middle',
|
||||
transform: 'translate(0 -24)',
|
||||
})}
|
||||
/>
|
||||
<text
|
||||
x={crosshair + (crosshairAtEdge ? -4 : 4)}
|
||||
y={margin.crosshair + 10}
|
||||
textAnchor={crosshairAtEdge ? 'end' : 'start'}
|
||||
fontSize={12}
|
||||
fill={theme.textSecondary}
|
||||
>
|
||||
{crosshairDateFormatter(displayPrice.timestamp)}
|
||||
</text>
|
||||
<Line
|
||||
from={{ x: crosshair, y: margin.crosshair }}
|
||||
to={{ x: crosshair, y: graphHeight }}
|
||||
stroke={theme.backgroundOutline}
|
||||
strokeWidth={1}
|
||||
pointerEvents="none"
|
||||
strokeDasharray="4,4"
|
||||
/>
|
||||
<GlyphCircle
|
||||
left={crosshair}
|
||||
top={rdScale(displayPrice.value) + margin.top}
|
||||
size={50}
|
||||
fill={theme.accentActive}
|
||||
stroke={theme.backgroundOutline}
|
||||
strokeWidth={2}
|
||||
/>
|
||||
</g>
|
||||
) : (
|
||||
<AxisBottom scale={timeScale} stroke={theme.backgroundOutline} top={graphHeight - 1} hideTicks />
|
||||
)}
|
||||
<rect
|
||||
x={0}
|
||||
y={0}
|
||||
{!hasData ? (
|
||||
<MissingPriceChart
|
||||
width={width}
|
||||
height={graphHeight}
|
||||
fill={'transparent'}
|
||||
onTouchStart={handleHover}
|
||||
onTouchMove={handleHover}
|
||||
onMouseMove={handleHover}
|
||||
onMouseLeave={resetDisplay}
|
||||
message={prices && prices.length === 0 ? <NoV3DataMessage /> : <MissingDataMessage />}
|
||||
/>
|
||||
</AnimatedInLineChart>
|
||||
) : (
|
||||
<svg width={width} height={graphHeight}>
|
||||
<AnimatedInLineChart
|
||||
data={prices}
|
||||
getX={getX}
|
||||
getY={getY}
|
||||
marginTop={margin.top}
|
||||
curve={curve}
|
||||
strokeWidth={2}
|
||||
/>
|
||||
{crosshair !== null ? (
|
||||
<g>
|
||||
<AxisBottom
|
||||
scale={timeScale}
|
||||
stroke={theme.backgroundOutline}
|
||||
tickFormat={tickFormatter}
|
||||
tickStroke={theme.backgroundOutline}
|
||||
tickLength={4}
|
||||
hideTicks={true}
|
||||
tickTransform={'translate(0 -5)'}
|
||||
tickValues={ticks}
|
||||
top={graphHeight - 1}
|
||||
tickLabelProps={() => ({
|
||||
fill: theme.textSecondary,
|
||||
fontSize: 12,
|
||||
textAnchor: 'middle',
|
||||
transform: 'translate(0 -24)',
|
||||
})}
|
||||
/>
|
||||
<text
|
||||
x={crosshair + (crosshairAtEdge ? -4 : 4)}
|
||||
y={margin.crosshair + 10}
|
||||
textAnchor={crosshairAtEdge ? 'end' : 'start'}
|
||||
fontSize={12}
|
||||
fill={theme.textSecondary}
|
||||
>
|
||||
{crosshairDateFormatter(displayPrice.timestamp)}
|
||||
</text>
|
||||
<Line
|
||||
from={{ x: crosshair, y: margin.crosshair }}
|
||||
to={{ x: crosshair, y: graphHeight }}
|
||||
stroke={theme.backgroundOutline}
|
||||
strokeWidth={1}
|
||||
pointerEvents="none"
|
||||
strokeDasharray="4,4"
|
||||
/>
|
||||
<GlyphCircle
|
||||
left={crosshair}
|
||||
top={rdScale(displayPrice.value) + margin.top}
|
||||
size={50}
|
||||
fill={theme.accentAction}
|
||||
stroke={theme.backgroundOutline}
|
||||
strokeWidth={0.5}
|
||||
/>
|
||||
</g>
|
||||
) : (
|
||||
<AxisBottom scale={timeScale} stroke={theme.backgroundOutline} top={graphHeight - 1} hideTicks />
|
||||
)}
|
||||
<rect
|
||||
x={0}
|
||||
y={0}
|
||||
width={width}
|
||||
height={graphHeight}
|
||||
fill={'transparent'}
|
||||
onTouchStart={handleHover}
|
||||
onTouchMove={handleHover}
|
||||
onMouseMove={handleHover}
|
||||
onMouseLeave={resetDisplay}
|
||||
/>
|
||||
</svg>
|
||||
)}
|
||||
<TimeOptionsWrapper>
|
||||
<TimeOptionsContainer>
|
||||
{ORDERED_TIMES.map((time) => (
|
||||
@@ -364,4 +373,44 @@ export function PriceChart({ width, height, prices }: PriceChartProps) {
|
||||
)
|
||||
}
|
||||
|
||||
const StyledMissingChart = styled.svg`
|
||||
text {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
}
|
||||
`
|
||||
|
||||
const chartBottomPadding = 15
|
||||
|
||||
const NoV3DataMessage = () => (
|
||||
<Trans>This token doesn't have chart data because it hasn't been traded on Uniswap v3</Trans>
|
||||
)
|
||||
const MissingDataMessage = () => <Trans>Missing chart data</Trans>
|
||||
|
||||
function MissingPriceChart({ width, height, message }: { width: number; height: number; message: ReactNode }) {
|
||||
const theme = useTheme()
|
||||
const midPoint = height / 2 + 45
|
||||
return (
|
||||
<StyledMissingChart width={width} height={height}>
|
||||
<path
|
||||
d={`M 0 ${midPoint} Q 104 ${midPoint - 70}, 208 ${midPoint} T 416 ${midPoint}
|
||||
M 416 ${midPoint} Q 520 ${midPoint - 70}, 624 ${midPoint} T 832 ${midPoint}`}
|
||||
stroke={theme.backgroundOutline}
|
||||
fill="transparent"
|
||||
strokeWidth="2"
|
||||
/>
|
||||
<TrendingUp stroke={theme.textTertiary} x={0} size={12} y={height - chartBottomPadding - 10} />
|
||||
<text y={height - chartBottomPadding} x="20" fill={theme.textTertiary}>
|
||||
{message || <Trans>Missing chart data</Trans>}
|
||||
</text>
|
||||
<path
|
||||
d={`M 0 ${height - 1}, ${width} ${height - 1}`}
|
||||
stroke={theme.backgroundOutline}
|
||||
fill="transparent"
|
||||
strokeWidth="1"
|
||||
/>
|
||||
</StyledMissingChart>
|
||||
)
|
||||
}
|
||||
|
||||
export default PriceChart
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { NATIVE_CHAIN_ID } from 'constants/tokens'
|
||||
import { SingleTokenData } from 'graphql/data/Token'
|
||||
import { useOnClickOutside } from 'hooks/useOnClickOutside'
|
||||
import { useRef } from 'react'
|
||||
import { Twitter } from 'react-feather'
|
||||
@@ -62,9 +64,8 @@ const ShareAction = styled.div`
|
||||
`
|
||||
|
||||
interface TokenInfo {
|
||||
tokenName: string
|
||||
tokenSymbol: string
|
||||
tokenAddress: string
|
||||
token: NonNullable<SingleTokenData>
|
||||
isNative: boolean
|
||||
}
|
||||
|
||||
export default function ShareButton(tokenInfo: TokenInfo) {
|
||||
@@ -75,11 +76,12 @@ export default function ShareButton(tokenInfo: TokenInfo) {
|
||||
useOnClickOutside(node, open ? toggleShare : undefined)
|
||||
const positionX = (window.screen.width - TWITTER_WIDTH) / 2
|
||||
const positionY = (window.screen.height - TWITTER_HEIGHT) / 2
|
||||
const tokenAddress = tokenInfo.isNative ? NATIVE_CHAIN_ID : tokenInfo.token.address
|
||||
|
||||
const shareTweet = () => {
|
||||
toggleShare()
|
||||
window.open(
|
||||
`https://twitter.com/intent/tweet?text=Check%20out%20${tokenInfo.tokenName}%20(${tokenInfo.tokenSymbol})%20https://app.uniswap.org/%23/tokens/${tokenInfo.tokenAddress}%20via%20@uniswap`,
|
||||
`https://twitter.com/intent/tweet?text=Check%20out%20${tokenInfo.token.name}%20(${tokenInfo.token.symbol})%20https://app.uniswap.org/%23/tokens/${tokenInfo.token.chain}/${tokenAddress}%20via%20@uniswap`,
|
||||
'newwindow',
|
||||
`left=${positionX}, top=${positionY}, width=${TWITTER_WIDTH}, height=${TWITTER_HEIGHT}`
|
||||
)
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { ReactNode } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
import { ThemedText } from 'theme'
|
||||
import { textFadeIn } from 'theme/animations'
|
||||
import { formatDollarAmount } from 'utils/formatDollarAmt'
|
||||
import { formatDollar } from 'utils/formatNumbers'
|
||||
|
||||
import { TokenSortMethod } from '../state'
|
||||
import { HEADER_DESCRIPTIONS } from '../TokenTable/TokenRow'
|
||||
import InfoTip from './InfoTip'
|
||||
|
||||
export const StatWrapper = styled.div`
|
||||
display: flex;
|
||||
@@ -17,13 +22,21 @@ export const StatWrapper = styled.div`
|
||||
export const TokenStatsSection = styled.div`
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
${textFadeIn}
|
||||
`
|
||||
export const StatPair = styled.div`
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-wrap: wrap;
|
||||
`
|
||||
|
||||
const Header = styled(ThemedText.MediumHeader)`
|
||||
font-size: 28px !important;
|
||||
`
|
||||
const StatTitle = styled.div`
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 4px;
|
||||
`
|
||||
const StatPrice = styled.span`
|
||||
font-size: 28px;
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
@@ -31,14 +44,32 @@ const StatPrice = styled.span`
|
||||
const NoData = styled.div`
|
||||
color: ${({ theme }) => theme.textTertiary};
|
||||
`
|
||||
const Wrapper = styled.div`
|
||||
gap: 16px;
|
||||
${textFadeIn}
|
||||
`
|
||||
|
||||
type NumericStat = number | undefined | null
|
||||
|
||||
function Stat({ value, title }: { value: NumericStat; title: ReactNode }) {
|
||||
function Stat({
|
||||
value,
|
||||
title,
|
||||
description,
|
||||
isPrice = false,
|
||||
}: {
|
||||
value: NumericStat
|
||||
title: ReactNode
|
||||
description?: ReactNode
|
||||
isPrice?: boolean
|
||||
}) {
|
||||
return (
|
||||
<StatWrapper>
|
||||
{title}
|
||||
<StatPrice>{value ? formatDollarAmount(value) : '-'}</StatPrice>
|
||||
<StatTitle>
|
||||
{title}
|
||||
{description && <InfoTip text={description}></InfoTip>}
|
||||
</StatTitle>
|
||||
|
||||
<StatPrice>{formatDollar({ num: value, isPrice })}</StatPrice>
|
||||
</StatWrapper>
|
||||
)
|
||||
}
|
||||
@@ -53,16 +84,33 @@ export default function StatsSection(props: StatsSectionProps) {
|
||||
const { priceLow52W, priceHigh52W, TVL, volume24H } = props
|
||||
if (TVL || volume24H || priceLow52W || priceHigh52W) {
|
||||
return (
|
||||
<TokenStatsSection>
|
||||
<StatPair>
|
||||
<Stat value={TVL} title={<Trans>Total Value Locked</Trans>} />
|
||||
<Stat value={volume24H} title={<Trans>24H volume</Trans>} />
|
||||
</StatPair>
|
||||
<StatPair>
|
||||
<Stat value={priceLow52W} title={<Trans>52W low</Trans>} />
|
||||
<Stat value={priceHigh52W} title={<Trans>52W high</Trans>} />
|
||||
</StatPair>
|
||||
</TokenStatsSection>
|
||||
<Wrapper>
|
||||
<Header>
|
||||
<Trans>Stats</Trans>
|
||||
</Header>
|
||||
<TokenStatsSection>
|
||||
<StatPair>
|
||||
<Stat
|
||||
value={TVL}
|
||||
description={HEADER_DESCRIPTIONS[TokenSortMethod.TOTAL_VALUE_LOCKED]}
|
||||
title={<Trans>TVL</Trans>}
|
||||
/>
|
||||
<Stat
|
||||
value={volume24H}
|
||||
description={
|
||||
<Trans>
|
||||
24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours.
|
||||
</Trans>
|
||||
}
|
||||
title={<Trans>24H volume</Trans>}
|
||||
/>
|
||||
</StatPair>
|
||||
<StatPair>
|
||||
<Stat value={priceLow52W} title={<Trans>52W low</Trans>} isPrice={true} />
|
||||
<Stat value={priceHigh52W} title={<Trans>52W high</Trans>} isPrice={true} />
|
||||
</StatPair>
|
||||
</TokenStatsSection>
|
||||
</Wrapper>
|
||||
)
|
||||
} else {
|
||||
return <NoData>No stats available</NoData>
|
||||
|
||||
@@ -6,16 +6,17 @@ import SparklineChart from 'components/Charts/SparklineChart'
|
||||
import CurrencyLogo from 'components/CurrencyLogo'
|
||||
import { getChainInfo } from 'constants/chainInfo'
|
||||
import { FavoriteTokensVariant, useFavoriteTokensFlag } from 'featureFlags/flags/favoriteTokens'
|
||||
import { TokenSortMethod, TopToken } from 'graphql/data/TopTokens'
|
||||
import { SparklineMap, TopToken } from 'graphql/data/TopTokens'
|
||||
import { CHAIN_NAME_TO_CHAIN_ID, getTokenDetailsURL } from 'graphql/data/util'
|
||||
import { useAtomValue } from 'jotai/utils'
|
||||
import { ForwardedRef, forwardRef } from 'react'
|
||||
import { CSSProperties, ReactNode } from 'react'
|
||||
import { ArrowDown, ArrowUp, Heart } from 'react-feather'
|
||||
import { Link, useParams } from 'react-router-dom'
|
||||
import { Text } from 'rebass'
|
||||
import styled, { css, useTheme } from 'styled-components/macro'
|
||||
import { ClickableStyle } from 'theme'
|
||||
import { formatDollarAmount } from 'utils/formatDollarAmt'
|
||||
import { formatDollar } from 'utils/formatNumbers'
|
||||
|
||||
import {
|
||||
LARGE_MEDIA_BREAKPOINT,
|
||||
@@ -29,11 +30,13 @@ import {
|
||||
filterTimeAtom,
|
||||
sortAscendingAtom,
|
||||
sortMethodAtom,
|
||||
TokenSortMethod,
|
||||
useIsFavorited,
|
||||
useSetSortMethod,
|
||||
useToggleFavorite,
|
||||
} from '../state'
|
||||
import { useTokenLogoURI } from '../TokenDetails/ChartSection'
|
||||
import InfoTip from '../TokenDetails/InfoTip'
|
||||
import { formatDelta, getDeltaArrow } from '../TokenDetails/PriceChart'
|
||||
|
||||
const Cell = styled.div`
|
||||
@@ -171,7 +174,6 @@ const ListNumberCell = styled(Cell)<{ header: boolean }>`
|
||||
color: ${({ theme }) => theme.textSecondary};
|
||||
min-width: 32px;
|
||||
font-size: 14px;
|
||||
height: ${({ header }) => (header ? '48px' : '60px')};
|
||||
|
||||
@media only screen and (max-width: ${SMALL_MEDIA_BREAKPOINT}) {
|
||||
display: none;
|
||||
@@ -197,7 +199,7 @@ const MarketCapCell = styled(DataCell)`
|
||||
const NameCell = styled(Cell)`
|
||||
justify-content: flex-start;
|
||||
padding: 0px 8px;
|
||||
min-width: 200px;
|
||||
min-width: 240px;
|
||||
gap: 8px;
|
||||
`
|
||||
const PriceCell = styled(DataCell)`
|
||||
@@ -229,18 +231,18 @@ const PriceInfoCell = styled(Cell)`
|
||||
align-items: flex-end;
|
||||
}
|
||||
`
|
||||
const SortArrowCell = styled(Cell)`
|
||||
padding-right: 2px;
|
||||
`
|
||||
const HeaderCellWrapper = styled.span<{ onClick?: () => void }>`
|
||||
align-items: center;
|
||||
${ClickableStyle}
|
||||
cursor: ${({ onClick }) => (onClick ? 'pointer' : 'unset')};
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
height: 100%;
|
||||
justify-content: flex-end;
|
||||
width: 100%;
|
||||
`
|
||||
const HeaderCellText = styled(Text)`
|
||||
${ClickableStyle}
|
||||
`
|
||||
const SparkLineCell = styled(Cell)`
|
||||
padding: 0px 24px;
|
||||
min-width: 120px;
|
||||
@@ -309,7 +311,7 @@ const IconLoadingBubble = styled(LoadingBubble)`
|
||||
border-radius: 50%;
|
||||
width: 24px;
|
||||
`
|
||||
const SparkLineLoadingBubble = styled(LongLoadingBubble)`
|
||||
export const SparkLineLoadingBubble = styled(LongLoadingBubble)`
|
||||
height: 4px;
|
||||
`
|
||||
|
||||
@@ -318,7 +320,7 @@ export const L2NetworkLogo = styled.div<{ networkUrl?: string; size?: string }>`
|
||||
width: ${({ size }) => size ?? '12px'};
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
background: url(${({ networkUrl }) => networkUrl});
|
||||
background-repeat: no-repeat;
|
||||
background-size: ${({ size }) => (size ? `${size} ${size}` : '12px 12px')};
|
||||
@@ -330,6 +332,17 @@ export const LogoContainer = styled.div`
|
||||
display: flex;
|
||||
`
|
||||
|
||||
export const HEADER_DESCRIPTIONS: Record<TokenSortMethod, ReactNode | undefined> = {
|
||||
[TokenSortMethod.PRICE]: undefined,
|
||||
[TokenSortMethod.PERCENT_CHANGE]: undefined,
|
||||
[TokenSortMethod.TOTAL_VALUE_LOCKED]: (
|
||||
<Trans>Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool.</Trans>
|
||||
),
|
||||
[TokenSortMethod.VOLUME]: (
|
||||
<Trans>Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame.</Trans>
|
||||
),
|
||||
}
|
||||
|
||||
/* Get singular header cell for header row */
|
||||
function HeaderCell({
|
||||
category,
|
||||
@@ -343,31 +356,23 @@ function HeaderCell({
|
||||
const handleSortCategory = useSetSortMethod(category)
|
||||
const sortMethod = useAtomValue(sortMethodAtom)
|
||||
|
||||
if (sortMethod === category) {
|
||||
return (
|
||||
<HeaderCellWrapper onClick={handleSortCategory}>
|
||||
<SortArrowCell>
|
||||
const description = HEADER_DESCRIPTIONS[category]
|
||||
|
||||
return (
|
||||
<HeaderCellWrapper onClick={handleSortCategory}>
|
||||
{sortMethod === category && (
|
||||
<>
|
||||
{sortAscending ? (
|
||||
<ArrowUp size={20} strokeWidth={1.8} color={theme.accentActive} />
|
||||
) : (
|
||||
<ArrowDown size={20} strokeWidth={1.8} color={theme.accentActive} />
|
||||
)}
|
||||
</SortArrowCell>
|
||||
{category}
|
||||
</HeaderCellWrapper>
|
||||
)
|
||||
}
|
||||
if (sortable) {
|
||||
return (
|
||||
<HeaderCellWrapper onClick={handleSortCategory}>
|
||||
<SortArrowCell>
|
||||
<ArrowUp size={14} visibility="hidden" />
|
||||
</SortArrowCell>
|
||||
{category}
|
||||
</HeaderCellWrapper>
|
||||
)
|
||||
}
|
||||
return <HeaderCellWrapper>{category}</HeaderCellWrapper>
|
||||
</>
|
||||
)}
|
||||
<HeaderCellText>{category}</HeaderCellText>
|
||||
{description && <InfoTip text={description}></InfoTip>}
|
||||
</HeaderCellWrapper>
|
||||
)
|
||||
}
|
||||
|
||||
/* Token Row: skeleton row component */
|
||||
@@ -391,7 +396,7 @@ export function TokenRow({
|
||||
marketCap: ReactNode
|
||||
price: ReactNode
|
||||
percentChange: ReactNode
|
||||
sparkLine: ReactNode
|
||||
sparkLine?: ReactNode
|
||||
tokenInfo: ReactNode
|
||||
volume: ReactNode
|
||||
last?: boolean
|
||||
@@ -462,6 +467,7 @@ interface LoadedRowProps {
|
||||
tokenListIndex: number
|
||||
tokenListLength: number
|
||||
token: NonNullable<TopToken>
|
||||
sparklineMap: SparklineMap
|
||||
}
|
||||
|
||||
/* Loaded State: row component with token information */
|
||||
@@ -473,6 +479,7 @@ export const LoadedRow = forwardRef((props: LoadedRowProps, ref: ForwardedRef<HT
|
||||
const isFavorited = useIsFavorited(tokenAddress)
|
||||
const toggleFavorite = useToggleFavorite(tokenAddress)
|
||||
const filterString = useAtomValue(filterStringAtom)
|
||||
const sortAscending = useAtomValue(sortAscendingAtom)
|
||||
|
||||
const lowercaseChainName = useParams<{ chainName?: string }>().chainName?.toUpperCase() ?? 'ethereum'
|
||||
const filterNetwork = lowercaseChainName.toUpperCase()
|
||||
@@ -481,13 +488,14 @@ export const LoadedRow = forwardRef((props: LoadedRowProps, ref: ForwardedRef<HT
|
||||
const delta = token.market?.pricePercentChange?.value
|
||||
const arrow = getDeltaArrow(delta)
|
||||
const formattedDelta = formatDelta(delta)
|
||||
const sortAscending = useAtomValue(sortAscendingAtom)
|
||||
const rank = sortAscending ? tokenListLength - tokenListIndex : tokenListIndex + 1
|
||||
|
||||
const exploreTokenSelectedEventProperties = {
|
||||
chain_id: filterNetwork,
|
||||
token_address: tokenAddress,
|
||||
token_symbol: tokenSymbol,
|
||||
token_list_index: tokenListIndex,
|
||||
token_list_rank: rank,
|
||||
token_list_length: tokenListLength,
|
||||
time_frame: timePeriod,
|
||||
search_token_address_input: filterString,
|
||||
@@ -512,7 +520,7 @@ export const LoadedRow = forwardRef((props: LoadedRowProps, ref: ForwardedRef<HT
|
||||
<FavoriteIcon isFavorited={isFavorited} />
|
||||
</ClickFavorited>
|
||||
}
|
||||
listNumber={sortAscending ? tokenListLength - tokenListIndex : tokenListIndex + 1}
|
||||
listNumber={rank}
|
||||
tokenInfo={
|
||||
<ClickableName>
|
||||
<LogoContainer>
|
||||
@@ -528,7 +536,9 @@ export const LoadedRow = forwardRef((props: LoadedRowProps, ref: ForwardedRef<HT
|
||||
price={
|
||||
<ClickableContent>
|
||||
<PriceInfoCell>
|
||||
{token.market?.price?.value ? formatDollarAmount(token.market.price.value) : '-'}
|
||||
{token.market?.price?.value
|
||||
? formatDollar({ num: token.market.price.value, isPrice: true, lessPreciseStablecoinValues: true })
|
||||
: '-'}
|
||||
<PercentChangeInfoCell>
|
||||
{formattedDelta}
|
||||
{arrow}
|
||||
@@ -544,26 +554,29 @@ export const LoadedRow = forwardRef((props: LoadedRowProps, ref: ForwardedRef<HT
|
||||
}
|
||||
marketCap={
|
||||
<ClickableContent>
|
||||
{token.market?.totalValueLocked?.value ? formatDollarAmount(token.market.totalValueLocked.value) : '-'}
|
||||
{token.market?.totalValueLocked?.value ? formatDollar({ num: token.market.totalValueLocked.value }) : '-'}
|
||||
</ClickableContent>
|
||||
}
|
||||
volume={
|
||||
<ClickableContent>
|
||||
{token.market?.volume?.value ? formatDollarAmount(token.market.volume.value) : '-'}
|
||||
{token.market?.volume?.value ? formatDollar({ num: token.market.volume.value }) : '-'}
|
||||
</ClickableContent>
|
||||
}
|
||||
sparkLine={
|
||||
<SparkLine>
|
||||
<ParentSize>
|
||||
{({ width, height }) => (
|
||||
<SparklineChart
|
||||
width={width}
|
||||
height={height}
|
||||
tokenData={token}
|
||||
pricePercentChange={token.market?.pricePercentChange?.value}
|
||||
timePeriod={timePeriod}
|
||||
/>
|
||||
)}
|
||||
{({ width, height }) =>
|
||||
props.sparklineMap && (
|
||||
<SparklineChart
|
||||
width={width}
|
||||
height={height}
|
||||
tokenData={token}
|
||||
pricePercentChange={token.market?.pricePercentChange?.value}
|
||||
timePeriod={timePeriod}
|
||||
sparklineMap={props.sparklineMap}
|
||||
/>
|
||||
)
|
||||
}
|
||||
</ParentSize>
|
||||
</SparkLine>
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ import { showFavoritesAtom } from 'components/Tokens/state'
|
||||
import { PAGE_SIZE, useTopTokens } from 'graphql/data/TopTokens'
|
||||
import { validateUrlChainParam } from 'graphql/data/util'
|
||||
import { useAtomValue } from 'jotai/utils'
|
||||
import { ReactNode, useCallback, useRef } from 'react'
|
||||
import { ReactNode } from 'react'
|
||||
import { AlertTriangle } from 'react-feather'
|
||||
import { useParams } from 'react-router-dom'
|
||||
import styled from 'styled-components/macro'
|
||||
@@ -11,8 +11,6 @@ import styled from 'styled-components/macro'
|
||||
import { MAX_WIDTH_MEDIA_BREAKPOINT } from '../constants'
|
||||
import { HeaderRow, LoadedRow, LoadingRow } from './TokenRow'
|
||||
|
||||
const LOADING_ROWS_COUNT = 3
|
||||
|
||||
const GridContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -58,8 +56,19 @@ function NoTokensState({ message }: { message: ReactNode }) {
|
||||
)
|
||||
}
|
||||
|
||||
const LoadingMoreRows = Array(LOADING_ROWS_COUNT).fill(<LoadingRow />)
|
||||
const LoadingRows = (rowCount?: number) => Array(rowCount ?? PAGE_SIZE).fill(<LoadingRow />)
|
||||
const LoadingRowsWrapper = styled.div`
|
||||
margin-top: 8px;
|
||||
`
|
||||
|
||||
const LoadingRows = (rowCount?: number) => (
|
||||
<LoadingRowsWrapper>
|
||||
{Array(rowCount ?? PAGE_SIZE)
|
||||
.fill(null)
|
||||
.map((_, index) => {
|
||||
return <LoadingRow key={index} />
|
||||
})}
|
||||
</LoadingRowsWrapper>
|
||||
)
|
||||
|
||||
export function LoadingTokenTable({ rowCount }: { rowCount?: number }) {
|
||||
return (
|
||||
@@ -70,73 +79,51 @@ export function LoadingTokenTable({ rowCount }: { rowCount?: number }) {
|
||||
)
|
||||
}
|
||||
|
||||
export default function TokenTable() {
|
||||
export default function TokenTable({ setRowCount }: { setRowCount: (c: number) => void }) {
|
||||
const showFavorites = useAtomValue<boolean>(showFavoritesAtom)
|
||||
|
||||
// TODO: consider moving prefetched call into app.tsx and passing it here, use a preloaded call & updated on interval every 60s
|
||||
const chainName = validateUrlChainParam(useParams<{ chainName?: string }>().chainName)
|
||||
const { error, loading, tokens, hasMore, loadMoreTokens, maxFetchable } = useTopTokens(chainName)
|
||||
const showMoreLoadingRows = Boolean(loading && hasMore)
|
||||
|
||||
const observer = useRef<IntersectionObserver>()
|
||||
const lastTokenRef = useCallback(
|
||||
(node: HTMLDivElement) => {
|
||||
if (loading) return
|
||||
if (observer.current) observer.current.disconnect()
|
||||
observer.current = new IntersectionObserver((entries) => {
|
||||
if (entries[0].isIntersecting && hasMore) {
|
||||
loadMoreTokens()
|
||||
}
|
||||
})
|
||||
if (node) observer.current.observe(node)
|
||||
},
|
||||
[loading, hasMore, loadMoreTokens]
|
||||
)
|
||||
const { tokens, sparklines } = useTopTokens(chainName)
|
||||
setRowCount(tokens?.length ?? PAGE_SIZE)
|
||||
|
||||
/* loading and error state */
|
||||
if (loading && (!tokens || tokens?.length === 0)) {
|
||||
return <LoadingTokenTable rowCount={PAGE_SIZE} />
|
||||
if (!tokens) {
|
||||
return (
|
||||
<NoTokensState
|
||||
message={
|
||||
<>
|
||||
<AlertTriangle size={16} />
|
||||
<Trans>An error occurred loading tokens. Please try again.</Trans>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
)
|
||||
} else if (tokens?.length === 0) {
|
||||
return showFavorites ? (
|
||||
<NoTokensState message={<Trans>You have no favorited tokens</Trans>} />
|
||||
) : (
|
||||
<NoTokensState message={<Trans>No tokens found</Trans>} />
|
||||
)
|
||||
} else {
|
||||
if (error || !tokens) {
|
||||
return (
|
||||
<NoTokensState
|
||||
message={
|
||||
<>
|
||||
<AlertTriangle size={16} />
|
||||
<Trans>An error occured loading tokens. Please try again.</Trans>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
)
|
||||
} else if (tokens?.length === 0) {
|
||||
return showFavorites ? (
|
||||
<NoTokensState message={<Trans>You have no favorited tokens</Trans>} />
|
||||
) : (
|
||||
<NoTokensState message={<Trans>No tokens found</Trans>} />
|
||||
)
|
||||
} else {
|
||||
return (
|
||||
<>
|
||||
<GridContainer>
|
||||
<HeaderRow />
|
||||
<TokenDataContainer>
|
||||
{tokens.map(
|
||||
(token, index) =>
|
||||
token && (
|
||||
<LoadedRow
|
||||
key={token?.address}
|
||||
tokenListIndex={index}
|
||||
tokenListLength={maxFetchable}
|
||||
token={token}
|
||||
ref={index + 1 === tokens.length ? lastTokenRef : undefined}
|
||||
/>
|
||||
)
|
||||
)}
|
||||
{showMoreLoadingRows && LoadingMoreRows}
|
||||
</TokenDataContainer>
|
||||
</GridContainer>
|
||||
</>
|
||||
)
|
||||
}
|
||||
return (
|
||||
<GridContainer>
|
||||
<HeaderRow />
|
||||
<TokenDataContainer>
|
||||
{tokens.map(
|
||||
(token, index) =>
|
||||
token && (
|
||||
<LoadedRow
|
||||
key={token?.address}
|
||||
tokenListIndex={index}
|
||||
tokenListLength={tokens.length}
|
||||
token={token}
|
||||
sparklineMap={sparklines}
|
||||
/>
|
||||
)
|
||||
)}
|
||||
</TokenDataContainer>
|
||||
</GridContainer>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import { chainIdToBackendName } from 'graphql/data/util'
|
||||
import { X } from 'react-feather'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { Link, useNavigate } from 'react-router-dom'
|
||||
import { useShowTokensPromoBanner } from 'state/user/hooks'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
import { opacify } from 'theme/utils'
|
||||
@@ -59,22 +62,34 @@ const Description = styled(Link)`
|
||||
export default function TokensBanner() {
|
||||
const theme = useTheme()
|
||||
const [showTokensPromoBanner, setShowTokensPromoBanner] = useShowTokensPromoBanner()
|
||||
const navigate = useNavigate()
|
||||
const { chainId: connectedChainId } = useWeb3React()
|
||||
const chainName = chainIdToBackendName(connectedChainId).toLowerCase()
|
||||
|
||||
const closeBanner = () => {
|
||||
setShowTokensPromoBanner(false)
|
||||
const navigateToExplorePage = () => {
|
||||
navigate(`/tokens/${chainName}`)
|
||||
}
|
||||
|
||||
return (
|
||||
<PopupContainer show={showTokensPromoBanner}>
|
||||
<PopupContainer show={showTokensPromoBanner} onClick={navigateToExplorePage}>
|
||||
<Header>
|
||||
<HeaderText to={'/tokens'} onClick={closeBanner}>
|
||||
Explore Top Tokens
|
||||
<HeaderText to={'/tokens'}>
|
||||
<Trans>Explore Top Tokens on Uniswap</Trans>
|
||||
</HeaderText>
|
||||
<X size={20} color={theme.textSecondary} onClick={closeBanner} style={{ cursor: 'pointer' }} />
|
||||
<X
|
||||
size={20}
|
||||
color={theme.textSecondary}
|
||||
onClick={(e) => {
|
||||
e.preventDefault()
|
||||
e.stopPropagation()
|
||||
setShowTokensPromoBanner(false)
|
||||
}}
|
||||
style={{ cursor: 'pointer' }}
|
||||
/>
|
||||
</Header>
|
||||
|
||||
<Description to={'/tokens'} onClick={closeBanner}>
|
||||
Check out the new explore tab to discover and learn more
|
||||
<Description to={'/tokens'}>
|
||||
<Trans>Sort and filter assets across networks on the new Tokens page.</Trans>
|
||||
</Description>
|
||||
</PopupContainer>
|
||||
)
|
||||
|
||||
@@ -1,9 +1,15 @@
|
||||
import { TokenSortMethod } from 'graphql/data/TopTokens'
|
||||
import { TimePeriod } from 'graphql/data/util'
|
||||
import { atom, useAtom } from 'jotai'
|
||||
import { atomWithReset, atomWithStorage, useAtomValue } from 'jotai/utils'
|
||||
import { useCallback, useMemo } from 'react'
|
||||
|
||||
export enum TokenSortMethod {
|
||||
PRICE = 'Price',
|
||||
PERCENT_CHANGE = 'Change',
|
||||
TOTAL_VALUE_LOCKED = 'TVL',
|
||||
VOLUME = 'Volume',
|
||||
}
|
||||
|
||||
export const favoritesAtom = atomWithStorage<string[]>('favorites', [])
|
||||
export const showFavoritesAtom = atomWithStorage<boolean>('showFavorites', false)
|
||||
export const filterStringAtom = atomWithReset<string>('')
|
||||
|
||||
@@ -10,7 +10,6 @@ import { useLocation } from 'react-router-dom'
|
||||
import { useModalIsOpen, useToggleModal } from 'state/application/hooks'
|
||||
import { ApplicationModal } from 'state/application/reducer'
|
||||
|
||||
const Cart = lazy(() => import('nft/components/profile/modal/ListingTag'))
|
||||
const Bag = lazy(() => import('nft/components/bag/Bag'))
|
||||
const TransactionCompleteModal = lazy(() => import('nft/components/collection/TransactionCompleteModal'))
|
||||
|
||||
@@ -30,7 +29,6 @@ export default function TopLevelModals() {
|
||||
<ConnectedAccountBlocked account={account} isOpen={open} />
|
||||
{useTokensFlag() === TokensVariant.Enabled &&
|
||||
(location.pathname.includes('/pool') || location.pathname.includes('/swap')) && <TokensBanner />}
|
||||
<Cart />
|
||||
<Bag />
|
||||
{useNftFlag() === NftVariant.Enabled && <TransactionCompleteModal />}
|
||||
</>
|
||||
|
||||
@@ -149,14 +149,15 @@ const AuthenticatedHeader = () => {
|
||||
</FlexContainer>
|
||||
</StatusWrapper>
|
||||
<IconContainer>
|
||||
<IconButton onClick={copy} Icon={Copy} text={isCopied ? <Trans>Copied!</Trans> : <Trans>Copy</Trans>} />
|
||||
<IconButton href={`${explorer}address/${account}`} Icon={ExternalLink} text={<Trans>Explore</Trans>} />
|
||||
<IconButton
|
||||
dataTestId="wallet-disconnect"
|
||||
onClick={disconnect}
|
||||
Icon={Power}
|
||||
text={<Trans>Disconnect</Trans>}
|
||||
/>
|
||||
<IconButton onClick={copy} Icon={Copy}>
|
||||
{isCopied ? <Trans>Copied!</Trans> : <Trans>Copy</Trans>}
|
||||
</IconButton>
|
||||
<IconButton href={`${explorer}address/${account}`} target="_blank" Icon={ExternalLink}>
|
||||
<Trans>Explore</Trans>
|
||||
</IconButton>
|
||||
<IconButton data-testid="wallet-disconnect" onClick={disconnect} Icon={Power}>
|
||||
<Trans>Disconnect</Trans>
|
||||
</IconButton>
|
||||
</IconContainer>
|
||||
</HeaderWrapper>
|
||||
<Column>
|
||||
|
||||
@@ -58,31 +58,28 @@ const IconWrapper = styled.span`
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
`
|
||||
|
||||
interface IconButtonProps {
|
||||
text: React.ReactNode
|
||||
interface BaseProps {
|
||||
Icon: Icon
|
||||
onClick?: () => void
|
||||
href?: string
|
||||
dataTestId?: string
|
||||
}
|
||||
interface IconLinkProps extends React.ComponentPropsWithoutRef<'a'>, BaseProps {}
|
||||
interface IconButtonProps extends React.ComponentPropsWithoutRef<'button'>, BaseProps {}
|
||||
|
||||
const IconBlock = (props: React.ComponentPropsWithoutRef<'a' | 'button'>) => {
|
||||
if ('href' in props) {
|
||||
return <IconBlockLink {...props} />
|
||||
}
|
||||
// ignoring 'button' 'type' conflict between React and styled-components
|
||||
// @ts-ignore
|
||||
return <IconBlockButton {...props} />
|
||||
}
|
||||
|
||||
const IconButton = ({ Icon, onClick, text, href, dataTestId }: IconButtonProps) => {
|
||||
return href ? (
|
||||
<IconBlockLink data-testId={dataTestId} href={href} target="_blank">
|
||||
<IconWrapper>
|
||||
<Icon strokeWidth={1.5} size={16} />
|
||||
<IconHoverText>{text}</IconHoverText>
|
||||
</IconWrapper>
|
||||
</IconBlockLink>
|
||||
) : (
|
||||
<IconBlockButton data-testId={dataTestId} onClick={onClick}>
|
||||
<IconWrapper>
|
||||
<Icon strokeWidth={1.5} size={16} />
|
||||
<IconHoverText>{text}</IconHoverText>
|
||||
</IconWrapper>
|
||||
</IconBlockButton>
|
||||
)
|
||||
}
|
||||
const IconButton = ({ Icon, children, ...rest }: IconButtonProps | IconLinkProps) => (
|
||||
<IconBlock {...rest}>
|
||||
<IconWrapper>
|
||||
<Icon strokeWidth={1.5} size={16} />
|
||||
<IconHoverText>{children}</IconHoverText>
|
||||
</IconWrapper>
|
||||
</IconBlock>
|
||||
)
|
||||
|
||||
export default IconButton
|
||||
|
||||
@@ -116,9 +116,9 @@ export default function PendingView({
|
||||
<ThemedText.MediumHeader>
|
||||
<Trans>Waiting to connect</Trans>
|
||||
</ThemedText.MediumHeader>
|
||||
<ThemedText.SubHeader style={{ paddingTop: '8px' }}>
|
||||
<ThemedText.BodyPrimary style={{ paddingTop: '8px' }}>
|
||||
<Trans>Confirm this connection in your wallet</Trans>
|
||||
</ThemedText.SubHeader>
|
||||
</ThemedText.BodyPrimary>
|
||||
</WaitingToConnectSection>
|
||||
</>
|
||||
)}
|
||||
|
||||
@@ -7,6 +7,7 @@ import { sendEvent } from 'components/analytics'
|
||||
import { AutoColumn } from 'components/Column'
|
||||
import { AutoRow } from 'components/Row'
|
||||
import { getConnection, getConnectionName, getIsCoinbaseWallet, getIsInjected, getIsMetaMask } from 'connection/utils'
|
||||
import { NftVariant, useNftFlag } from 'featureFlags/flags/nft'
|
||||
import { RedesignVariant, useRedesignFlag } from 'featureFlags/flags/redesign'
|
||||
import usePrevious from 'hooks/usePrevious'
|
||||
import { useCallback, useEffect, useState } from 'react'
|
||||
@@ -156,6 +157,7 @@ export default function WalletModal({
|
||||
|
||||
const redesignFlag = useRedesignFlag()
|
||||
const redesignFlagEnabled = redesignFlag === RedesignVariant.Enabled
|
||||
const nftFlagEnabled = useNftFlag() === NftVariant.Enabled
|
||||
const [walletView, setWalletView] = useState(WALLET_VIEWS.ACCOUNT)
|
||||
const [lastActiveWalletAddress, setLastActiveWalletAddress] = useState<string | undefined>(account)
|
||||
|
||||
@@ -307,15 +309,15 @@ export default function WalletModal({
|
||||
)
|
||||
}
|
||||
|
||||
function getTermsOfService(redesignFlagEnabled: boolean) {
|
||||
return redesignFlagEnabled ? (
|
||||
function getTermsOfService(nftFlagEnabled: boolean, walletView: string) {
|
||||
if (nftFlagEnabled && walletView === WALLET_VIEWS.PENDING) return null
|
||||
return nftFlagEnabled ? (
|
||||
<AutoRow style={{ flexWrap: 'nowrap', padding: '4px 16px' }}>
|
||||
<ThemedText.BodySecondary fontSize={12}>
|
||||
<ThemedText.BodySecondary fontSize={16} lineHeight={'24px'}>
|
||||
<Trans>
|
||||
By connecting a wallet, you agree to Uniswap Labs’{' '}
|
||||
<ExternalLink href="https://uniswap.org/terms-of-service/">Terms of Service</ExternalLink> and acknowledge
|
||||
that you have read and understand the Uniswap{' '}
|
||||
<ExternalLink href="https://uniswap.org/disclaimer/">Protocol Disclaimer</ExternalLink>.
|
||||
<ExternalLink href="https://uniswap.org/terms-of-service/">Terms of Service</ExternalLink> and consent to
|
||||
its <ExternalLink href="https://uniswap.org/privacy-policy">Privacy Policy</ExternalLink>.
|
||||
</Trans>
|
||||
</ThemedText.BodySecondary>
|
||||
</AutoRow>
|
||||
@@ -357,7 +359,7 @@ export default function WalletModal({
|
||||
/>
|
||||
)}
|
||||
{walletView !== WALLET_VIEWS.PENDING && <OptionGrid data-testid="option-grid">{getOptions()}</OptionGrid>}
|
||||
{!pendingError && getTermsOfService(redesignFlagEnabled)}
|
||||
{!pendingError && getTermsOfService(nftFlagEnabled, walletView)}
|
||||
</AutoColumn>
|
||||
</ContentWrapper>
|
||||
</UpperSection>
|
||||
|
||||
@@ -1,7 +1,12 @@
|
||||
import { Currency, OnReviewSwapClick, SwapWidget } from '@uniswap/widgets'
|
||||
// Import fonts.css for the side-effect of loading fonts for @uniswap/widgets.
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import '@uniswap/widgets/dist/fonts.css'
|
||||
|
||||
import { Currency, EMPTY_TOKEN_LIST, OnReviewSwapClick, SwapWidget, SwapWidgetSkeleton } from '@uniswap/widgets'
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import { networkConnection } from 'connection'
|
||||
import { RPC_PROVIDERS } from 'constants/providers'
|
||||
import { useActiveLocale } from 'hooks/useActiveLocale'
|
||||
import { useMemo } from 'react'
|
||||
import { useIsDarkMode } from 'state/user/hooks'
|
||||
import { DARK_THEME, LIGHT_THEME } from 'theme/widget'
|
||||
|
||||
@@ -20,9 +25,8 @@ export interface WidgetProps {
|
||||
|
||||
export default function Widget({ defaultToken, onReviewSwapClick }: WidgetProps) {
|
||||
const locale = useActiveLocale()
|
||||
const darkMode = useIsDarkMode()
|
||||
const theme = useMemo(() => (darkMode ? DARK_THEME : LIGHT_THEME), [darkMode])
|
||||
const { provider } = useWeb3React()
|
||||
const theme = useIsDarkMode() ? DARK_THEME : LIGHT_THEME
|
||||
const { connector, provider } = useWeb3React()
|
||||
|
||||
const { inputs, tokenSelector } = useSyncWidgetInputs(defaultToken)
|
||||
const { settings } = useSyncWidgetSettings()
|
||||
@@ -33,14 +37,15 @@ export default function Widget({ defaultToken, onReviewSwapClick }: WidgetProps)
|
||||
<SwapWidget
|
||||
disableBranding
|
||||
hideConnectionUI
|
||||
// jsonRpcUrlMap is excluded - network providers are always passed directly
|
||||
jsonRpcUrlMap={RPC_PROVIDERS}
|
||||
routerUrl={WIDGET_ROUTER_URL}
|
||||
width={WIDGET_WIDTH}
|
||||
locale={locale}
|
||||
theme={theme}
|
||||
onReviewSwapClick={onReviewSwapClick}
|
||||
// defaultChainId is excluded - it is always inferred from the passed provider
|
||||
provider={provider}
|
||||
provider={connector === networkConnection.connector ? null : provider} // use jsonRpcUrlMap for network providers
|
||||
tokenList={EMPTY_TOKEN_LIST} // prevents loading the default token list, as we use our own token selector UI
|
||||
{...inputs}
|
||||
{...settings}
|
||||
{...transactions}
|
||||
@@ -49,3 +54,7 @@ export default function Widget({ defaultToken, onReviewSwapClick }: WidgetProps)
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export function WidgetSkeleton() {
|
||||
return <SwapWidgetSkeleton theme={useIsDarkMode() ? DARK_THEME : LIGHT_THEME} width={WIDGET_WIDTH} />
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ export function useSyncWidgetInputs(defaultToken?: Currency) {
|
||||
/>
|
||||
)
|
||||
|
||||
const value: SwapController = useMemo(() => ({ type, amount, ...tokens }), [amount, tokens, type])
|
||||
const value: SwapController['value'] = useMemo(() => ({ type, amount, ...tokens }), [amount, tokens, type])
|
||||
const valueHandlers: SwapEventHandlers = useMemo(
|
||||
() => ({ onAmountChange, onSwitchTokens, onTokenSelectorClick }),
|
||||
[onAmountChange, onSwitchTokens, onTokenSelectorClick]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Percent } from '@uniswap/sdk-core'
|
||||
import { Slippage, SwapEventHandlers, SwapSettingsController } from '@uniswap/widgets'
|
||||
import { Slippage, SwapController, SwapEventHandlers } from '@uniswap/widgets'
|
||||
import { DEFAULT_DEADLINE_FROM_NOW } from 'constants/misc'
|
||||
import { useCallback, useMemo, useState } from 'react'
|
||||
import { useUserSlippageTolerance, useUserTransactionTTL } from 'state/user/hooks'
|
||||
@@ -44,7 +44,7 @@ export function useSyncWidgetSettings() {
|
||||
setAppSlippage('auto')
|
||||
}, [setAppSlippage, setAppTtl])
|
||||
|
||||
const settings: SwapSettingsController = useMemo(() => {
|
||||
const settings: SwapController['settings'] = useMemo(() => {
|
||||
const auto = appSlippage === 'auto'
|
||||
return { slippage: { auto, max: widgetSlippage }, transactionTtl: widgetTtl }
|
||||
}, [widgetSlippage, widgetTtl, appSlippage])
|
||||
|
||||
@@ -23,9 +23,13 @@ import { ResponsiveTooltipContainer } from './styleds'
|
||||
import SwapRoute from './SwapRoute'
|
||||
import TradePrice from './TradePrice'
|
||||
|
||||
const Wrapper = styled(Row)`
|
||||
const Wrapper = styled(Row)<{ redesignFlag: boolean }>`
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
border-radius: ${({ redesignFlag }) => redesignFlag && 'inherit'};
|
||||
padding: ${({ redesignFlag }) => redesignFlag && '8px 12px'};
|
||||
margin-top: ${({ redesignFlag }) => (redesignFlag ? '0px' : '4px')};
|
||||
min-height: ${({ redesignFlag }) => redesignFlag && '32px'};
|
||||
`
|
||||
|
||||
const StyledInfoIcon = styled(Info)`
|
||||
@@ -41,14 +45,11 @@ const StyledCard = styled(OutlineCard)<{ redesignFlag: boolean }>`
|
||||
`
|
||||
|
||||
const StyledHeaderRow = styled(RowBetween)<{ disabled: boolean; open: boolean; redesignFlag: boolean }>`
|
||||
padding: ${({ redesignFlag }) => (redesignFlag ? '8px 0px 0px 0px' : '4px 8px')};
|
||||
padding: ${({ redesignFlag }) => (redesignFlag ? '0' : '4px 8px')};
|
||||
background-color: ${({ open, theme, redesignFlag }) =>
|
||||
open && !redesignFlag ? theme.deprecated_bg1 : 'transparent'};
|
||||
align-items: center;
|
||||
border-top: 1px solid ${({ theme, redesignFlag }) => (redesignFlag ? theme.backgroundOutline : 'transparent')};
|
||||
margin-top: ${({ redesignFlag }) => redesignFlag && '8px'};
|
||||
cursor: ${({ disabled }) => (disabled ? 'initial' : 'pointer')};
|
||||
min-height: 40px;
|
||||
border-radius: ${({ redesignFlag }) => !redesignFlag && '12px'};
|
||||
`
|
||||
|
||||
@@ -133,7 +134,7 @@ export default function SwapDetailsDropdown({
|
||||
const redesignFlagEnabled = redesignFlag === RedesignVariant.Enabled
|
||||
|
||||
return (
|
||||
<Wrapper style={{ marginTop: '8px' }}>
|
||||
<Wrapper style={{ marginTop: redesignFlagEnabled ? '0' : '8px' }} redesignFlag={redesignFlagEnabled}>
|
||||
<AutoColumn gap={'8px'} style={{ width: '100%', marginBottom: '-8px' }}>
|
||||
<TraceEvent
|
||||
events={[Event.onClick]}
|
||||
|
||||
@@ -5,6 +5,7 @@ import { useCallback } from 'react'
|
||||
import { Text } from 'rebass'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
import { ThemedText } from 'theme'
|
||||
import { formatDollar, formatTransactionAmount, priceToPreciseFloat } from 'utils/formatNumbers'
|
||||
|
||||
interface TradePriceProps {
|
||||
price: Price<Currency, Currency>
|
||||
@@ -33,15 +34,12 @@ export default function TradePrice({ price, showInverted, setShowInverted }: Tra
|
||||
const theme = useTheme()
|
||||
|
||||
const usdcPrice = useStablecoinPrice(showInverted ? price.baseCurrency : price.quoteCurrency)
|
||||
/*
|
||||
* calculate needed amount of decimal prices, for prices between 0.95-1.05 use 4 decimal places
|
||||
*/
|
||||
const p = Number(usdcPrice?.toFixed())
|
||||
const visibleDecimalPlaces = p < 1.05 ? 4 : 2
|
||||
|
||||
let formattedPrice: string
|
||||
try {
|
||||
formattedPrice = showInverted ? price.toSignificant(4) : price.invert()?.toSignificant(4)
|
||||
formattedPrice = showInverted
|
||||
? formatTransactionAmount(priceToPreciseFloat(price))
|
||||
: formatTransactionAmount(priceToPreciseFloat(price.invert()))
|
||||
} catch (error) {
|
||||
formattedPrice = '0'
|
||||
}
|
||||
@@ -65,7 +63,7 @@ export default function TradePrice({ price, showInverted, setShowInverted }: Tra
|
||||
</Text>{' '}
|
||||
{usdcPrice && (
|
||||
<ThemedText.DeprecatedDarkGray>
|
||||
<Trans>(${usdcPrice.toFixed(visibleDecimalPlaces, { groupSeparator: ',' })})</Trans>
|
||||
<Trans>({formatDollar({ num: priceToPreciseFloat(usdcPrice) })})</Trans>
|
||||
</ThemedText.DeprecatedDarkGray>
|
||||
)}
|
||||
</StyledPriceContainer>
|
||||
|
||||
@@ -36,15 +36,14 @@ export const SwapWrapper = styled.main<{ margin?: string; maxWidth?: string; red
|
||||
`
|
||||
|
||||
export const ArrowWrapper = styled.div<{ clickable: boolean; redesignFlag: boolean }>`
|
||||
padding: 4px;
|
||||
border-radius: 12px;
|
||||
height: ${({ redesignFlag }) => (redesignFlag ? '40px' : '32px')};
|
||||
width: ${({ redesignFlag }) => (redesignFlag ? '40px' : '32px')};
|
||||
position: relative;
|
||||
margin-top: ${({ redesignFlag }) => (redesignFlag ? '-18px' : '-14px')};
|
||||
margin-bottom: ${({ redesignFlag }) => (redesignFlag ? '-18px' : '-14px')};
|
||||
left: calc(50% - 16px);
|
||||
/* transform: rotate(90deg); */
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
background-color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.backgroundInteractive : theme.deprecated_bg1)};
|
||||
border: 4px solid;
|
||||
border-color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.backgroundSurface : theme.deprecated_bg0)};
|
||||
|
||||
@@ -3,6 +3,7 @@ import { TokenInfo } from '@uniswap/token-lists'
|
||||
import store from '../state'
|
||||
import { UNI_EXTENDED_LIST, UNI_LIST, UNSUPPORTED_LIST_URLS } from './lists'
|
||||
import brokenTokenList from './tokenLists/broken.tokenlist.json'
|
||||
import { NATIVE_CHAIN_ID } from './tokens'
|
||||
|
||||
export enum TOKEN_LIST_TYPES {
|
||||
UNI_DEFAULT = 1,
|
||||
@@ -47,6 +48,9 @@ class TokenSafetyLookupTable {
|
||||
if (!this.dict) {
|
||||
this.dict = this.createMap()
|
||||
}
|
||||
if (address === NATIVE_CHAIN_ID.toLowerCase()) {
|
||||
return TOKEN_LIST_TYPES.UNI_DEFAULT
|
||||
}
|
||||
return this.dict[address] ?? TOKEN_LIST_TYPES.UNKNOWN
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,8 @@ import invariant from 'tiny-invariant'
|
||||
import { UNI_ADDRESS } from './addresses'
|
||||
import { SupportedChainId } from './chains'
|
||||
|
||||
export const NATIVE_CHAIN_ID = 'NATIVE'
|
||||
|
||||
export const USDC_MAINNET = new Token(
|
||||
SupportedChainId.MAINNET,
|
||||
'0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
|
||||
|
||||
@@ -6,4 +6,5 @@ export enum FeatureFlag {
|
||||
tokens = 'tokens',
|
||||
tokenSafety = 'tokenSafety',
|
||||
traceJsonRpc = 'traceJsonRpc',
|
||||
multiNetworkBalances = 'multiNetworkBalances',
|
||||
}
|
||||
|
||||
@@ -1,32 +1,12 @@
|
||||
import graphql from 'babel-plugin-relay/macro'
|
||||
import { filterTimeAtom } from 'components/Tokens/state'
|
||||
import { useAtomValue } from 'jotai/utils'
|
||||
import { useCallback, useEffect, useState } from 'react'
|
||||
import { fetchQuery, useFragment, useLazyLoadQuery, useRelayEnvironment } from 'react-relay'
|
||||
import { useMemo, useState } from 'react'
|
||||
import { fetchQuery, useLazyLoadQuery } from 'react-relay'
|
||||
|
||||
import { Chain, TokenPriceQuery } from './__generated__/TokenPriceQuery.graphql'
|
||||
import { TokenPrices$data, TokenPrices$key } from './__generated__/TokenPrices.graphql'
|
||||
import { TokenQuery, TokenQuery$data } from './__generated__/TokenQuery.graphql'
|
||||
import { ContractInput, HistoryDuration, TokenQuery, TokenQuery$data } from './__generated__/TokenQuery.graphql'
|
||||
import environment from './RelayEnvironment'
|
||||
import { TimePeriod, toHistoryDuration } from './util'
|
||||
|
||||
export type PricePoint = { value: number; timestamp: number }
|
||||
|
||||
export const projectMetaDataFragment = graphql`
|
||||
fragment Token_TokenProject_Metadata on TokenProject {
|
||||
description
|
||||
homepageUrl
|
||||
twitterName
|
||||
name
|
||||
}
|
||||
`
|
||||
const tokenPricesFragment = graphql`
|
||||
fragment TokenPrices on TokenProjectMarket {
|
||||
priceHistory(duration: $duration) {
|
||||
timestamp
|
||||
value
|
||||
}
|
||||
}
|
||||
`
|
||||
/*
|
||||
The difference between Token and TokenProject:
|
||||
Token: an on-chain entity referring to a contract (e.g. uni token on ethereum 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984)
|
||||
@@ -60,6 +40,12 @@ const tokenQuery = graphql`
|
||||
value
|
||||
currency
|
||||
}
|
||||
priceHigh52W: priceHighLow(duration: YEAR, highLow: HIGH) {
|
||||
value
|
||||
}
|
||||
priceLow52W: priceHighLow(duration: YEAR, highLow: LOW) {
|
||||
value
|
||||
}
|
||||
}
|
||||
project {
|
||||
description
|
||||
@@ -75,13 +61,79 @@ const tokenQuery = graphql`
|
||||
}
|
||||
`
|
||||
|
||||
export function useTokenQuery(address: string, chain: Chain, timePeriod: TimePeriod) {
|
||||
const data = useLazyLoadQuery<TokenQuery>(tokenQuery, {
|
||||
contract: { address: address.toLowerCase(), chain },
|
||||
duration: toHistoryDuration(timePeriod),
|
||||
export type PricePoint = { value: number; timestamp: number }
|
||||
export function filterPrices(prices: NonNullable<NonNullable<SingleTokenData>['market']>['priceHistory'] | undefined) {
|
||||
return prices?.filter((p): p is PricePoint => Boolean(p && p.value))
|
||||
}
|
||||
|
||||
export type PriceDurations = Record<TimePeriod, PricePoint[] | undefined>
|
||||
function fetchAllPriceDurations(contract: ContractInput, originalDuration: HistoryDuration) {
|
||||
return fetchQuery<TokenPriceQuery>(environment, tokenPriceQuery, {
|
||||
contract,
|
||||
skip1H: originalDuration === 'HOUR',
|
||||
skip1D: originalDuration === 'DAY',
|
||||
skip1W: originalDuration === 'WEEK',
|
||||
skip1M: originalDuration === 'MONTH',
|
||||
skip1Y: originalDuration === 'YEAR',
|
||||
})
|
||||
}
|
||||
|
||||
export type SingleTokenData = NonNullable<TokenQuery$data['tokens']>[number]
|
||||
export function useTokenQuery(
|
||||
address: string,
|
||||
chain: Chain,
|
||||
timePeriod: TimePeriod
|
||||
): [SingleTokenData | undefined, PriceDurations] {
|
||||
const [prices, setPrices] = useState<PriceDurations>({
|
||||
[TimePeriod.HOUR]: undefined,
|
||||
[TimePeriod.DAY]: undefined,
|
||||
[TimePeriod.WEEK]: undefined,
|
||||
[TimePeriod.MONTH]: undefined,
|
||||
[TimePeriod.YEAR]: undefined,
|
||||
})
|
||||
|
||||
return data
|
||||
const contract = useMemo(() => {
|
||||
return { address: address.toLowerCase(), chain }
|
||||
}, [address, chain])
|
||||
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
const originalTimePeriod = useMemo(() => timePeriod, [contract])
|
||||
|
||||
const updatePrices = (response: TokenPriceQuery['response']) => {
|
||||
const priceData = response.tokens?.[0]?.market
|
||||
if (priceData) {
|
||||
setPrices((current) => {
|
||||
return {
|
||||
[TimePeriod.HOUR]: filterPrices(priceData.priceHistory1H) ?? current[TimePeriod.HOUR],
|
||||
[TimePeriod.DAY]: filterPrices(priceData.priceHistory1D) ?? current[TimePeriod.DAY],
|
||||
[TimePeriod.WEEK]: filterPrices(priceData.priceHistory1W) ?? current[TimePeriod.WEEK],
|
||||
[TimePeriod.MONTH]: filterPrices(priceData.priceHistory1M) ?? current[TimePeriod.MONTH],
|
||||
[TimePeriod.YEAR]: filterPrices(priceData.priceHistory1Y) ?? current[TimePeriod.YEAR],
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// Fetch prices & token info in tandem so we can render faster
|
||||
useMemo(
|
||||
() => fetchAllPriceDurations(contract, toHistoryDuration(originalTimePeriod)).subscribe({ next: updatePrices }),
|
||||
[contract, originalTimePeriod]
|
||||
)
|
||||
const token = useLazyLoadQuery<TokenQuery>(tokenQuery, {
|
||||
contract,
|
||||
duration: toHistoryDuration(originalTimePeriod),
|
||||
}).tokens?.[0]
|
||||
|
||||
useMemo(
|
||||
() =>
|
||||
setPrices((current) => {
|
||||
current[originalTimePeriod] = filterPrices(token?.market?.priceHistory)
|
||||
return current
|
||||
}),
|
||||
[token, originalTimePeriod]
|
||||
)
|
||||
|
||||
return [token, prices]
|
||||
}
|
||||
|
||||
const tokenPriceQuery = graphql`
|
||||
@@ -119,60 +171,3 @@ const tokenPriceQuery = graphql`
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
export function filterPrices(prices: TokenPrices$data['priceHistory'] | undefined) {
|
||||
return prices?.filter((p): p is PricePoint => Boolean(p && p.value))
|
||||
}
|
||||
|
||||
export function useTokenPricesFromFragment(key: TokenPrices$key | null | undefined) {
|
||||
const fetchedTokenPrices = useFragment(tokenPricesFragment, key ?? null)?.priceHistory
|
||||
return filterPrices(fetchedTokenPrices)
|
||||
}
|
||||
|
||||
export function useTokenPricesCached(token: SingleTokenData) {
|
||||
// Attempt to use token prices already provided by TokenDetails / TopToken queries
|
||||
const environment = useRelayEnvironment()
|
||||
const timePeriod = useAtomValue(filterTimeAtom)
|
||||
|
||||
const [priceMap, setPriceMap] = useState<Map<TimePeriod, PricePoint[] | undefined>>(new Map())
|
||||
|
||||
const updatePrices = useCallback(
|
||||
(key: TimePeriod, data?: PricePoint[]) => {
|
||||
setPriceMap(new Map(priceMap.set(key, data)))
|
||||
},
|
||||
[priceMap]
|
||||
)
|
||||
|
||||
// Fetch the other timePeriods after first render
|
||||
useEffect(() => {
|
||||
const fetchedTokenPrices = token?.market?.priceHistory
|
||||
updatePrices(timePeriod, filterPrices(fetchedTokenPrices))
|
||||
// Fetch all time periods except the one already populated
|
||||
if (token?.chain && token?.address) {
|
||||
fetchQuery<TokenPriceQuery>(environment, tokenPriceQuery, {
|
||||
contract: { address: token.address, chain: token.chain },
|
||||
skip1H: timePeriod === TimePeriod.HOUR && !!fetchedTokenPrices,
|
||||
skip1D: timePeriod === TimePeriod.DAY && !!fetchedTokenPrices,
|
||||
skip1W: timePeriod === TimePeriod.WEEK && !!fetchedTokenPrices,
|
||||
skip1M: timePeriod === TimePeriod.MONTH && !!fetchedTokenPrices,
|
||||
skip1Y: timePeriod === TimePeriod.YEAR && !!fetchedTokenPrices,
|
||||
}).subscribe({
|
||||
next: (data) => {
|
||||
const market = data.tokens?.[0]?.market
|
||||
if (market) {
|
||||
market.priceHistory1H && updatePrices(TimePeriod.HOUR, filterPrices(market.priceHistory1H))
|
||||
market.priceHistory1D && updatePrices(TimePeriod.DAY, filterPrices(market.priceHistory1D))
|
||||
market.priceHistory1W && updatePrices(TimePeriod.WEEK, filterPrices(market.priceHistory1W))
|
||||
market.priceHistory1M && updatePrices(TimePeriod.MONTH, filterPrices(market.priceHistory1M))
|
||||
market.priceHistory1Y && updatePrices(TimePeriod.YEAR, filterPrices(market.priceHistory1Y))
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [token?.chain, token?.address])
|
||||
|
||||
return { prices: priceMap.get(timePeriod) }
|
||||
}
|
||||
|
||||
export type SingleTokenData = NonNullable<TokenQuery$data['tokens']>[number]
|
||||
|
||||
@@ -6,19 +6,16 @@ import {
|
||||
showFavoritesAtom,
|
||||
sortAscendingAtom,
|
||||
sortMethodAtom,
|
||||
TokenSortMethod,
|
||||
} from 'components/Tokens/state'
|
||||
import { useAtomValue } from 'jotai/utils'
|
||||
import { useCallback, useEffect, useLayoutEffect, useMemo, useState } from 'react'
|
||||
import { fetchQuery, useRelayEnvironment } from 'react-relay'
|
||||
import { useEffect, useMemo, useState } from 'react'
|
||||
import { fetchQuery, useLazyLoadQuery, useRelayEnvironment } from 'react-relay'
|
||||
|
||||
import {
|
||||
Chain,
|
||||
ContractInput,
|
||||
HistoryDuration,
|
||||
TopTokens_TokensQuery,
|
||||
} from './__generated__/TopTokens_TokensQuery.graphql'
|
||||
import type { TopTokens100Query } from './__generated__/TopTokens100Query.graphql'
|
||||
import { toHistoryDuration } from './util'
|
||||
import type { Chain, TopTokens100Query } from './__generated__/TopTokens100Query.graphql'
|
||||
import { TopTokensSparklineQuery } from './__generated__/TopTokensSparklineQuery.graphql'
|
||||
import { filterPrices, PricePoint } from './Token'
|
||||
import { CHAIN_NAME_TO_CHAIN_ID, toHistoryDuration, unwrapToken } from './util'
|
||||
|
||||
const topTokens100Query = graphql`
|
||||
query TopTokens100Query($duration: HistoryDuration!, $chain: Chain!) {
|
||||
@@ -46,26 +43,34 @@ const topTokens100Query = graphql`
|
||||
currency
|
||||
}
|
||||
}
|
||||
project {
|
||||
logoUrl
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
export enum TokenSortMethod {
|
||||
PRICE = 'Price',
|
||||
PERCENT_CHANGE = 'Change',
|
||||
TOTAL_VALUE_LOCKED = 'TVL',
|
||||
VOLUME = 'Volume',
|
||||
}
|
||||
const tokenSparklineQuery = graphql`
|
||||
query TopTokensSparklineQuery($duration: HistoryDuration!, $chain: Chain!) {
|
||||
topTokens(pageSize: 100, page: 1, chain: $chain) {
|
||||
address
|
||||
market(currency: USD) {
|
||||
priceHistory(duration: $duration) {
|
||||
timestamp
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
export type PrefetchedTopToken = NonNullable<TopTokens100Query['response']['topTokens']>[number]
|
||||
|
||||
function useSortedTokens(tokens: TopTokens100Query['response']['topTokens']) {
|
||||
function useSortedTokens(tokens: NonNullable<TopTokens100Query['response']['topTokens']>) {
|
||||
const sortMethod = useAtomValue(sortMethodAtom)
|
||||
const sortAscending = useAtomValue(sortAscendingAtom)
|
||||
|
||||
return useMemo(() => {
|
||||
if (!tokens) return []
|
||||
|
||||
let tokenArray = Array.from(tokens)
|
||||
switch (sortMethod) {
|
||||
case TokenSortMethod.PRICE:
|
||||
@@ -90,7 +95,7 @@ function useSortedTokens(tokens: TopTokens100Query['response']['topTokens']) {
|
||||
}, [tokens, sortMethod, sortAscending])
|
||||
}
|
||||
|
||||
function useFilteredTokens(tokens: PrefetchedTopToken[]) {
|
||||
function useFilteredTokens(tokens: NonNullable<TopTokens100Query['response']['topTokens']>) {
|
||||
const filterString = useAtomValue(filterStringAtom)
|
||||
const favorites = useAtomValue(favoritesAtom)
|
||||
const showFavorites = useAtomValue(showFavoritesAtom)
|
||||
@@ -98,10 +103,6 @@ function useFilteredTokens(tokens: PrefetchedTopToken[]) {
|
||||
const lowercaseFilterString = useMemo(() => filterString.toLowerCase(), [filterString])
|
||||
|
||||
return useMemo(() => {
|
||||
if (!tokens) {
|
||||
return []
|
||||
}
|
||||
|
||||
let returnTokens = tokens
|
||||
if (showFavorites) {
|
||||
returnTokens = returnTokens?.filter((token) => token?.address && favorites.includes(token.address))
|
||||
@@ -121,202 +122,43 @@ function useFilteredTokens(tokens: PrefetchedTopToken[]) {
|
||||
// Number of items to render in each fetch in infinite scroll.
|
||||
export const PAGE_SIZE = 20
|
||||
|
||||
function toContractInput(token: PrefetchedTopToken) {
|
||||
return {
|
||||
address: token?.address ?? '',
|
||||
chain: token?.chain ?? 'ETHEREUM',
|
||||
}
|
||||
}
|
||||
|
||||
// Map of key: ${HistoryDuration} and value: another Map, of key:${chain} + ${address} and value: TopToken object.
|
||||
// Acts as a local cache.
|
||||
|
||||
const tokensWithPriceHistoryCache: Record<HistoryDuration, Record<string, TopToken>> = {
|
||||
DAY: {},
|
||||
HOUR: {},
|
||||
MAX: {},
|
||||
MONTH: {},
|
||||
WEEK: {},
|
||||
YEAR: {},
|
||||
'%future added value': {},
|
||||
}
|
||||
|
||||
const checkIfAllTokensCached = (duration: HistoryDuration, tokens: PrefetchedTopToken[]) => {
|
||||
let everyTokenInCache = true
|
||||
const cachedTokens: TopToken[] = []
|
||||
|
||||
const checkCache = (token: PrefetchedTopToken) => {
|
||||
const tokenCacheKey = !!token ? `${token.chain}${token.address}` : ''
|
||||
if (tokenCacheKey in tokensWithPriceHistoryCache[duration]) {
|
||||
cachedTokens.push(tokensWithPriceHistoryCache[duration][tokenCacheKey])
|
||||
return true
|
||||
} else {
|
||||
everyTokenInCache = false
|
||||
cachedTokens.length = 0
|
||||
return false
|
||||
}
|
||||
}
|
||||
tokens.every((token) => checkCache(token))
|
||||
return { everyTokenInCache, cachedTokens }
|
||||
}
|
||||
|
||||
export type TopToken = NonNullable<TopTokens_TokensQuery['response']['tokens']>[number]
|
||||
export type TopToken = NonNullable<NonNullable<TopTokens100Query['response']>['topTokens']>[number]
|
||||
export type SparklineMap = { [key: string]: PricePoint[] | undefined }
|
||||
interface UseTopTokensReturnValue {
|
||||
error: Error | undefined
|
||||
loading: boolean
|
||||
tokens: TopToken[] | undefined
|
||||
hasMore: boolean
|
||||
loadMoreTokens: () => void
|
||||
maxFetchable: number
|
||||
sparklines: SparklineMap
|
||||
}
|
||||
|
||||
export function useTopTokens(chain: Chain): UseTopTokensReturnValue {
|
||||
const chainId = CHAIN_NAME_TO_CHAIN_ID[chain]
|
||||
const duration = toHistoryDuration(useAtomValue(filterTimeAtom))
|
||||
const [loadingTokensWithoutPriceHistory, setLoadingTokensWithoutPriceHistory] = useState(true)
|
||||
const [loadingTokensWithPriceHistory, setLoadingTokensWithPriceHistory] = useState(true)
|
||||
const [tokens, setTokens] = useState<TopToken[]>()
|
||||
const [page, setPage] = useState(0)
|
||||
const [error, setError] = useState<Error | undefined>()
|
||||
const [prefetchedData, setPrefetchedData] = useState<PrefetchedTopToken[]>([])
|
||||
const prefetchedSelectedTokensWithoutPriceHistory = useFilteredTokens(useSortedTokens(prefetchedData))
|
||||
const maxFetchable = useMemo(
|
||||
() => prefetchedSelectedTokensWithoutPriceHistory.length,
|
||||
[prefetchedSelectedTokensWithoutPriceHistory]
|
||||
)
|
||||
|
||||
const hasMore = !tokens || tokens.length < prefetchedSelectedTokensWithoutPriceHistory.length
|
||||
const environment = useRelayEnvironment()
|
||||
|
||||
const loadTokensWithoutPriceHistory = useCallback(
|
||||
({ duration, chain }: { duration: HistoryDuration; chain: Chain }) => {
|
||||
fetchQuery<TopTokens100Query>(
|
||||
environment,
|
||||
topTokens100Query,
|
||||
{ duration, chain },
|
||||
{ fetchPolicy: 'store-or-network' }
|
||||
).subscribe({
|
||||
next: (data) => {
|
||||
if (data?.topTokens) setPrefetchedData([...data?.topTokens])
|
||||
},
|
||||
error: setError,
|
||||
complete: () => setLoadingTokensWithoutPriceHistory(false),
|
||||
})
|
||||
},
|
||||
[environment]
|
||||
)
|
||||
|
||||
// TopTokens should ideally be fetched with usePaginationFragment. The backend does not current support graphql cursors;
|
||||
// in the meantime, fetchQuery is used, as other relay hooks do not allow the refreshing and lazy loading we need
|
||||
const loadTokensWithPriceHistory = useCallback(
|
||||
({
|
||||
contracts,
|
||||
appendingTokens,
|
||||
page,
|
||||
tokens,
|
||||
}: {
|
||||
contracts: ContractInput[]
|
||||
appendingTokens: boolean
|
||||
page: number
|
||||
tokens?: TopToken[]
|
||||
}) => {
|
||||
fetchQuery<TopTokens_TokensQuery>(
|
||||
environment,
|
||||
tokensQuery,
|
||||
{ contracts, duration },
|
||||
{ fetchPolicy: 'store-or-network' }
|
||||
).subscribe({
|
||||
next: (data) => {
|
||||
if (data?.tokens) {
|
||||
const priceHistoryCacheForCurrentDuration = tokensWithPriceHistoryCache[duration]
|
||||
data.tokens.map((token) =>
|
||||
!!token ? (priceHistoryCacheForCurrentDuration[`${token.chain}${token.address}`] = token) : null
|
||||
)
|
||||
appendingTokens ? setTokens([...(tokens ?? []), ...data.tokens]) : setTokens([...data.tokens])
|
||||
setLoadingTokensWithPriceHistory(false)
|
||||
setPage(page + 1)
|
||||
}
|
||||
},
|
||||
error: setError,
|
||||
complete: () => setLoadingTokensWithPriceHistory(false),
|
||||
})
|
||||
},
|
||||
[duration, environment]
|
||||
)
|
||||
|
||||
const loadMoreTokens = useCallback(() => {
|
||||
setLoadingTokensWithPriceHistory(true)
|
||||
const contracts = prefetchedSelectedTokensWithoutPriceHistory
|
||||
.slice(page * PAGE_SIZE, (page + 1) * PAGE_SIZE)
|
||||
.map(toContractInput)
|
||||
loadTokensWithPriceHistory({ contracts, appendingTokens: true, page, tokens })
|
||||
}, [prefetchedSelectedTokensWithoutPriceHistory, page, loadTokensWithPriceHistory, tokens])
|
||||
|
||||
// Reset count when filters are changed
|
||||
useLayoutEffect(() => {
|
||||
const { everyTokenInCache, cachedTokens } = checkIfAllTokensCached(
|
||||
duration,
|
||||
prefetchedSelectedTokensWithoutPriceHistory
|
||||
)
|
||||
if (everyTokenInCache) {
|
||||
setTokens(cachedTokens)
|
||||
setLoadingTokensWithPriceHistory(false)
|
||||
} else {
|
||||
setLoadingTokensWithPriceHistory(true)
|
||||
setTokens([])
|
||||
const contracts = prefetchedSelectedTokensWithoutPriceHistory.slice(0, PAGE_SIZE).map(toContractInput)
|
||||
loadTokensWithPriceHistory({ contracts, appendingTokens: false, page: 0 })
|
||||
}
|
||||
}, [loadTokensWithPriceHistory, prefetchedSelectedTokensWithoutPriceHistory, duration])
|
||||
|
||||
// Trigger fetching top 100 tokens without price history on first load, and on
|
||||
// each change of chain or duration.
|
||||
const [sparklines, setSparklines] = useState<SparklineMap>({})
|
||||
useEffect(() => {
|
||||
setLoadingTokensWithoutPriceHistory(true)
|
||||
loadTokensWithoutPriceHistory({ duration, chain })
|
||||
}, [chain, duration, loadTokensWithoutPriceHistory])
|
||||
const subscription = fetchQuery<TopTokensSparklineQuery>(environment, tokenSparklineQuery, { duration, chain })
|
||||
.map((data) => ({
|
||||
topTokens: data.topTokens?.map((token) => unwrapToken(chainId, token)),
|
||||
}))
|
||||
.subscribe({
|
||||
next(data) {
|
||||
const map: SparklineMap = {}
|
||||
data.topTokens?.forEach(
|
||||
(current) => current?.address && (map[current.address] = filterPrices(current?.market?.priceHistory))
|
||||
)
|
||||
setSparklines(map)
|
||||
},
|
||||
})
|
||||
return () => subscription.unsubscribe()
|
||||
}, [chain, chainId, duration, environment])
|
||||
|
||||
return {
|
||||
error,
|
||||
loading: loadingTokensWithPriceHistory || loadingTokensWithoutPriceHistory,
|
||||
tokens,
|
||||
hasMore,
|
||||
loadMoreTokens,
|
||||
maxFetchable,
|
||||
}
|
||||
useEffect(() => {
|
||||
setSparklines({})
|
||||
}, [duration])
|
||||
|
||||
const { topTokens } = useLazyLoadQuery<TopTokens100Query>(topTokens100Query, { duration, chain })
|
||||
const mappedTokens = useMemo(() => topTokens?.map((token) => unwrapToken(chainId, token)) ?? [], [chainId, topTokens])
|
||||
const filteredTokens = useFilteredTokens(mappedTokens)
|
||||
const sortedTokens = useSortedTokens(filteredTokens)
|
||||
return useMemo(() => ({ tokens: sortedTokens, sparklines }), [sortedTokens, sparklines])
|
||||
}
|
||||
|
||||
export const tokensQuery = graphql`
|
||||
query TopTokens_TokensQuery($contracts: [ContractInput!]!, $duration: HistoryDuration!) {
|
||||
tokens(contracts: $contracts) {
|
||||
id @required(action: LOG)
|
||||
name
|
||||
chain @required(action: LOG)
|
||||
address @required(action: LOG)
|
||||
symbol
|
||||
market(currency: USD) {
|
||||
totalValueLocked {
|
||||
value
|
||||
currency
|
||||
}
|
||||
priceHistory(duration: $duration) {
|
||||
timestamp
|
||||
value
|
||||
}
|
||||
price {
|
||||
value
|
||||
currency
|
||||
}
|
||||
volume(duration: $duration) {
|
||||
value
|
||||
currency
|
||||
}
|
||||
pricePercentChange(duration: $duration) {
|
||||
currency
|
||||
value
|
||||
}
|
||||
}
|
||||
project {
|
||||
logoUrl
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { SupportedChainId } from 'constants/chains'
|
||||
import { useAppSelector } from 'state/hooks'
|
||||
import { ZERO_ADDRESS } from 'constants/misc'
|
||||
import { NATIVE_CHAIN_ID, nativeOnChain, WRAPPED_NATIVE_CURRENCY } from 'constants/tokens'
|
||||
|
||||
import { Chain, HistoryDuration } from './__generated__/TokenQuery.graphql'
|
||||
|
||||
@@ -39,9 +40,10 @@ export const CHAIN_ID_TO_BACKEND_NAME: { [key: number]: Chain } = {
|
||||
[SupportedChainId.OPTIMISM_GOERLI]: 'OPTIMISM',
|
||||
}
|
||||
|
||||
export function useGlobalChainName() {
|
||||
const chainId = useAppSelector((state) => state.application.chainId)
|
||||
return chainId && CHAIN_ID_TO_BACKEND_NAME[chainId] ? CHAIN_ID_TO_BACKEND_NAME[chainId] : 'ETHEREUM'
|
||||
export function chainIdToBackendName(chainId: number | undefined) {
|
||||
return chainId && CHAIN_ID_TO_BACKEND_NAME[chainId]
|
||||
? CHAIN_ID_TO_BACKEND_NAME[chainId]
|
||||
: CHAIN_ID_TO_BACKEND_NAME[SupportedChainId.MAINNET]
|
||||
}
|
||||
|
||||
export const URL_CHAIN_PARAM_TO_BACKEND: { [key: string]: Chain } = {
|
||||
@@ -75,7 +77,9 @@ export function isValidBackendChainName(chainName: string | undefined): chainNam
|
||||
}
|
||||
|
||||
export function getTokenDetailsURL(address: string, chainName?: Chain, chainId?: number) {
|
||||
if (chainName) {
|
||||
if (address === ZERO_ADDRESS && chainId && chainId === SupportedChainId.MAINNET) {
|
||||
return `/tokens/${CHAIN_ID_TO_BACKEND_NAME[chainId].toLowerCase()}/${NATIVE_CHAIN_ID}`
|
||||
} else if (chainName) {
|
||||
return `/tokens/${chainName.toLowerCase()}/${address}`
|
||||
} else if (chainId) {
|
||||
const chainName = CHAIN_ID_TO_BACKEND_NAME[chainId]
|
||||
@@ -84,3 +88,14 @@ export function getTokenDetailsURL(address: string, chainName?: Chain, chainId?:
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
export function unwrapToken<T extends { address: string | null } | null>(chainId: number, token: T): T {
|
||||
if (!token?.address) return token
|
||||
|
||||
const address = token.address.toLowerCase()
|
||||
const nativeAddress = WRAPPED_NATIVE_CURRENCY[chainId]?.address.toLowerCase()
|
||||
if (address !== nativeAddress) return token
|
||||
|
||||
const nativeToken = nativeOnChain(chainId)
|
||||
return { ...token, ...nativeToken, address: NATIVE_CHAIN_ID }
|
||||
}
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import { Chain } from 'graphql/data/__generated__/TokenQuery.graphql'
|
||||
import { useGlobalChainName } from 'graphql/data/util'
|
||||
import { chainIdToBackendName } from 'graphql/data/util'
|
||||
import { useEffect, useRef } from 'react'
|
||||
|
||||
export const useOnGlobalChainSwitch = (callback: (chain: Chain) => void) => {
|
||||
const globalChainName = useGlobalChainName()
|
||||
const { chainId: connectedChainId } = useWeb3React()
|
||||
const globalChainName = chainIdToBackendName(connectedChainId)
|
||||
const prevGlobalChainRef = useRef(globalChainName)
|
||||
useEffect(() => {
|
||||
if (prevGlobalChainRef.current !== globalChainName) {
|
||||
|
||||
123
src/hooks/useMultiNetworkAddressBalances.ts
Normal file
123
src/hooks/useMultiNetworkAddressBalances.ts
Normal file
@@ -0,0 +1,123 @@
|
||||
import { Currency, CurrencyAmount, NativeCurrency, Token } from '@uniswap/sdk-core'
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import { Weth } from 'abis/types'
|
||||
import WETH_ABI from 'abis/weth.json'
|
||||
import { ALL_SUPPORTED_CHAIN_IDS, isSupportedChain, SupportedChainId, TESTNET_CHAIN_IDS } from 'constants/chains'
|
||||
import { RPC_PROVIDERS } from 'constants/providers'
|
||||
import { NATIVE_CHAIN_ID, nativeOnChain, WRAPPED_NATIVE_CURRENCY } from 'constants/tokens'
|
||||
import { BaseVariant, FeatureFlag, useBaseFlag } from 'featureFlags'
|
||||
import { useCallback, useEffect, useState } from 'react'
|
||||
import { getContract } from 'utils'
|
||||
|
||||
interface useMultiNetworkAddressBalancesArgs {
|
||||
ownerAddress: string | undefined
|
||||
tokenAddress: 'NATIVE' | string | undefined
|
||||
}
|
||||
|
||||
type AddressNetworkBalanceData = Partial<
|
||||
Record<
|
||||
SupportedChainId,
|
||||
Record<string | 'NATIVE', CurrencyAmount<Token> | CurrencyAmount<NativeCurrency> | undefined>
|
||||
>
|
||||
>
|
||||
|
||||
interface handleBalanceArg {
|
||||
amount: CurrencyAmount<Currency>
|
||||
chainId: SupportedChainId
|
||||
tokenAddress: string | 'NATIVE'
|
||||
}
|
||||
|
||||
const testnetSet = new Set(TESTNET_CHAIN_IDS) as Set<SupportedChainId>
|
||||
|
||||
export function useMultiNetworkAddressBalances({ ownerAddress, tokenAddress }: useMultiNetworkAddressBalancesArgs) {
|
||||
const [data, setData] = useState<AddressNetworkBalanceData>({})
|
||||
const [error] = useState<string | null>(null)
|
||||
const [loading, setLoading] = useState(false)
|
||||
|
||||
const { chainId: connectedChainId } = useWeb3React()
|
||||
const feature_flag_multi_network_balances = useBaseFlag(FeatureFlag.multiNetworkBalances)
|
||||
|
||||
const handleBalance = useCallback(({ amount, chainId, tokenAddress }: handleBalanceArg) => {
|
||||
if (!amount.greaterThan(0) || !tokenAddress) {
|
||||
return
|
||||
}
|
||||
setData((data) => ({
|
||||
...data,
|
||||
[chainId]: {
|
||||
...(data[chainId] ?? {}),
|
||||
[tokenAddress]: amount,
|
||||
},
|
||||
}))
|
||||
}, [])
|
||||
|
||||
useEffect(() => {
|
||||
if (!ownerAddress || !tokenAddress) {
|
||||
return
|
||||
}
|
||||
const isConnecteToTestnet = connectedChainId ? TESTNET_CHAIN_IDS.includes(connectedChainId) : false
|
||||
setLoading(true)
|
||||
const isNative = tokenAddress === NATIVE_CHAIN_ID
|
||||
const promises: Promise<any>[] = []
|
||||
|
||||
const isWrappedNative = ALL_SUPPORTED_CHAIN_IDS.some(
|
||||
(chainId) => WRAPPED_NATIVE_CURRENCY[chainId]?.address.toLowerCase() === tokenAddress.toLowerCase()
|
||||
)
|
||||
|
||||
const chainsToCheck: SupportedChainId[] =
|
||||
feature_flag_multi_network_balances === BaseVariant.Enabled
|
||||
? ALL_SUPPORTED_CHAIN_IDS
|
||||
: isSupportedChain(connectedChainId)
|
||||
? [SupportedChainId.MAINNET, connectedChainId]
|
||||
: [SupportedChainId.MAINNET]
|
||||
|
||||
chainsToCheck.forEach((chainId) => {
|
||||
const isTestnet = testnetSet.has(chainId)
|
||||
if ((isConnecteToTestnet && isTestnet) || !isTestnet) {
|
||||
const provider = RPC_PROVIDERS[chainId]
|
||||
if (isWrappedNative || isNative) {
|
||||
const wrappedNative = WRAPPED_NATIVE_CURRENCY[chainId]
|
||||
if (wrappedNative) {
|
||||
promises.push(
|
||||
new Promise(async (resolve) => {
|
||||
try {
|
||||
const wrappedNativeContract = getContract(wrappedNative.address, WETH_ABI, provider) as Weth
|
||||
const balance = await wrappedNativeContract.balanceOf(ownerAddress, { blockTag: 'latest' })
|
||||
const amount = CurrencyAmount.fromRawAmount(wrappedNative, balance.toString())
|
||||
resolve(handleBalance({ amount, chainId, tokenAddress: wrappedNative.address.toLowerCase() }))
|
||||
} catch (e) {}
|
||||
})
|
||||
)
|
||||
}
|
||||
promises.push(
|
||||
new Promise(async (resolve) => {
|
||||
try {
|
||||
const balance = await provider.getBalance(ownerAddress, 'latest')
|
||||
const nativeCurrency = nativeOnChain(chainId)
|
||||
const amount = CurrencyAmount.fromRawAmount(nativeCurrency, balance.toString())
|
||||
resolve(handleBalance({ amount, chainId, tokenAddress: 'NATIVE' }))
|
||||
} catch (e) {}
|
||||
})
|
||||
)
|
||||
// todo (jordan): support multi-network ERC20 balances
|
||||
// } else {
|
||||
// promises.push(
|
||||
// new Promise(async (resolve) => {
|
||||
// try {
|
||||
// const ERC20Contract = getContract(tokenAddress, ERC20_ABI, provider) as Erc20
|
||||
// const balance = await ERC20Contract.balanceOf(ownerAddress, { blockTag: 'latest' })
|
||||
// const amount = //
|
||||
// resolve(handleBalance({ amount, chainId, tokenAddress }))
|
||||
// } catch (e) {}
|
||||
// })
|
||||
// )
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Promise.all(promises)
|
||||
.catch(() => ({}))
|
||||
.finally(() => setLoading(false))
|
||||
}, [connectedChainId, feature_flag_multi_network_balances, handleBalance, ownerAddress, tokenAddress])
|
||||
|
||||
return { data, error, loading }
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
import { CurrencyAmount, Token } from '@uniswap/sdk-core'
|
||||
import { SupportedChainId } from 'constants/chains'
|
||||
import { gql } from 'graphql-request'
|
||||
import { useEffect, useState } from 'react'
|
||||
|
||||
type NetworkTokenBalancesMap = Partial<Record<SupportedChainId, CurrencyAmount<Token>>>
|
||||
|
||||
interface useNetworkTokenBalancesResult {
|
||||
data: NetworkTokenBalancesMap | null
|
||||
error: null | string
|
||||
loading: boolean
|
||||
}
|
||||
|
||||
interface useNetworkTokenBalancesArgs {
|
||||
address: string | undefined
|
||||
}
|
||||
|
||||
export function useNetworkTokenBalances({ address }: useNetworkTokenBalancesArgs): useNetworkTokenBalancesResult {
|
||||
const [data, setData] = useState<NetworkTokenBalancesMap | null>(null)
|
||||
const [error, setError] = useState<string | null>(null)
|
||||
const [loading, setLoading] = useState(false)
|
||||
|
||||
const query = gql``
|
||||
|
||||
useEffect(() => {
|
||||
if (address) {
|
||||
const FAKE_TOKEN_NETWORK_BALANCES = {
|
||||
[SupportedChainId.ARBITRUM_ONE]: CurrencyAmount.fromRawAmount(
|
||||
new Token(SupportedChainId.ARBITRUM_ONE, address, 18),
|
||||
10e18
|
||||
),
|
||||
[SupportedChainId.MAINNET]: CurrencyAmount.fromRawAmount(
|
||||
new Token(SupportedChainId.MAINNET, address, 18),
|
||||
1e18
|
||||
),
|
||||
[SupportedChainId.RINKEBY]: CurrencyAmount.fromRawAmount(
|
||||
new Token(SupportedChainId.RINKEBY, address, 9),
|
||||
10e18
|
||||
),
|
||||
}
|
||||
|
||||
const fetchNetworkTokenBalances = async (address: string): Promise<NetworkTokenBalancesMap | void> => {
|
||||
const waitRandom = (min: number, max: number): Promise<void> =>
|
||||
new Promise((resolve) => setTimeout(resolve, min + Math.round(Math.random() * Math.max(0, max - min))))
|
||||
try {
|
||||
setLoading(true)
|
||||
setError(null)
|
||||
await waitRandom(250, 2000)
|
||||
if (Math.random() < 0.05) {
|
||||
throw new Error('fake error')
|
||||
}
|
||||
return FAKE_TOKEN_NETWORK_BALANCES
|
||||
} catch (e) {
|
||||
setError('something went wrong')
|
||||
} finally {
|
||||
setLoading(false)
|
||||
}
|
||||
}
|
||||
setLoading(true)
|
||||
setError(null)
|
||||
fetchNetworkTokenBalances(address)
|
||||
.then((data) => {
|
||||
if (data) setData(data)
|
||||
})
|
||||
.catch((e) => setError(e))
|
||||
.finally(() => setLoading(false))
|
||||
} else {
|
||||
setData(null)
|
||||
}
|
||||
}, [address, query])
|
||||
|
||||
return {
|
||||
data,
|
||||
error,
|
||||
loading,
|
||||
}
|
||||
}
|
||||
@@ -29,48 +29,47 @@ function parseStringOrBytes32(str: string | undefined, bytes32: string | undefin
|
||||
* Returns null if token is loading or null was passed.
|
||||
* Returns undefined if tokenAddress is invalid or token does not exist.
|
||||
*/
|
||||
export function useTokenFromNetwork(tokenAddress: string | null | undefined): Token | null | undefined {
|
||||
export function useTokenFromNetwork(
|
||||
tokenAddress: string | null | undefined,
|
||||
tokenChainId?: number
|
||||
): Token | null | undefined {
|
||||
const { chainId } = useWeb3React()
|
||||
const supportedChain = isSupportedChain(chainId)
|
||||
|
||||
const formattedAddress = isAddress(tokenAddress)
|
||||
|
||||
const tokenContract = useTokenContract(formattedAddress ? formattedAddress : undefined, false)
|
||||
const tokenContractBytes32 = useBytes32TokenContract(formattedAddress ? formattedAddress : undefined, false)
|
||||
|
||||
// TODO: Fix redux-multicall so that these values do not reload.
|
||||
const tokenName = useSingleCallResult(tokenContract, 'name', undefined, NEVER_RELOAD)
|
||||
const tokenNameBytes32 = useSingleCallResult(tokenContractBytes32, 'name', undefined, NEVER_RELOAD)
|
||||
const symbol = useSingleCallResult(tokenContract, 'symbol', undefined, NEVER_RELOAD)
|
||||
const symbolBytes32 = useSingleCallResult(tokenContractBytes32, 'symbol', undefined, NEVER_RELOAD)
|
||||
const decimals = useSingleCallResult(tokenContract, 'decimals', undefined, NEVER_RELOAD)
|
||||
|
||||
const isLoading = useMemo(
|
||||
() => decimals.loading || symbol.loading || tokenName.loading,
|
||||
[decimals.loading, symbol.loading, tokenName.loading]
|
||||
)
|
||||
const parsedDecimals = useMemo(() => decimals.result?.[0], [decimals.result])
|
||||
const parsedSymbol = useMemo(
|
||||
() => parseStringOrBytes32(symbol.result?.[0], symbolBytes32.result?.[0], 'UNKNOWN'),
|
||||
[symbol.result, symbolBytes32.result]
|
||||
)
|
||||
const parsedName = useMemo(
|
||||
() => parseStringOrBytes32(tokenName.result?.[0], tokenNameBytes32.result?.[0], 'Unknown Token'),
|
||||
[tokenName.result, tokenNameBytes32.result]
|
||||
)
|
||||
|
||||
return useMemo(() => {
|
||||
if (typeof tokenAddress !== 'string' || !supportedChain || !formattedAddress) return undefined
|
||||
if (decimals.loading || symbol.loading || tokenName.loading) return null
|
||||
if (decimals.result) {
|
||||
return new Token(
|
||||
chainId,
|
||||
formattedAddress,
|
||||
decimals.result[0],
|
||||
parseStringOrBytes32(symbol.result?.[0], symbolBytes32.result?.[0], 'UNKNOWN'),
|
||||
parseStringOrBytes32(tokenName.result?.[0], tokenNameBytes32.result?.[0], 'Unknown Token')
|
||||
)
|
||||
}
|
||||
return undefined
|
||||
}, [
|
||||
formattedAddress,
|
||||
chainId,
|
||||
supportedChain,
|
||||
decimals.loading,
|
||||
decimals.result,
|
||||
symbol.loading,
|
||||
symbol.result,
|
||||
symbolBytes32.result,
|
||||
tokenAddress,
|
||||
tokenName.loading,
|
||||
tokenName.result,
|
||||
tokenNameBytes32.result,
|
||||
])
|
||||
// If the token is on another chain, we cannot fetch it on-chain, and it is invalid.
|
||||
if (tokenChainId !== undefined && tokenChainId !== chainId) return undefined
|
||||
if (typeof tokenAddress !== 'string' || !isSupportedChain(chainId) || !formattedAddress) return undefined
|
||||
|
||||
if (isLoading || !chainId) return null
|
||||
if (!parsedDecimals) return undefined
|
||||
|
||||
return new Token(chainId, formattedAddress, parsedDecimals, parsedSymbol, parsedName)
|
||||
}, [tokenChainId, chainId, tokenAddress, formattedAddress, isLoading, parsedDecimals, parsedSymbol, parsedName])
|
||||
}
|
||||
|
||||
type TokenMap = { [address: string]: Token }
|
||||
@@ -105,8 +104,7 @@ export function useCurrencyFromMap(tokens: TokenMap, currencyId?: string | null)
|
||||
|
||||
const token = useTokenFromMapOrNetwork(tokens, isNative ? undefined : shorthandMatchAddress ?? currencyId)
|
||||
|
||||
const supportedChain = isSupportedChain(chainId)
|
||||
if (currencyId === null || currencyId === undefined || !supportedChain) return null
|
||||
if (currencyId === null || currencyId === undefined || !isSupportedChain(chainId)) return null
|
||||
|
||||
// this case so we use our builtin wrapped token instead of wrapped tokens on token lists
|
||||
const wrappedNative = nativeCurrency?.wrapped
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
import { Currency } from '@uniswap/sdk-core'
|
||||
import { SupportedChainId } from 'constants/chains'
|
||||
import useHttpLocations from 'hooks/useHttpLocations'
|
||||
import { useMemo } from 'react'
|
||||
import { WrappedTokenInfo } from 'state/lists/wrappedTokenInfo'
|
||||
import { isAddress } from 'utils'
|
||||
|
||||
import EthereumLogo from '../../assets/images/ethereum-logo.png'
|
||||
import CeloLogo from '../../assets/svg/celo_logo.svg'
|
||||
import MaticLogo from '../../assets/svg/matic-token-icon.svg'
|
||||
import { isCelo, nativeOnChain } from '../../constants/tokens'
|
||||
import { isCelo, NATIVE_CHAIN_ID, nativeOnChain } from '../../constants/tokens'
|
||||
|
||||
type Network = 'ethereum' | 'arbitrum' | 'optimism' | 'polygon'
|
||||
|
||||
@@ -54,15 +53,27 @@ export function getTokenLogoURI(address: string, chainId: SupportedChainId = Sup
|
||||
}
|
||||
}
|
||||
|
||||
export default function useCurrencyLogoURIs(currency?: Currency | null): string[] {
|
||||
const locations = useHttpLocations(currency instanceof WrappedTokenInfo ? currency.logoURI : undefined)
|
||||
export default function useCurrencyLogoURIs(
|
||||
currency:
|
||||
| {
|
||||
isNative?: boolean
|
||||
isToken?: boolean
|
||||
address?: string
|
||||
chainId: number
|
||||
logoURI?: string
|
||||
}
|
||||
| null
|
||||
| undefined
|
||||
): string[] {
|
||||
const locations = useHttpLocations(currency?.logoURI)
|
||||
return useMemo(() => {
|
||||
const logoURIs = [...locations]
|
||||
if (currency) {
|
||||
if (currency.isNative) {
|
||||
if (currency.isNative || currency.address === NATIVE_CHAIN_ID) {
|
||||
logoURIs.push(getNativeLogoURI(currency.chainId))
|
||||
} else if (currency.isToken) {
|
||||
const logoURI = getTokenLogoURI(currency.address, currency.chainId)
|
||||
} else if (currency.isToken || currency.address) {
|
||||
const checksummedAddress = isAddress(currency.address)
|
||||
const logoURI = checksummedAddress && getTokenLogoURI(checksummedAddress, currency.chainId)
|
||||
if (logoURI) {
|
||||
logoURIs.push(logoURI)
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: af_ZA\n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$ -"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / week"
|
||||
msgid "24H volume"
|
||||
msgstr "24H volume"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H-volume is die bedrag van die bate wat gedurende die afgelope 24 uur op Uniswap v3 verhandel is."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Kon nie tokens laai nie. Probeer asseblief weer."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Deur likiditeit by te voeg, verdien u 0,3% van alle transaksies op hierd
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Deur hierdie lys by te voeg, vertrou u implisiet dat die data korrek is. Almal kan 'n lys opstel, insluitend die skep van vals weergawes van bestaande lyste en lyste wat beweer dat hulle projekte verteenwoordig wat nie een het nie."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Deur 'n beursie te koppel, stem jy in tot Uniswap Labs se <0>Diensbepalings</0> en erken dat jy die Uniswap <1>Protokol Disclaimer</1>gelees en verstaan het."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Deur 'n beursie te koppel, stem jy in tot Uniswap Labs se <0>Diensbepalings</0> en stem in tot sy <1>Privaatheidsbeleid</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Gekanselleer"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Kontrak adres"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Gekopieer!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopieer"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Die uitvoering van hierdie voorstel sal die oproepdata in die ketting in
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Uitvoering ingedien"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Uitgebreide resultate van onaktiewe tekenlyste"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Verwagte uitset"
|
||||
@@ -913,10 +914,9 @@ msgstr "Verstreke"
|
||||
msgid "Explore"
|
||||
msgstr "Verken"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Verken Tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Verken Top Tokens op Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Ligte tema"
|
||||
msgid "Light theme"
|
||||
msgstr "Ligte tema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Skakels"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum ontvang"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Grafiekdata ontbreek"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Ontbrekings ontbreek"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Ontbrekings ontbreek"
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT-versamelings"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Netwerkfooie oorskry 50% van die ruilbedrag!"
|
||||
msgid "New Position"
|
||||
msgstr "Nuwe posisie"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Geen NFT's in nie"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Geen V2-likiditeit gevind nie."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Geen tekeninligting beskikbaar nie"
|
||||
msgid "No tokens found"
|
||||
msgstr "Geen tokens gevind nie"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Geen tokens gevind nie."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Gepoel {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Swembaddens"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Gewilde NFT-versamelings"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Gewilde tekens"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Toustaan"
|
||||
msgid "Rates"
|
||||
msgstr "Tariewe"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Lees meer"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Lees meer oor UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Lees meer oor onondersteunde bates"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Onlangse transaksies"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Onlangse soektogte"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Self"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Self Afgevaardigde"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Verkoop NFT's"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Vertoning is gekanselleer"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Toon geslote posisies"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Wys meer"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Eenvoudig"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Sommige bates is nie beskikbaar via hierdie koppelvlak nie, omdat dit mo
|
||||
msgid "Something went wrong"
|
||||
msgstr "Iets het verkeerd geloop"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sorteer en filtreer bates oor netwerke op die nuwe Tokens-bladsy."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistieke"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Stap 1. Kry UNI-V2 likiditeitstekens"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Verskaf {0} {1} en {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Ruil {0} {1} vir {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Simbool nie gevind nie"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Neem 'n 10 minute opname om ons te help om jou ervaring in die Uniswap-toepassing te verbeter."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Die transaksie kon nie gestuur word nie omdat die sperdatum verstryk het
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Daar is geen likiditeitsdata nie."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Kon nie jou saldo haal nie"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Kon nie jou {0} -saldo laai nie"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Hierdie adres is geblokkeer op die Uniswap Labs-koppelvlak omdat dit met een of meer geassosieer word"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Hierdie roete optimaliseer jou totale uitset deur gesplete roetes, veelv
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Hierdie teken verskyn nie op die aktiewe tekenlys(te) nie. Maak seker dat dit die teken is wat u wil verhandel."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Hierdie teken het nie grafiekdata nie omdat dit nie op Uniswap v3 verhandel is nie"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Hierdie teken word nie in die Uniswap Labs-toepassing ondersteun nie"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token word nie ondersteun nie"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tekens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tekens uit onaktiewe lyste. Voer spesifieke tekens hieronder in of klik op Bestuur om meer lyste te aktiveer."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Top poele"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Totale waarde gesluit"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Top tokens op Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Totale deposito"
|
||||
msgid "Total deposits"
|
||||
msgstr "Totale deposito's"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Totale waarde gesluit (TVL) is die bedrag van die bate wat tans in 'n Uniswap v3-likiditeitspoel is."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Handelsroete"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} prys:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Kyk na opgelope fooie en analise <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Bekyk en verkoop NFT's"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Kyk na lys"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Bekyk meer ontledings"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Uitsig op Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Bekyk op Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Bekyk token-analise"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Bekyk token-analise"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Bekyk transaksie op Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volume is die bedrag van die bate wat gedurende die geselekteerde tydraamwerk op Uniswap v3 verhandel is."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Stem"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "U het nog nie likiditeit in hierdie poel nie."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Jy het geen gunsteling-tokens nie"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Miskien het u u netwerkverbinding verloor, of {label} is tans af."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "U het moontlik u netwerkverbinding verloor."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "U V2-likiditeit"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Jou aktiewe V3-likiditeitsposisies sal hier verskyn."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Jou saldo's per netwerk"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Jou balans"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "U transaksies sal hier verskyn ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "U onopgeëiste UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Jou {0} -saldo"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "na gly"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Voer teken in} other {Voer tekens in}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Hierdie teken is nie geverifieer nie} other {Hierdie tekens is nie geverifieer nie}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Hierdie teken is nie geverifieer nie.} other {Hierdie tekens is nie geverifieer nie.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP tekens beskikbaar"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Stemme"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} alle saldo's"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} is dalk op die oomblik af, of jy het dalk jou netwerkverbinding verloor."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} teken brug"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ar_SA\n"
|
||||
"Language-Team: Arabic\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>دولار"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / أسبوع"
|
||||
msgid "24H volume"
|
||||
msgstr "حجم 24H"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "حجم 24 ساعة هو مقدار الأصل الذي تم تداوله على Uniswap v3 خلال الـ 24 ساعة الماضية."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,8 +240,8 @@ msgid "Amount"
|
||||
msgstr "المبلغ"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgstr "حدث خطأ أثناء تحميل الرموز. حاول مرة اخرى."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "حدث خطأ أثناء تحميل الرموز المميزة. حاول مرة اخرى."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
@@ -373,11 +373,14 @@ msgstr "من خلال إضافة السيولة ستكسب 0.3٪ من جميع
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "بإضافة هذه القائمة فإنك تثق ضمنًا بأن البيانات صحيحة. ويمكن لأي شخص أن ينشئ قائمة، بما في ذلك إنشاء صيغ مزيفة من القوائم القائمة والقوائم التي تزعم أنها تمثل مشاريع لا تملك قائمة."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "من خلال ربط المحفظة ، فإنك توافق على شروط الخدمة</0> <0>وتقر بأنك قد قرأت وفهمت إخلاء مسؤولية بروتوكول <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "من خلال ربط المحفظة ، فإنك توافق على شروط الخدمة <0>الخاصة بـ</1>Labs وتوافق على</0> سياسة الخصوصية <1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "ألغيت"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "عنوان العقد"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "نسخ!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "ينسخ"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "سيؤدي تنفيذ هذا الاقتراح إلى تفعيل Calldata
|
||||
msgid "Execution Submitted"
|
||||
msgstr "تم تقديم التنفيذ"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "النتائج الموسعة من قوائم الرموز غير النشطة"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "الناتج المتوقع"
|
||||
@@ -913,10 +914,9 @@ msgstr "منتهي الصلاحية"
|
||||
msgid "Explore"
|
||||
msgstr "يكتشف"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "اكتشف الرموز"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "استكشف أفضل الرموز على Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "مظهر خفيف"
|
||||
msgid "Light theme"
|
||||
msgstr "مظهر خفيف"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "الروابط"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "دقيقة:"
|
||||
msgid "Minimum received"
|
||||
msgstr "تلقى الحد الأدنى"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "بيانات الرسم البياني مفقودة"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "التبعيات المفقودة"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "التبعيات المفقودة"
|
||||
msgid "More"
|
||||
msgstr "المزيد"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "مجموعات NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "رسوم الشبكة تتجاوز 50٪ من مبلغ المبادلة!"
|
||||
msgid "New Position"
|
||||
msgstr "موضع جديد"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "لا توجد NFTs في"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "لم يتم العثور على سيولة V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "لا توجد معلومات رمزية متاحة"
|
||||
msgid "No tokens found"
|
||||
msgstr "لم يتم العثور على الرموز المميزة"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "لم يتم العثور على الرموز المميزة."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "مجمّع {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "حمامات السباحة"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "مجموعات NFT الشعبية"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "الرموز الشعبية"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "قائمة الانتظار"
|
||||
msgid "Rates"
|
||||
msgstr "الأسعار"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "اقرأ أكثر"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "اقرأ المزيد عن UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "اقرأ المزيد عن الأصول غير المدعومة"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "المعاملات الأخيرة"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "عمليات البحث الأخيرة"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "نفسه"
|
||||
msgid "Self Delegate"
|
||||
msgstr "تفويض ذاتي"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "بيع NFTs"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "إظهار الملغاة"
|
||||
msgid "Show closed positions"
|
||||
msgstr "إظهار المراكز المغلقة"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "أظهر المزيد"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "بسيط"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "بعض الأصول غير متوفرة من خلال هذه الواج
|
||||
msgid "Something went wrong"
|
||||
msgstr "حدث خطأ ما"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "قم بفرز الأصول وتصفيتها عبر الشبكات في صفحة الرموز الجديدة."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "احصائيات"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "الخطوة 1. احصل على رمز سيولة UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "إمداد {0} {1} و {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "مبادلة {0} {1} مقابل {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "لم يتم العثور على الرمز"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "شارك في استبيان مدته 10 دقائق لمساعدتنا على تحسين تجربتك في تطبيق Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "تعذر إرسال المعاملة لانتهاء الموعد الم
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "لا توجد بيانات سيولة."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "حدث خطأ في جلب رصيدك"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "حدث خطأ أثناء تحميل رصيدك {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "هذا العنوان محظور في واجهة Uniswap Labs لأنه مرتبط بواحد أو أكثر"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "يعمل هذا المسار على تحسين إنتاجك الإجما
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "لا يظهر هذا الرمز في قائمة (قوائم) الرموز النشطة. تأكد من أن هذا هو الرمز الذي تريد تداوله."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "لا يحتوي هذا الرمز المميز على بيانات مخطط لأنه لم يتم تداوله على Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "هذا الرمز المميز غير مدعوم في تطبيق Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "رمز غير مدعوم"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "الرموز"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "الرموز من القوائم غير النشطة. قم باستيراد الرموز المميزة المحددة أدناه أو انقر فوق \"إدارة\" لتنشيط المزيد من القوائم."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "أفضل المجموعات"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "إجمالي القيمة مؤمن"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "أعلى الرموز على Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "الإجمالي المودَع"
|
||||
msgid "Total deposits"
|
||||
msgstr "مجموع الودائع"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "إجمالي القيمة المقفلة (TVL) هو مقدار الأصل الموجود حاليًا في تجمع سيولة Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "طريق التجارة"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "سعر V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "عرض الرسوم المتراكمة والتحليلات <0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "عرض وبيع NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "عرض القائمة"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "عرض المزيد من التحليلات"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "عرض على Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "عرض على Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "عرض تحليلات الرمز المميز"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "عرض تحليلات الرمز المميز"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "عرض المعاملة على Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "الحجم هو مقدار الأصل الذي تم تداوله على Uniswap v3 خلال الإطار الزمني المحدد."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "التصويت"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "ليس لديك سيولة في هذه المجموعة حتى الآن.
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "ليس لديك رموز مفضلة"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "ربما تكون قد فقدت اتصالك بالشبكة ، أو ربما يكون الرقم {label}"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "ربما تكون قد فقدت اتصالك بالشبكة."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "سيولة V2 الخاصة بك"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "ستظهر مراكز سيولة V3 النشطة الخاصة بك هنا."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "الأرصدة الخاصة بك عن طريق الشبكة"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "رصيدك"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "المعاملات الخاصة بك ستظهر هنا..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "UNI الخاص بك بدون مطالبة"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "رصيدك {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "بعد الانزلاق السعري"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {رمز الاستيراد} other {استيراد الرموز}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {لم يتم التحقق من هذا الرمز} other {لم يتم التحقق من هذه الرموز}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {لم يتم التحقق من هذا الرمز المميز.} other {لم يتم التحقق من هذه الرموز المميزة.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} رموز UNI-V2 LP متاحة"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} أصوات"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} جميع الأرصدة"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} توكينز"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "قد يكون الرقم {label} معطلاً الآن ، أو ربما فقدت اتصالك بالشبكة."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} جسر رمزي"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ca_ES\n"
|
||||
"Language-Team: Catalan\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/> $"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / setmana"
|
||||
msgid "24H volume"
|
||||
msgstr "Volum 24 h"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "El volum de 24 hores és la quantitat de l'actiu que s'ha negociat a Uniswap v3 durant les últimes 24 hores."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Import"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "S'ha produït un error en carregar fitxes. Siusplau torna-ho a provar."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Si afegiu liquiditat, guanyareu el 0,3% de totes les operacions d’aque
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "En afegir aquesta llista, confieu implícitament que les dades són correctes. Qualsevol persona pot crear una llista, inclosa la creació de versions falses de llistes existents i llistes que afirmen representar projectes que no en tenen cap."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "En connectar una cartera, acceptes les Condicions del servei <0></0> i reconeixes que has llegit i entén l'exempció <1>responsabilitat del protocol d'</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "En connectar una cartera, accepteu les <0>Condicions del servei</0> d'Uniswap Labs i accepteu la seva <1>Política de privadesa</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Cancel·lat"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Adreça del contracte"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Copiat!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Còpia"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "L'execució d'aquesta proposta promulgarà les dades de la convocatòria
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Execució presentada"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Resultats ampliats de llistes de fitxes inactives"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Sortida esperada"
|
||||
@@ -913,10 +914,9 @@ msgstr "Caducat"
|
||||
msgid "Explore"
|
||||
msgstr "Explora"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Exploreu fitxes"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Exploreu les fitxes principals a Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema de la llum"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema lleuger"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Enllaços"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínim rebut"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Falten dades del gràfic"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Falten dependències"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Falten dependències"
|
||||
msgid "More"
|
||||
msgstr "Més"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Col·leccions NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Les tarifes de la xarxa superen el 50% de l'import de l'intercanvi!"
|
||||
msgid "New Position"
|
||||
msgstr "Nova posició"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "No hi ha NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "No s'ha trobat cap liquiditat V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "No hi ha informació de testimoni disponible"
|
||||
msgid "No tokens found"
|
||||
msgstr "No s'han trobat fitxes"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "No s'han trobat fitxes."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Agrupat {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Piscines"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Col·leccions populars de NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Fitxes populars"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Fent cua"
|
||||
msgid "Rates"
|
||||
msgstr "Tarifes"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Llegeix més"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Llegiu més sobre UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Obteniu més informació sobre els recursos no compatibles"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Transaccions recents"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Recerques recents"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Auto"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Autodelegat"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vendre NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Mostra cancel·lada"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Mostra posicions tancades"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Mostra més"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Senzill"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Alguns recursos no estan disponibles a través d’aquesta interfície p
|
||||
msgid "Something went wrong"
|
||||
msgstr "Alguna cosa ha anat malament"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Ordena i filtra els actius a través de les xarxes a la nova pàgina de fitxes."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Estadístiques"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Pas 1. Obteniu fitxes de liquiditat UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Subministrant {0} {1} i {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Intercanvi de {0} {1} per {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "No s'ha trobat el símbol"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Fes una enquesta de 10 minuts per ajudar-nos a millorar la teva experiència a l'aplicació Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "No s'ha pogut enviar la transacció perquè s'ha acabat el termini. Comp
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "No hi ha dades de liquiditat."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "S'ha produït un error en recuperar el vostre saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "S'ha produït un error en carregar el vostre saldo {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Aquesta adreça està bloquejada a la interfície d'Uniswap Labs perquè està associada amb una o més"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Aquesta ruta optimitza la producció total tenint en compte les rutes di
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Aquest testimoni no apareix a la llista de fitxes actives. Assegureu-vos que aquest sigui el testimoni que voleu canviar."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Aquest testimoni no té dades de gràfics perquè no s'ha negociat a Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Aquest testimoni no és compatible amb l'aplicació Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "El testimoni no és compatible"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Fitxes"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Fitxes de llistes inactives. Importeu fitxes específiques a continuació o feu clic a Gestiona per activar més llistes."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Grups principals"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valor total bloquejat"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Les fitxes principals d'Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total dipositat"
|
||||
msgid "Total deposits"
|
||||
msgstr "Dipòsits totals"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "El valor total bloquejat (TVL) és la quantitat de l'actiu que es troba actualment en un conjunt de liquiditat Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Ruta del comerç"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Preu:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Consulteu els honoraris i les taxes acumulades <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Veure i vendre NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Veure llista"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Veure més analítiques"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Veure a Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Veure a Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Veure l'anàlisi de testimonis"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Veure l'anàlisi de testimonis"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Veure la transacció a Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "El volum és la quantitat de l'actiu que s'ha negociat a Uniswap v3 durant el període de temps seleccionat."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Vota"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Encara no teniu liquiditat en aquest grup."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "No tens fitxes preferides"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "És possible que hàgiu perdut la connexió de xarxa o que {label} estigui inactiu en aquest moment."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "És possible que hàgiu perdut la connexió de xarxa."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "La vostra liquiditat V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Les vostres posicions de liquiditat V3 actives apareixeran aquí."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Els teus saldos per xarxa"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "El teu saldo"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Les vostres transaccions apareixeran aquí..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "La vostra UNI no reclamada"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "El teu saldo {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "després del lliscament"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Fitxa d'importació} other {Importa fitxes}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Aquest testimoni no està verificat} other {Aquestes fitxes no estan verificades}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Aquest testimoni no està verificat.} other {Aquestes fitxes no estan verificades.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} fitxes UNI-V2 LP disponibles"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} vVots"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} tots els saldos"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} fitxes"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "És possible que {label} estigui inactiva en aquest moment o que hagis perdut la connexió a la xarxa."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} pont de fitxes"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: cs_CZ\n"
|
||||
"Language-Team: Czech\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>$"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / týden"
|
||||
msgid "24H volume"
|
||||
msgstr "Hlasitost 24h"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Objem za 24 hodin je množství aktiv, které bylo zobchodováno na Uniswap v3 během posledních 24 hodin."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25 %"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Částka"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Při načítání tokenů došlo k chybě. Prosím zkuste to znovu."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Přidáním likvidity získáte 0,3 % všech obchodů na tomto páru úm
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Přidáním tohoto seznamu implicitně vyjadřujete důvěru v to, že data jsou správná. Seznam může vytvořit kdokoli, včetně vytváření falešných verzí existujících seznamů a seznamů, které prohlašují, že reprezentují projekty, které žádný seznam nemají."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Připojením peněženky souhlasíte s <0>podmínkami služby</0> a potvrzujete, že jste si přečetli a rozumíte prohlášení o vyloučení odpovědnosti za protokol <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Připojením peněženky souhlasíte s <0>Smluvními podmínkami</0> společnosti Uniswap Labs a souhlasíte s jejími <1>Zásadami ochrany osobních údajů</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Zrušeno"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Adresa smlouvy"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Zkopírováno!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "kopírovat"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Provedení tohoto návrhu uzákoní data volání v řetězci."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Provedení předloženo"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Rozšířené výsledky z neaktivních seznamů žetonů"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Očekávaný výstup"
|
||||
@@ -913,10 +914,9 @@ msgstr "Vypršela"
|
||||
msgid "Explore"
|
||||
msgstr "Prozkoumat"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Prozkoumejte tokeny"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Prozkoumejte nejlepší tokeny na Uniswapu"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Lehké téma"
|
||||
msgid "Light theme"
|
||||
msgstr "Světlé téma"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Odkazy"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Minimum:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum přijato"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Chybí data grafu"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Chybějící závislosti"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Chybějící závislosti"
|
||||
msgid "More"
|
||||
msgstr "Více"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Sbírky NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Síťové poplatky přesahují 50 % swapové částky!"
|
||||
msgid "New Position"
|
||||
msgstr "Nová pozice"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Žádné NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Nebyla nalezena likvidita V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Nejsou k dispozici žádné informace o tokenu"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nebyly nalezeny žádné tokeny"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nebyly nalezeny žádné tokeny."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Sestaveno do fondu {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Bazény"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Populární kolekce NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Populární tokeny"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Zařazení do fronty"
|
||||
msgid "Rates"
|
||||
msgstr "Sazby"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Přečtěte si více"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Přečtěte si více o UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Přečtěte si více o nepodporovaných aktivech"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Nedávné transakce"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Nedávná vyhledávání"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Sám"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Sobě delegovat"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Prodám NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Zobrazit zrušeno"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Zobrazit uzavřené pozice"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Zobrazit více"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Jednoduché"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Některá aktiva nejsou přes toto rozhraní dostupná, protože nemusí
|
||||
msgid "Something went wrong"
|
||||
msgstr "Něco je špatně"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Seřaďte a filtrujte aktiva napříč sítěmi na nové stránce Tokeny."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistiky"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Krok 1. Získejte žetony likvidity UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Dodávání {0} {1} a {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Výměna {0} {1} za {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbol nenalezen"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Udělejte si 10minutový průzkum, který nám pomůže zlepšit vaši zkušenost s aplikací Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Transakci nebylo možno odeslat, protože uplynula lhůta. Zkontrolujte,
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Neexistují žádné údaje o likviditě."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Při načítání vašeho zůstatku došlo k chybě"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Při načítání vašeho zůstatku {0} došlo k chybě"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Tato adresa je v rozhraní Uniswap Labs blokována, protože je přidružena k jedné nebo více"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Tato trasa optimalizuje váš celkový výkon zohledněním rozdělenýc
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Tento žeton není na seznamech aktivních žetonů. Ujistěte se, že toto je ten žeton, který chcete obchodovat."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Tento token nemá data grafu, protože nebyl obchodován na Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Tento token není podporován v aplikaci Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token není podporován"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Žetony"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Žetony z neaktivních seznamů. Buď importujte konkrétní žetony níže nebo kliknutím na Správa aktivujte další seznamy."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Nejvýše umístěné fondy"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Celková hodnota uzamčena"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Nejlepší tokeny na Uniswapu"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Celkem uloženo"
|
||||
msgid "Total deposits"
|
||||
msgstr "Vklady celkem"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Uzamčená celková hodnota (TVL) je množství aktiva, které je aktuálně v fondu likvidity Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Obchodní cesta"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} cena:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Zobrazit naběhlé poplatky a analýzy<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Prohlížejte a prodávejte NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Zobrazit seznam"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Zobrazit další analýzy"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Pohled na Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Zobrazit v Průzkumníku"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Zobrazit analýzu tokenů"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Zobrazit analýzu tokenů"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Zobrazit transakci v Průzkumníku"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Objem je množství aktiva, které bylo obchodováno na Uniswap v3 během zvoleného časového rámce."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Hlasovat"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "V tomto fondu zatím nemáte likviditu."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Nemáte žádné oblíbené žetony"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Možná jste ztratili připojení k síti nebo {label} může být právě mimo provoz."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Možná jste ztratili připojení k síti."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Vaše likvidita V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Zde se zobrazí vaše aktivní pozice likvidity V3."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Vaše zůstatky podle sítě"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Tvůj zůstatek"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Tady se budou zobrazovat vaše transakce..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Vaše nenárokované UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Váš zůstatek {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "po uklouznutí"
|
||||
@@ -2684,7 +2711,7 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr ""
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr ""
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} dostupných žetonů UNI-V2 LP"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} hlasů"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} všechny zůstatky"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} žetonů"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} může být právě teď mimo provoz, nebo jste možná ztratili připojení k síti."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token bridge"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: da_DK\n"
|
||||
"Language-Team: Danish\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / uge"
|
||||
msgid "24H volume"
|
||||
msgstr "24H volumen"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H volumen er mængden af aktivet, der er blevet handlet på Uniswap v3 i løbet af de seneste 24 timer."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Beløb"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Der opstod en fejl under indlæsning af tokens. Prøv igen."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Ved at tilføje likviditet optjener du 0,3 % af alle handler på dette p
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Ved at tilføje denne liste har du implicit tillid til, at dataene er korrekte. Alle kan oprette en liste, herunder skabe falske versioner af eksisterende lister og lister, der hævder at repræsentere projekter, der ikke har en."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ved at tilslutte en tegnebog accepterer du Uniswap Labs' <0>Servicevilkår</0> og anerkender, at du har læst og forstået Uniswap <1>Protocol Disclaimer</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Ved at tilslutte en tegnebog accepterer du Uniswap Labs' <0>Servicevilkår</0> og samtykker til dens <1>Privatlivspolitik</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Annulleret"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Kontrakt adresse"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Kopieret!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopi"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Eksekvering af dette forslag vil indføre opkaldsdata på kæden."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Udførelse indsendt"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Ekspanderede resultater fra inaktive token-lister"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Forventet output"
|
||||
@@ -913,10 +914,9 @@ msgstr "Udløbet"
|
||||
msgid "Explore"
|
||||
msgstr "Udforske"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Udforsk Tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Udforsk Top Tokens på Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Let tema"
|
||||
msgid "Light theme"
|
||||
msgstr "Lys tema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum modtaget"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Manglende diagramdata"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Manglende afhængigheder"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Manglende afhængigheder"
|
||||
msgid "More"
|
||||
msgstr "Mere"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT samlinger"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Netværksgebyrer overstiger 50 % af byttebeløbet!"
|
||||
msgid "New Position"
|
||||
msgstr "Ny position"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Ingen NFT'er i"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Ingen V2-likviditet fundet."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Ingen token-information tilgængelig"
|
||||
msgid "No tokens found"
|
||||
msgstr "Ingen tokens fundet"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Ingen tokens fundet."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Pulje {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Pools"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Populære NFT-samlinger"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Populære tokens"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Stå i kø"
|
||||
msgid "Rates"
|
||||
msgstr "Satser"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Læs mere"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Læs mere om UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Læs mere om ikke-understøttede aktiver"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Seneste transaktioner"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Seneste søgninger"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Selv"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Selvuddelegering"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Sælg NFT'er"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Show annulleret"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Vis lukkede positioner"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Vis mere"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Simpel"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Nogle aktiver er ikke tilgængelige via denne grænseflade, fordi de må
|
||||
msgid "Something went wrong"
|
||||
msgstr "Noget gik galt"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sorter og filtrer aktiver på tværs af netværk på den nye Tokens-side."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Trin 1. Få UNI-V2 Likviditetstokens"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Forsyning {0} {1} og {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Byt {0} {1} til {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbol ikke fundet"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Tag en 10 minutters undersøgelse for at hjælpe os med at forbedre din oplevelse i Uniswap-appen."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Transaktionen kunne ikke sendes, fordi fristen er udløbet. Kontroller,
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Der er ingen likviditetsdata."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Der opstod en fejl under hentning af din saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Der opstod en fejl under indlæsning af din {0} -saldo"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Denne adresse er blokeret på Uniswap Labs-grænsefladen, fordi den er knyttet til en eller flere"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Denne rute optimerer dit samlede output ved at overveje opdelte ruter, f
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Dette token vises ikke på den/de aktive tokenlister. Sørg for, at dette er det token, du vil handle."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Dette token har ikke diagramdata, fordi det ikke er blevet handlet på Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dette token understøttes ikke i Uniswap Labs-appen"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token understøttes ikke"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens fra inaktive lister. Importer specifikke tokens nedenfor, eller klik på Administrer for at aktivere flere lister."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Toppuljer"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Samlet værdi låst"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Top tokens på Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "I alt deponeret"
|
||||
msgid "Total deposits"
|
||||
msgstr "Indlån i alt"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Total værdi låst (TVL) er mængden af aktivet, der i øjeblikket er i en Uniswap v3-likviditetspulje."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Handelsrute"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0}-pris:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Se påløbne gebyrer og analyser<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Se og sælg NFT'er"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Vis liste"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Se flere analyser"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Se på Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Vis i Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Se token-analyse"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Se token-analyse"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Se transaktion i Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volumen er mængden af aktivet, der er blevet handlet på Uniswap v3 i den valgte tidsramme."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Stem"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Du har ikke likviditet i denne pulje endnu."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Du har ingen foretrukne tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Du har muligvis mistet din netværksforbindelse, eller {label} muligvis nede lige nu."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Du har muligvis mistet din netværksforbindelse."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Din V2-likviditet"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Dine aktive V3-likviditetspositioner vises her."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Dine saldi efter netværk"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Din balance"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Dine transaktioner vises her..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Din ikke-krævede UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Din {0} -saldo"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "efter glidning"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importer token} other {Importer tokens}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Dette token er ikke verificeret} other {Disse tokens er ikke verificeret}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Dette token er ikke bekræftet.} other {Disse tokens er ikke bekræftet.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP-tokens tilgængelige"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Stemmer"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} alle saldi"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} poletter"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} kan være nede lige nu, eller du kan have mistet din netværksforbindelse."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token bridge"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: de_DE\n"
|
||||
"Language-Team: German\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / Woche"
|
||||
msgid "24H volume"
|
||||
msgstr "24-Stunden-Lautstärke"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Das 24-Stunden-Volumen ist der Betrag des Vermögenswerts, der in den letzten 24 Stunden auf Uniswap v3 gehandelt wurde."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Betrag"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Beim Laden der Token ist ein Fehler aufgetreten. Bitte versuche es erneut."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Durch das Hinzufügen von Liquidität verdienen Sie 0,3% aller Transakti
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Durch das Hinzufügen dieser Liste vertrauen Sie implizit darauf, dass die Daten korrekt sind. Jeder kann eine Liste erstellen, einschließlich gefälschter Versionen bestehender Listen oder Listen die vorgeben Projekte zu repräsentieren, die keine Liste haben."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Durch das Verbinden einer Brieftasche stimmen Sie den <0>Nutzungsbedingungen von</0> und bestätigen, dass Sie den Haftungsausschluss für das Protokoll von <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Indem Sie ein Wallet verbinden, stimmen Sie den <0>Nutzungsbedingungen</0> von Uniswap Labs und der <1>Datenschutzrichtlinie</1>zu."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Abgesagt"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Vertragsadresse"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Kopiert!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopieren"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Durch die Ausführung dieses Vorschlags werden die Anrufdaten in der Ket
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Ausführung eingereicht"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Erweiterte Ergebnisse aus inaktiven Token-Listen"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Erwartete Ausgabe"
|
||||
@@ -913,10 +914,9 @@ msgstr "Verfallen"
|
||||
msgid "Explore"
|
||||
msgstr "Entdecken"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Entdecken Sie Token"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Entdecken Sie Top-Token auf Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Helles Design"
|
||||
msgid "Light theme"
|
||||
msgstr "Lichtthema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Verknüpfungen"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min.:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum erhalten"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Fehlende Diagrammdaten"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Fehlende Abhängigkeiten"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Fehlende Abhängigkeiten"
|
||||
msgid "More"
|
||||
msgstr "Mehr"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT-Sammlungen"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Netzwerkgebühren übersteigen 50% des Swap-Betrags!"
|
||||
msgid "New Position"
|
||||
msgstr "Neue Position"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Keine NFTs drin"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Keine V2-Liquidität gefunden."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Keine Token-Informationen verfügbar"
|
||||
msgid "No tokens found"
|
||||
msgstr "Keine Token gefunden"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Keine Token gefunden."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "{0} gepoolt:"
|
||||
msgid "Pools"
|
||||
msgstr "Schwimmbecken"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Beliebte NFT-Sammlungen"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Beliebte Token"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Warteschlange"
|
||||
msgid "Rates"
|
||||
msgstr "Preise"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Weiterlesen"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Erfahre mehr über UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Erfahre mehr über nicht unterstützte Token"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Letzte Transaktionen"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Letzte Suchen"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Selbst"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Selbstdelegierung"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "NFT verkaufen"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Show abgesagt"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Geschlossene Positionen anzeigen"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Zeig mehr"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Einfach"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Einige Assets sind über diese Benutzeroberfläche nicht verfügbar, da
|
||||
msgid "Something went wrong"
|
||||
msgstr "Etwas ist schief gelaufen"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sortieren und filtern Sie Assets netzwerkübergreifend auf der neuen Token-Seite."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistiken"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Schritt 1. Holen Sie sich UNI-V2-Liquiditätstoken"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Biete {0} {1} und {2} {3} an"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Tausche {0} {1} gegen {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbol nicht gefunden"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Nehmen Sie an einer 10-minütigen Umfrage teil, um uns dabei zu helfen, Ihre Erfahrung in der Uniswap-App zu verbessern."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Die Transaktion konnte nicht gesendet werden, da die Frist abgelaufen is
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Keine Liquiditätsdaten vorhanden."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Beim Abrufen Ihres Guthabens ist ein Fehler aufgetreten"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Beim Laden Ihres {0} -Guthabens ist ein Fehler aufgetreten"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Diese Adresse ist auf der Uniswap Labs-Schnittstelle blockiert, da sie mit einer oder mehreren verknüpft ist"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Diese Route optimiert Ihre Gesamtleistung, indem sie Split-Routen, mehre
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Dieser Token erscheint nicht in der/den aktiven Token-Liste(n). Stellen Sie sicher, dass dies der Token ist, den Sie handeln möchten."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Dieser Token hat keine Chartdaten, da er nicht auf Uniswap v3 gehandelt wurde"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dieses Token wird in der Uniswap Labs-App nicht unterstützt"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token nicht unterstützt"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Token aus inaktiven Listen. Importieren Sie unten bestimmte Token oder klicken Sie auf Verwalten, um weitere Listen zu aktivieren."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Top Pools"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Gesamtwert gesperrt"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Top-Token auf Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Gesamt deponiert"
|
||||
msgid "Total deposits"
|
||||
msgstr "Gesamteinlagen"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Der gesperrte Gesamtwert (TVL) ist der Betrag des Vermögenswerts, der sich derzeit in einem Liquiditätspool von Uniswap v3 befindet."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Handelsroute"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Preis:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Eingenommene Gebühren und Analysen anzeigen<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Anzeigen und Verkaufen von NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Liste anzeigen"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Weitere Analysen anzeigen"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Auf Etherscan ansehen"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Im Explorer anzeigen"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Anzeigen von Token-Analysen"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Anzeigen von Token-Analysen"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Transaktion im Explorer anzeigen"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Das Volumen ist der Betrag des Vermögenswerts, der während des ausgewählten Zeitrahmens auf Uniswap v3 gehandelt wurde."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Abstimmung"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Sie haben noch keine Liquidität in diesem Pool."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Sie haben keine bevorzugten Token"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Möglicherweise haben Sie Ihre Netzwerkverbindung verloren oder {label} möglicherweise gerade nicht verfügbar."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Möglicherweise haben Sie Ihre Netzwerkverbindung verloren."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Ihre V2-Liquidität"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Hier werden Ihre aktiven V3-Liquiditätspositionen angezeigt."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Ihre Salden nach Netzwerk"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Dein Kontostand"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Ihre Transaktionen werden hier erscheinen..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Deine noch nicht bezogenen UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Ihr {0} -Guthaben"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "nach dem rutschen"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Token importieren} other {Token importieren}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Dieses Token ist nicht verifiziert} other {Diese Token sind nicht verifiziert}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Dieses Token ist nicht verifiziert.} other {Diese Token werden nicht verifiziert.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP Token verfügbar"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Stimmen"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} alle Salden"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} Token"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} ist möglicherweise gerade ausgefallen oder Sie haben Ihre Netzwerkverbindung verloren."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} Token-Brücke"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: el_GR\n"
|
||||
"Language-Team: Greek\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / εβδομάδα"
|
||||
msgid "24H volume"
|
||||
msgstr "Ένταση 24 ωρών"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Ο όγκος 24 ωρών είναι το ποσό του περιουσιακού στοιχείου που έχει διαπραγματευτεί στο Uniswap v3 τις τελευταίες 24 ώρες."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Ποσό"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση των διακριτικών. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Προσθέτοντας ρευστότητα θα κερδίσετε τ
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Προσθέτοντας αυτή τη λίστα, εμπιστεύεστε έμμεσα ότι τα δεδομένα είναι σωστά. Οποιοσδήποτε μπορεί να δημιουργήσει μια λίστα, συμπεριλαμβανομένης της δημιουργίας πλαστών εκδόσεων των υφιστάμενων καταλόγων και καταλόγων που ισχυρίζονται ότι αντιπροσωπεύουν έργα που δεν έχουν ένα."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Συνδέοντας ένα πορτοφόλι, συμφωνείτε με τους Όρους Παροχής Υπηρεσιών <0></0> και αναγνωρίζετε ότι έχετε διαβάσει και κατανοήσει τη Δήλωση Αποποίησης ευθυνών Πρωτοκόλλου <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Με τη σύνδεση ενός πορτοφολιού, συμφωνείτε με τους Όρους Παροχής Υπηρεσιών <0>της Uniswap Labs</0> και συναινείτε στην <1>Πολιτική Απορρήτου</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Ακυρώθηκε"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Διεύθυνση συμβολαίου"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Αντιγράφηκε!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "αντίγραφο"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Η εκτέλεση αυτής της πρότασης θα θεσπίσ
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Η εκτέλεση υποβλήθηκε"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Εκτεταμένα αποτελέσματα από ανενεργές Λίστες Μάρκας"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Αναμενόμενη έξοδος"
|
||||
@@ -913,10 +914,9 @@ msgstr "έχει λήξει"
|
||||
msgid "Explore"
|
||||
msgstr "Εξερευνώ"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Εξερευνήστε τα Tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Εξερευνήστε Κορυφαία Tokens στο Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Ελαφρύ θέμα"
|
||||
msgid "Light theme"
|
||||
msgstr "Ελαφρύ θέμα"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Συνδέσεις"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Ελάχιστο:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Ελάχιστο λαμβανόμενο"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Λείπουν δεδομένα γραφήματος"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Λείπουν εξαρτήσεις"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Λείπουν εξαρτήσεις"
|
||||
msgid "More"
|
||||
msgstr "Περισσότερα"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Συλλογές NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Οι χρεώσεις δικτύου υπερβαίνουν το 50% τ
|
||||
msgid "New Position"
|
||||
msgstr "Νέα Θέση"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Δεν υπάρχουν NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Δεν βρέθηκε ρευστότητα V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Δεν υπάρχουν διαθέσιμες πληροφορίες συ
|
||||
msgid "No tokens found"
|
||||
msgstr "Δεν βρέθηκαν μάρκες"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Δεν βρέθηκαν μάρκες."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Συγκεντρώθηκε(αν) {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Πισίνες"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Δημοφιλείς συλλογές NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Δημοφιλή μάρκες"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Ουρά"
|
||||
msgid "Rates"
|
||||
msgstr "Τιμές"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Διαβάστε περισσότερα"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Διαβάστε περισσότερα για UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Διαβάστε περισσότερα για τα μη υποστηρ
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Πρόσφατες Συναλλαγές"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Πρόσφατες αναζητήσεις"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Αυτοπροσώπως"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Ανάθεση στον εαυτό μου"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Πουλήστε NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Εμφάνιση ακυρώθηκε"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Εμφάνιση κλειστών θέσεων"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Δείτε περισσότερα"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Απλό"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Ορισμένα περιουσιακά στοιχεία δεν είνα
|
||||
msgid "Something went wrong"
|
||||
msgstr "Κάτι πήγε στραβά"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Ταξινόμηση και φιλτράρισμα στοιχείων στα δίκτυα στη νέα σελίδα Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Στατιστικά στοιχεία"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Βήμα 1. Πάρτε τα διακριτικά ρευστότητας UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Γίνεται παροχή {0} {1} και {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Ανταλλαγή {0} {1} για {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Το σύμβολο δεν βρέθηκε"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Κάντε μια έρευνα 10 λεπτών για να μας βοηθήσετε να βελτιώσουμε την εμπειρία σας στην εφαρμογή Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Δεν ήταν δυνατή η αποστολή της συναλλαγ
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Δεν υπάρχουν δεδομένα ρευστότητας."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Παρουσιάστηκε σφάλμα κατά την ανάκτηση του υπολοίπου σας"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του υπολοίπου {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Αυτή η διεύθυνση είναι αποκλεισμένη στη διεπαφή Uniswap Labs επειδή σχετίζεται με μία ή περισσότερες"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Αυτή η διαδρομή βελτιστοποιεί τη συνολ
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Αυτή η μάρκα δεν εμφανίζεται στην(ις) ενεργή (ές) λίστα(ες). Βεβαιωθείτε ότι αυτή είναι η μάρκα που θέλετε να διαπραγματευτείτε."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Αυτό το διακριτικό δεν έχει δεδομένα γραφήματος επειδή δεν έχει διαπραγματευτεί στο Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Αυτό το διακριτικό δεν υποστηρίζεται στην εφαρμογή Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Το διακριτικό δεν υποστηρίζεται"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Μάρκες"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Μάρκες από ανενεργές λίστες. Εισαγάγετε συγκεκριμένες μάρκες παρακάτω ή κάντε κλικ στην επιλογή Διαχείριση για να ενεργοποιήσετε περισσότερες λίστες."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Κορυφαίες δεξαμενές"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Κλειδωμένη συνολική αξία"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Κορυφαία διακριτικά στο Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Σύνολο που κατατέθηκε"
|
||||
msgid "Total deposits"
|
||||
msgstr "Συνολικές καταθέσεις"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Η συνολική κλειδωμένη αξία (TVL) είναι το ποσό του περιουσιακού στοιχείου που βρίσκεται αυτήν τη στιγμή σε μια ομάδα ρευστότητας Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Εμπορική οδός"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Τιμή:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Προβολή δεδουλευμένων τελών και αναλύσεων<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Δείτε και πουλήστε NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Προβολή λίστας"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Δείτε περισσότερα αναλυτικά στοιχεία"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Θέα στο Ethercan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Προβολή στον Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Προβολή αναλυτικών στοιχείων διακριτικών"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Προβολή αναλυτικών στοιχείων διακριτι
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Προβολή συναλλαγής στον Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Όγκος είναι το ποσό του περιουσιακού στοιχείου που έχει διαπραγματευτεί στο Uniswap v3 κατά τη διάρκεια του επιλεγμένου χρονικού πλαισίου."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Ψηφοφορίες"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Δεν έχετε ακόμα ρευστότητα σε αυτή την
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Δεν έχετε αγαπημένα διακριτικά"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Μπορεί να έχετε χάσει τη σύνδεσή σας στο δίκτυο ή το {label} να είναι εκτός λειτουργίας αυτήν τη στιγμή."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Ενδέχεται να έχετε χάσει τη σύνδεση δικτύου σας."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Η ρευστότητα V2 σας"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Οι ενεργές σας θέσεις ρευστότητας V3 θα εμφανίζονται εδώ."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Τα υπόλοιπά σας ανά δίκτυο"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Η ισορροπία σου"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Οι συναλλαγές σας θα εμφανιστούν εδώ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Το αζήτητο UNI σας"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Το υπόλοιπο {0} σας"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "μετά από ολίσθηση"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Εισαγωγή διακριτικού} other {Εισαγάγετε μάρκες}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Αυτό το διακριτικό δεν έχει επαληθευτεί} other {Αυτά τα διακριτικά δεν έχουν επαληθευτεί}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Αυτό το διακριτικό δεν έχει επαληθευτεί.} other {Αυτά τα διακριτικά δεν έχουν επαληθευτεί.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} διαθέσιμες μάρκες UNI-V2 LP"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Ψήφοι"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} όλα τα υπόλοιπα"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} μάρκες"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} μπορεί να είναι απενεργοποιημένο αυτήν τη στιγμή ή μπορεί να έχετε χάσει τη σύνδεσή σας στο δίκτυο."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} συμβολική γέφυρα"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: es_ES\n"
|
||||
"Language-Team: Spanish\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / semana"
|
||||
msgid "24H volume"
|
||||
msgstr "Volumen 24H"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "El volumen de 24 horas es la cantidad del activo que se negoció en Uniswap v3 durante las últimas 24 horas."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25 %"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Ocurrió un error al cargar tokens. Inténtalo de nuevo."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Al añadir liquidez, ganará un 0,3 % de todas las operaciones con este
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Al añadir esta lista está confiando implícitamente en que los datos son correctos. Cualquiera puede crear una lista; incluso se pueden crear versiones falsas de listas existentes y listas que afirman representar proyectos que no tienen una."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Al conectar una billetera, acepta los <0>Términos de servicio</0> Uniswap Labs y reconoce que ha leído y comprendido el Descargo <1>responsabilidad del protocolo</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Al conectar una billetera, acepta los <0>Términos de servicio</0> de Uniswap Labs y acepta su <1>Política de privacidad</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Dirección del contrato"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "¡Copiado!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "La ejecución de esta propuesta promulgará los datos de llamada en la c
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Ejecución enviada"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Resultados ampliados de listas de token inactivas"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Rendimiento esperado"
|
||||
@@ -913,10 +914,9 @@ msgstr "Caducado"
|
||||
msgid "Explore"
|
||||
msgstr "Explorar"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Explora fichas"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Explore los mejores tokens en Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema de luz"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema ligero"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Enlaces"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Mín:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínimo recibido"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Faltan datos del gráfico"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependencias faltantes"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Dependencias faltantes"
|
||||
msgid "More"
|
||||
msgstr "Más"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Colecciones NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "¡Las tarifas de red superan el 50% del monto del intercambio!"
|
||||
msgid "New Position"
|
||||
msgstr "Nueva posición"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "No hay NFT en"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "No se encontró liquidez V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "No hay información de token disponible"
|
||||
msgid "No tokens found"
|
||||
msgstr "No se encontraron fichas"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "No se encontraron fichas."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Conjunto {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Quinielas"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Colecciones populares de NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Fichas populares"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "haciendo cola"
|
||||
msgid "Rates"
|
||||
msgstr "Tarifas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Lee mas"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Leer más sobre UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Leer más sobre activos no soportados"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Transacciones recientes"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Búsquedas recientes"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Auto"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Autodelegado"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vender NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Mostrar cancelado"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Mostrar posiciones cerradas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Mostrar más"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Simple"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Algunos activos no están disponibles a través de esta interfaz porque
|
||||
msgid "Something went wrong"
|
||||
msgstr "Algo salió mal"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Ordene y filtre activos a través de redes en la nueva página Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Estadísticas"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Paso 1. Obtener tokens de liquidez UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Suministrando {0} {1} y {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Intercambiando {0} {1} por {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Símbolo no encontrado"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Realice una encuesta de 10 minutos para ayudarnos a mejorar su experiencia en la aplicación Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "No se pudo enviar la transacción porque la fecha límite ha pasado. Ver
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "No hay datos de liquidez."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Hubo un error al obtener su saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Hubo un error al cargar tu saldo {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Esta dirección está bloqueada en la interfaz de Uniswap Labs porque está asociada con uno o más"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Esta ruta optimiza su producción total al considerar rutas divididas, m
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Este token no aparece en las listas de tokens activos. Asegúrese de que este sea el token que desea intercambiar."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Este token no tiene datos de gráficos porque no se ha negociado en Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Este token no es compatible con la aplicación Uniswap Labs."
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token no admitido"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens de listas inactivas. Importe tokens específicos a continuación o haga clic en Administrar para activar más listas."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Fondos comunes superiores"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valor total bloqueado"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Los mejores tokens en Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total depositado"
|
||||
msgid "Total deposits"
|
||||
msgstr "Total de depósitos"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "El valor total bloqueado (TVL) es la cantidad del activo que se encuentra actualmente en un grupo de liquidez de Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Ruta comercial"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Precio V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Ver comisiones acumuladas y sus estadísticas<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Ver y vender NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Ver lista"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Ver más análisis"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Ver en Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Ver en el explorador"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Ver análisis de tokens"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Ver análisis de tokens"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Mostrar la transacción en el explorador"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "El volumen es la cantidad del activo que se ha negociado en Uniswap v3 durante el período de tiempo seleccionado."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Votaciones"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Todavía no tiene liquidez en este fondo común."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "No tienes fichas favoritas"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Es posible que haya perdido su conexión de red o que {label} esté inactivo en este momento."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Es posible que haya perdido su conexión de red."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Su liquidez V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Sus posiciones activas de liquidez V3 aparecerán aquí."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Tus saldos por red"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Tu balance"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Sus transacciones aparecerán aquí..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Su UNI no reclamada"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Tu saldo {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "después del deslizamiento"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Ficha de importación} other {¡Importar fichas}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {¡Este token no está verificado} other {¡Estos tokens no están verificados}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Este token no está verificado.} other {Estos tokens no están verificados.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} tokens LP UNI-V2 disponibles"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Votos"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} todos los saldos"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} fichas"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} podría estar inactivo en este momento, o es posible que haya perdido su conexión de red."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token puente"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: fi_FI\n"
|
||||
"Language-Team: Finnish\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>dollaria"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / viikko"
|
||||
msgid "24H volume"
|
||||
msgstr "24 tunnin tilavuus"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24 tunnin volyymi on omaisuuden määrä, jolla on vaihdettu Uniswap v3:ssa viimeisen 24 tunnin aikana."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Määrä"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Tunnuksia ladattaessa tapahtui virhe. Yritä uudelleen."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Lisäämällä likviditeettiä ansaitset 0,3 % kaikista tämän parin ka
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Lisäämällä tämän luettelon luotat ehdottomasti siihen, että tiedot ovat oikein. Kuka tahansa voi luoda luettelon ja luoda myös väärennettyjä versioita olemassa olevista luetteloista ja luetteloista, jotka väittävät edustavansa hankkeita, joilla ei sellaista ole."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Yhdistämällä lompakon hyväksyt Uniswap Labsin <0>-palveluehdot</0> ja vahvistat lukeneesi ja ymmärtäväsi Uniswap <1>-protokollan vastuuvapauslausekkeen</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Yhdistämällä lompakon hyväksyt Uniswap Labsin <0>-palveluehdot</0> ja sen <1>tietosuojakäytännön</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Peruutettu"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Sopimusosoite"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Kopioitu!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopio"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Tämän ehdotuksen toteuttaminen ottaa käyttöön soittotiedot ketjussa
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Toteutus lähetetty"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Laajennetut tulokset passiivisista rahakeluetteloista"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Odotettu tulos"
|
||||
@@ -913,10 +914,9 @@ msgstr "Vanhentunut"
|
||||
msgid "Explore"
|
||||
msgstr "Tutkia"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Tutustu Tokeneihin"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Tutustu suosituimpiin Tokeneihin Uniswapissa"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Kevyt teema"
|
||||
msgid "Light theme"
|
||||
msgstr "Kevyt teema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Linkit"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Minimi:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimi vastaanotettu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Karttatiedot puuttuvat"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Puuttuvat riippuvuudet"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Puuttuvat riippuvuudet"
|
||||
msgid "More"
|
||||
msgstr "Lisää"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT-kokoelmat"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Verkkomaksut ylittävät 50 % vaihtosummasta!"
|
||||
msgid "New Position"
|
||||
msgstr "Uusi positio"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Ei NFT:tä sisään"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "V2-likviditeettiä ei löytynyt."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Tunnustietoja ei ole saatavilla"
|
||||
msgid "No tokens found"
|
||||
msgstr "Tunnuksia ei löytynyt"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Tunnuksia ei löytynyt."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Poolattu {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Altaat"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Suositut NFT-kokoelmat"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Suosittuja tokeneja"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Jonotus"
|
||||
msgid "Rates"
|
||||
msgstr "Kurssit"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Lue lisää"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Lue lisää UNIsta"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Lue lisää ei-tuetuista varoista"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Viimeisimmät tapahtumat"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Viimeaikaiset haut"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Itse"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Delegoi itse"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Myy NFT:t"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Esitys peruutettu"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Näytä suljetut sijainnit"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Näytä lisää"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Yksinkertainen"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Jotkut varat eivät ole käytettävissä tämän käyttöliittymän kaut
|
||||
msgid "Something went wrong"
|
||||
msgstr "Jotain meni pieleen"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Lajittele ja suodata resursseja eri verkostoissa uudella Tokens-sivulla."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Tilastot"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Vaihe 1. Hanki UNI-V2 likviditeettirahakkeita"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Toimitetaan {0} {1} ja {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Vaihdetaan {0} {1} kohteeseen {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbolia ei löydy"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Vastaa 10 minuutin kyselyyn, jonka avulla voimme parantaa käyttökokemustasi Uniswap-sovelluksessa."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Tapahtumaa ei voitu lähettää, koska määräaika on ohi. Tarkista, et
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Likviditeettitietoja ei ole."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Saldoasi noudettaessa tapahtui virhe"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "{0} -saldoasi ladattaessa tapahtui virhe"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Tämä osoite on estetty Uniswap Labs -käyttöliittymässä, koska se on liitetty yhteen tai useampaan"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Tämä reitti optimoi kokonaistehosi ottamalla huomioon jaetut reitit, u
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Tätä rahaketta ei näy aktiivisissa rahakeluetteloissa. Varmista, että tämä on rahake, jonka haluat vaihtaa."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Tällä tunnuksella ei ole kaaviotietoja, koska sillä ei ole vaihdettu Uniswap v3:ssa"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Uniswap Labs -sovellus ei tue tätä tunnusta"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Tunnusta ei tueta"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Rahakkeet"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Rahakkeita passiivisista luetteloista. Tuo tietyt rahakkeet alla tai aktivoi lisää luetteloita napsauttamalla \"Hallitse\"."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Parhaat poolit"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Kokonaisarvo lukittu"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Suosituimmat tunnukset Uniswapissa"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Talletettu yhteensä"
|
||||
msgid "Total deposits"
|
||||
msgstr "Talletuksia yhteensä"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Lukittu kokonaisarvo (TVL) on Uniswap v3 -likviditeettipoolissa tällä hetkellä olevan omaisuuden määrä."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Kauppareitti"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Hinta:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Näytä kertyneet palkkiot ja analytiikka<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Tarkastele ja myy NFT:itä"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Näytä luettelo"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Katso lisää analytiikkaa"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Näkymä Etherscanissa"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Näytä Explorerissa"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Näytä token-analytiikka"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Näytä token-analytiikka"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Näytä tapahtuma Explorerissa"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volyymi on omaisuuden määrä, jolla on vaihdettu Uniswap v3:ssa valitun ajanjakson aikana."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Äänestä"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Sinulla ei ole vielä likviditeettiä tässä poolissa."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Sinulla ei ole suosikkimerkkejä"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Olet saattanut menettää verkkoyhteytesi tai {label} voi olla katkennut juuri nyt."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Olet ehkä menettänyt verkkoyhteytesi."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Sinun V2-likviditeettisi"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Aktiiviset V3-likviditeettipositiosi näkyvät täällä."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Saldosi verkon mukaan"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Tasapainosi"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Tapahtumasi näkyvät täällä..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Lunastamattomat UNIsi"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "{0} -saldosi"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "liukumisen jälkeen"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Tuo tunnus} other {Tuo tunnuksia}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Tätä tunnusta ei ole vahvistettu} other {Näitä tunnuksia ei ole vahvistettu}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Tätä tunnusta ei ole vahvistettu.} other {Näitä tunnuksia ei ole vahvistettu.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP -rahaketta saatavilla"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} ääntä"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} kaikki saldot"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} rahaketta"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} saattaa olla poissa juuri nyt tai olet ehkä menettänyt verkkoyhteytesi."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token silta"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: fr_FR\n"
|
||||
"Language-Team: French\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>$"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / semaine"
|
||||
msgid "24H volume"
|
||||
msgstr "Volume 24h"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Le volume 24H est le montant de l'actif qui a été échangé sur Uniswap v3 au cours des dernières 24 heures."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Montant"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Une erreur s'est produite lors du chargement des jetons. Veuillez réessayer."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "En ajoutant de la liquidité, vous gagnerez 0,3 % de toutes les transact
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "En ajoutant cette liste, vous avez implicitement confiance dans le fait que les données sont correctes. N'importe qui peut créer une liste, y compris la création de fausses versions de listes et de listes existantes qui prétendent représenter des projets qui n'en ont pas."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "En connectant un portefeuille, vous acceptez les <0>Conditions d'utilisation</0> d'Uniswap Labs et consentez à sa <1>Politique de confidentialité</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Annulé"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Adresse du contrat"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Copié !"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Copie"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "L'exécution de cette proposition mettra en place les données d'appel e
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Exécution soumise"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Résultats étendus des listes de jetons inactifs"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Production attendue"
|
||||
@@ -913,10 +914,9 @@ msgstr "Expiré"
|
||||
msgid "Explore"
|
||||
msgstr "Explorer"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Explorer les jetons"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Explorez les meilleurs jetons sur Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Thème de la lumière"
|
||||
msgid "Light theme"
|
||||
msgstr "Thème lumière"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Liens"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min :"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum reçu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Données de graphique manquantes"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dépendances manquantes"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Dépendances manquantes"
|
||||
msgid "More"
|
||||
msgstr "En savoir plus"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Collections NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Les frais de réseau dépassent 50 % du montant du swap !"
|
||||
msgid "New Position"
|
||||
msgstr "Nouvelle position"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Pas de NFT dans"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Aucune liquidité V2 trouvée."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Aucune information de jeton disponible"
|
||||
msgid "No tokens found"
|
||||
msgstr "Aucun jeton trouvé"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Aucun jeton trouvé."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Récupéré {0} :"
|
||||
msgid "Pools"
|
||||
msgstr "Piscines"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Collections NFT populaires"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Jetons populaires"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "File d'attente"
|
||||
msgid "Rates"
|
||||
msgstr "Tarifs"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Lire la suite"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "En savoir plus sur UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "En savoir plus sur les actifs non pris en charge"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Transactions récentes"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Recherches récentes"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Soi-même"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Auto-délégué"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vendre des NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Afficher annulé"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Afficher les positions fermées"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Montre plus"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Simple"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Certains actifs ne sont pas disponibles via cette interface parce qu'ils
|
||||
msgid "Something went wrong"
|
||||
msgstr "Un problème est survenu"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Triez et filtrez les actifs sur les réseaux sur la nouvelle page Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistiques"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Étape 1. Obtenir des jetons de liquidité UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Approvisionnement {0} {1} et {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Échange de {0} {1} contre {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbole introuvable"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Répondez à un sondage de 10 minutes pour nous aider à améliorer votre expérience dans l'application Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "La transaction n'a pas pu être envoyée car la date limite est passée.
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Il n'y a pas de données de liquidité."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Une erreur s'est produite lors de la récupération de votre solde"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Une erreur s'est produite lors du chargement de votre solde {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Cette adresse est bloquée sur l'interface Uniswap Labs car elle est associée à un ou plusieurs"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Cet itinéraire optimise votre production totale en tenant compte des it
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ce jeton n'apparaît pas sur la ou les listes de jetons actifs. Assurez-vous qu'il s'agit du jeton que vous souhaitez échanger."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Ce jeton n'a pas de données de graphique car il n'a pas été échangé sur Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ce jeton n'est pas pris en charge dans l'application Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Jeton non pris en charge"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Jetons"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Jetons de listes inactives. Importez des jetons spécifiques ci-dessous ou cliquez sur Gérer pour activer plus de listes."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Pools du haut"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valeur totale verrouillée"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Meilleurs jetons sur Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total déposé"
|
||||
msgid "Total deposits"
|
||||
msgstr "Total des dépôts"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "La valeur totale verrouillée (TVL) est le montant de l'actif qui se trouve actuellement dans un pool de liquidités Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Route commerciale"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Prix V3 {0} :"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Voir les frais et les analyses accumulés<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Afficher et vendre des NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Voir la liste"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Voir plus d'analyses"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Voir sur Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Voir sur Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Afficher l'analyse des jetons"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Afficher l'analyse des jetons"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Voir la transaction sur Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Le volume est le montant de l'actif qui a été échangé sur Uniswap v3 pendant la période sélectionnée."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Voter"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Vous n'avez pas encore de liquidités dans ce pool."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Vous n'avez pas de jetons favoris"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Vous avez peut-être perdu votre connexion réseau, ou {label} peut-être en panne en ce moment."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Vous avez peut-être perdu votre connexion réseau."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Votre liquidité V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Vos positions de liquidité V3 actives apparaîtront ici."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Vos soldes par réseau"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Votre solde"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Vos transactions apparaîtront ici..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Votre UNI non réclamé"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Votre solde {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "après glissement"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importer le jeton } other {Importez des jetons }}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Ce jeton n'est pas vérifié} other {Ces tokens ne sont pas vérifiés}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Ce jeton n'est pas vérifié.} other {Ces jetons ne sont pas vérifiés.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} jetons UNI-V2 LP disponibles"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Votes"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} tous les soldes"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} jetons"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} est peut-être en panne en ce moment ou vous avez peut-être perdu votre connexion réseau."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} jeton pont"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: he_IL\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>דולר"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI לשבוע"
|
||||
msgid "24H volume"
|
||||
msgstr "נפח 24 שעות"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "נפח 24 שעות הוא סכום הנכס שנסחר ב-Uniswap v3 במהלך 24 השעות האחרונות."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "כמות"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "אירעה שגיאה בטעינת אסימונים. בבקשה נסה שוב."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "על ידי הוספת נזילות תרוויח 0.3% מכלל העסק
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "על ידי הוספת רשימה זו אתה סומך באופן מרומז על כך שהנתונים נכונים. כל אחד יכול ליצור רשימה, כולל יצירת גרסאות מזויפות של רשימות קיימות ורשימות המתיימרות לייצג פרויקטים שאין להם."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "על ידי חיבור ארנק, אתה מסכים לתנאי השירות</0> <0>ומאשר שקראת והבנת את כתב ויתור פרוטוקול <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "על ידי חיבור ארנק, אתה מסכים לתנאי השירות</0> של Uniswap Labs <0>ומסכים למדיניות הפרטיות <1>שלה</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "מבוטל"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "כתובת החוזה"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "מוּעֲתָק!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "עותק"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "ביצוע הצעה זו יחוקק את נתוני השיחות על ה
|
||||
msgid "Execution Submitted"
|
||||
msgstr "ביצוע הוגש"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "תוצאות מורחבות מרשימות אסימון לא פעילות"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "פלט צפוי"
|
||||
@@ -913,10 +914,9 @@ msgstr "לא בתוקף"
|
||||
msgid "Explore"
|
||||
msgstr "לַחקוֹר"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "חקור אסימונים"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "חקור את האסימונים המובילים ב-Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "נושא קל"
|
||||
msgid "Light theme"
|
||||
msgstr "נושא קליל"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "קישורים"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "דקה:"
|
||||
msgid "Minimum received"
|
||||
msgstr "מינימום שהתקבל"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "חסרים נתוני תרשים"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "חסרות תלות"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "חסרות תלות"
|
||||
msgid "More"
|
||||
msgstr "יותר"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "אוספי NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "עמלות הרשת עולות על 50% מסכום ההחלפה!"
|
||||
msgid "New Position"
|
||||
msgstr "עמדה חדשה"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "אין NFTs בפנים"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "לא נמצאה נזילות V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "אין מידע אסימון זמין"
|
||||
msgid "No tokens found"
|
||||
msgstr "לא נמצאו אסימונים"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "לא נמצאו אסימונים."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "מאוגד {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "בריכות"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "אוספי NFT פופולריים"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "אסימונים פופולריים"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "הִזדַנְבוּת"
|
||||
msgid "Rates"
|
||||
msgstr "תעריפים"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "קרא עוד"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "קרא עוד על UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "קרא עוד על נכסים שאינם נתמכים"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "תנועות אחרונות"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "חיפושים אחרונים"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "עצמי"
|
||||
msgid "Self Delegate"
|
||||
msgstr "נציג עצמי"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "למכור NFTs"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "ההצגה בוטלה"
|
||||
msgid "Show closed positions"
|
||||
msgstr "הראה עמדות סגורות"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "להראות יותר"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "פָּשׁוּט"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "חלק מהנכסים אינם זמינים דרך ממשק זה מכי
|
||||
msgid "Something went wrong"
|
||||
msgstr "משהו השתבש"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "מיין וסנן נכסים על פני רשתות בדף האסימונים החדש."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "סטטיסטיקות"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "שלב 1. קבל תווי נזילות של UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "אספקת {0} {1} ו {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "החלפת {0} {1} ב- {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "הסמל לא נמצא"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "השתתף בסקר של 10 דקות כדי לעזור לנו לשפר את החוויה שלך באפליקציית Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "לא ניתן היה לשלוח את העסקה מכיוון שהמוע
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "אין נתוני נזילות."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "אירעה שגיאה באחזור היתרה שלך"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "אירעה שגיאה בטעינת יתרת ה {0} שלך"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "כתובת זו חסומה בממשק Uniswap Labs מכיוון שהיא משויכת לאחד או יותר"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "מסלול זה מייעל את התפוקה הכוללת שלך על י
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "אסימון זה אינו מופיע ברשימות האסימונים הפעילות. ודא שזה האסימון שאתה רוצה לסחור בו."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "לטוקן זה אין נתוני תרשים מכיוון שהוא לא נסחר ב-Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "אסימון זה אינו נתמך באפליקציית Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "אסימון אינו נתמך"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "אסימונים"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "אסימונים מרשימות לא פעילות. ייבא אסימונים ספציפיים למטה או לחץ על נהל כדי להפעיל רשימות נוספות."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "בריכות מובילות"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "ערך כולל נעול"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "אסימונים מובילים ב-Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "סה\"כ מה שהופקד"
|
||||
msgid "Total deposits"
|
||||
msgstr "סך ההפקדות"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "ערך כולל נעול (TVL) הוא סכום הנכס שנמצא כעת במאגר נזילות של Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "נתיב מסחר"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "מחיר V3 {0}"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "צפו בעמלות וניתוחים צבורים <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "הצג ומכור NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "רשימת צפייה"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "הצג ניתוחים נוספים"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "מבט על אתרסקאן"
|
||||
msgid "View on Explorer"
|
||||
msgstr "צפה ב- Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "הצג ניתוח אסימון"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "הצג ניתוח אסימון"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "צפה בעסקה ב- Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "נפח הוא סכום הנכס שנסחר ב-Uniswap v3 במהלך מסגרת הזמן שנבחרה."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "הַצבָּעָה"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "עדיין אין לך נזילות במאגר זה."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "אין לך אסימונים מועדפים"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "ייתכן שאיבדת את חיבור הרשת שלך, או {label} מושבת כרגע."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "יכול להיות שאיבדת את חיבור הרשת שלך."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "נזילות ה- V2 שלך"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "עמדות הנזילות הפעילות V3 שלך יופיעו כאן."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "היתרות שלך לפי רשת"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "האיזון שלך"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "העסקאות שלך יופיעו כאן ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "ה-UNI שלך לא נדרש"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "יתרת ה {0} שלך"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "לאחר החלקה"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {ייבוא אסימון} other {ייבוא אסימונים}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {אסימון זה אינו מאומת} other {האסימונים האלה אינם מאומתים}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {האסימון הזה לא מאומת.} other {האסימונים האלה אינם מאומתים.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP אסימונים זמינים"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} הצבעות"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} כל היתרות"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} אסימונים"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "ייתכן ש {label} מושבת כרגע, או שאיבדת את החיבור לרשת."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} גשר אסימונים"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: hu_HU\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$ -"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>dollár"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / hét"
|
||||
msgid "24H volume"
|
||||
msgstr "24 órás hangerő"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "A 24 órás volumen az eszköz azon mennyisége, amellyel az elmúlt 24 órában Uniswap v3-on kereskedtek."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Összeg"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Hiba történt a tokenek betöltésekor. Kérlek próbáld újra."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Likviditás hozzáadásával az összes kereskedés 3%-át keresheti meg
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "A lista hozzáadásával hallgatólagosan megbízik az adatok helyességében. Bárki létrehozhat egy listát, beleértve a meglévő listák hamisított változatait is és olyan listákat is, amelyek azt állítják, hogy olyan projekteket képviselnek, amelyeknek nincs."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "A pénztárca csatlakoztatásával Ön elfogadja az Uniswap Labs <0>szolgáltatási feltételeit</0> és elismeri, hogy elolvasta és megértette az Uniswap <1>Protokoll Jogi nyilatkozatát</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "A pénztárca csatlakoztatásával Ön elfogadja az Uniswap Labs <0>szolgáltatási feltételeit</0> és elfogadja a <1>adatvédelmi szabályzatát</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Törölve"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Szerződés címe"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Másolva!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Másolat"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "A javaslat végrehajtása a hívási adatokat a láncon keresztül érv
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Végrehajtás benyújtva"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Az inaktív tokenlisták kibővített eredményei"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Várható kimenet"
|
||||
@@ -914,10 +915,9 @@ msgstr "Lejárt"
|
||||
msgid "Explore"
|
||||
msgstr "Fedezd fel"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Fedezze fel a Tokeneket"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Fedezze fel a legnépszerűbb tokeneket az Uniswap-on"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1131,6 +1131,10 @@ msgstr "Fény téma"
|
||||
msgid "Light theme"
|
||||
msgstr "Világos téma"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Linkek"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1263,6 +1267,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum beérkezett"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Hiányzó diagramadatok"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Hiányzó függőségek"
|
||||
@@ -1271,7 +1280,7 @@ msgstr "Hiányzó függőségek"
|
||||
msgid "More"
|
||||
msgstr "Több"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT gyűjtemények"
|
||||
|
||||
@@ -1299,6 +1308,10 @@ msgstr "A hálózati díjak meghaladják a swap összegének 50%-át!"
|
||||
msgid "New Position"
|
||||
msgstr "Új pozíció"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Nincsenek NFT-k"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "V2 likviditás nem található."
|
||||
@@ -1340,7 +1353,7 @@ msgstr "Nem áll rendelkezésre token információ"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nem található token"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nem található token."
|
||||
|
||||
@@ -1469,11 +1482,11 @@ msgstr "Összevonva {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Medencék"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Népszerű NFT gyűjtemények"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Népszerű tokenek"
|
||||
|
||||
@@ -1578,10 +1591,6 @@ msgstr "Sorban állás"
|
||||
msgid "Rates"
|
||||
msgstr "Árfolyamok"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Olvass tovább"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "További információk az UNI-ról"
|
||||
@@ -1602,7 +1611,7 @@ msgstr "További információk a nem támogatott eszközökről"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Legutóbbi tranzakciók"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Legutóbbi keresések"
|
||||
|
||||
@@ -1720,10 +1729,6 @@ msgstr "Saját"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Saját delegált"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "NFT-k eladása"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1756,6 +1761,10 @@ msgstr "Show Canceled"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Zárt pozíciók megjelenítése"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Mutass többet"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Egyszerű"
|
||||
@@ -1772,6 +1781,14 @@ msgstr "Egyes eszközök nem érhetők el ezen a felületen keresztül, mert el
|
||||
msgid "Something went wrong"
|
||||
msgstr "Valami elromlott"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Az új Tokenek oldalon rendezheti és szűrheti az eszközöket a hálózatok között."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statisztika"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "1. lépés: Szerezzen UNI-V2 likviditási tokeneket"
|
||||
@@ -1807,7 +1824,7 @@ msgstr "{0} {1} és {2} {3} kínálása"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1849,6 +1866,10 @@ msgstr "{0} {1} cseréje a következőre {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "A szimbólum nem található"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Töltsön ki egy 10 perces kérdőívet, hogy segítsen nekünk javítani az Uniswap alkalmazással kapcsolatos élményét."
|
||||
@@ -1963,14 +1984,6 @@ msgstr "A tranzakciót nem sikerült elküldeni, mert a határidő lejárt. Kér
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Nincs likviditási adat."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Hiba történt az egyenlegének lekérésekor"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Hiba történt a {0} egyenlegének betöltésekor"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Ez a cím le van tiltva az Uniswap Labs felületén, mert egy vagy több címhez van társítva"
|
||||
@@ -1995,6 +2008,10 @@ msgstr "Ez az útvonal optimalizálja a teljes teljesítményt az osztott útvon
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ez a token nem jelenik meg az aktív tokenek listájában. Győződjön meg arról, hogy ez az a token, amelyet kereskedni szeretne."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Ez a token nem tartalmaz diagramadatokat, mert nem kereskedtek vele a Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ezt a tokent nem támogatja az Uniswap Labs alkalmazás"
|
||||
@@ -2034,23 +2051,20 @@ msgid "Token not supported"
|
||||
msgstr "A token nem támogatott"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokenek"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokenek az inaktív listákról. Importáljon konkrét tokeneket az alábbiakban, vagy kattintson a Kezelés gombra további listák aktiválásához."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Legjobb poolok"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Teljes érték zárolva"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "A legjobb tokenek az Uniswap-on"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2060,6 +2074,10 @@ msgstr "Összesen letétbe helyezett"
|
||||
msgid "Total deposits"
|
||||
msgstr "Összes letét"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "A teljes zárolt érték (TVL) az eszköz azon összege, amely jelenleg egy Uniswap v3 likviditási készletben van."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Kereskedelmi útvonal"
|
||||
@@ -2264,10 +2282,18 @@ msgstr "V3 {0} ár:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Felhalmozott díjak és elemzések megtekintése<0></0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "NFT-k megtekintése és eladása"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Lista megtekintése"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "További elemzések megtekintése"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2279,10 +2305,6 @@ msgstr "Nézd meg az Etherscan webhelyen"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Megtekintés az Explorerben"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Token elemzés megtekintése"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2292,6 +2314,10 @@ msgstr "Token elemzés megtekintése"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Tranzakció megtekintése az Explorerben"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "A mennyiség annak az eszköznek az összege, amellyel az Uniswap v3-on kereskedtek a kiválasztott időkeretben."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Szavazás"
|
||||
@@ -2473,10 +2499,6 @@ msgstr "Ebben a poolban még nincs likviditása."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Nincsenek kedvenc tokenjei"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Lehet, hogy elvesztette a hálózati kapcsolatot, vagy a {label} jelenleg nem működik."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Lehet, hogy elvesztette a hálózati kapcsolatot."
|
||||
@@ -2518,9 +2540,9 @@ msgstr "Saját V2 likviditása"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Itt jelennek meg aktív V3 likviditási pozíciói."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Egyenlegei hálózatonként"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Az egyensúlyod"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2609,6 +2631,11 @@ msgstr "A tranzakciói itt jelennek meg..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Nem igényelt UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "{0} egyenleged"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "csúszás után"
|
||||
@@ -2685,8 +2712,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Import token} other {Import tokenek}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Ez a token nincs ellenőrizve} other {Ezek a tokenek nincsenek ellenőrizve}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Ez a token nincs ellenőrizve.} other {Ezek a tokenek nincsenek ellenőrizve.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2759,10 +2786,6 @@ msgstr "{0} UNI-V2 LP token érhető el"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} szavazat"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} minden egyenleg"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2841,6 +2864,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} token"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "Lehet, hogy a {label} jelenleg nem működik, vagy megszakadt a hálózati kapcsolat."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token híd"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: id_ID\n"
|
||||
"Language-Team: Indonesian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / minggu"
|
||||
msgid "24H volume"
|
||||
msgstr "volume 24 jam"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Volume 24H adalah jumlah aset yang telah diperdagangkan di Uniswap v3 selama 24 jam terakhir."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Jumlah"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Terjadi kesalahan saat memuat token. Silakan coba lagi."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Dengan menambahkan likuiditas, Anda akan mendapatkan 0,3% dari semua per
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Dengan menambahkan daftar ini, Anda secara implisit mempercayai bahwa datanya benar. Siapa pun dapat membuat daftar, termasuk membuat versi palsu dari daftar yang sudah ada dan daftar yang mengklaim mewakili proyek yang tidak memiliki proyek apapun."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Dengan menghubungkan dompet, Anda menyetujui <0>Syarat Layanan</0> Uniswap Labs' dan mengakui bahwa Anda telah membaca dan memahami <1>Penafian Protokol</1> Uniswap."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Dengan menghubungkan dompet, Anda menyetujui <0>Persyaratan Layanan</0> Uniswap Labs dan menyetujui <1>Kebijakan Privasi</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Dibatalkan"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Alamat kontrak"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Disalin!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Salinan"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Menjalankan proposal ini akan memberlakukan calldata on-chain."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Eksekusi Dikirim"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Hasil yang diperluas dari Daftar Token yang tidak aktif"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Keluaran yang diharapkan"
|
||||
@@ -913,10 +914,9 @@ msgstr "kadaluarsa"
|
||||
msgid "Explore"
|
||||
msgstr "Mengeksplorasi"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Jelajahi Token"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Jelajahi Token Teratas di Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema Terang"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema ringan"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Tautan"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum diterima"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Data bagan tidak ada"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Ketergantungan yang hilang"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Ketergantungan yang hilang"
|
||||
msgid "More"
|
||||
msgstr "Lebih"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Koleksi NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Biaya jaringan melebihi 50% dari jumlah swap!"
|
||||
msgid "New Position"
|
||||
msgstr "Posisi baru"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Tidak ada NFT di"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Tidak ditemukan Likuiditas V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Tidak ada informasi token yang tersedia"
|
||||
msgid "No tokens found"
|
||||
msgstr "Tidak ada token yang ditemukan"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Tidak ada token yang ditemukan."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Dikumpulkan {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Kolam renang"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Koleksi NFT populer"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Token populer"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "mengantri"
|
||||
msgid "Rates"
|
||||
msgstr "Tarif"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Baca lebih lajut"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Baca selengkapnya tentang UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Baca selengkapnya tentang aset yang tidak didukung"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Transaksi Terkini"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Pencarian terkini"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Sendiri"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Delegasikan Sendiri"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Jual NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Tampilkan Dibatalkan"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Tampilkan posisi tertutup"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Menampilkan lebih banyak"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Sederhana"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Sejumlah aset tidak tersedia melalui antarmuka ini karena mereka mungkin
|
||||
msgid "Something went wrong"
|
||||
msgstr "Ada yang salah"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Urutkan dan filter aset di seluruh jaringan di halaman Token baru."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Langkah 1. Dapatkan token Likuiditas UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Memasok {0} {1} dan {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Menukar {0} {1} untuk {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Simbol tidak ditemukan"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Ikuti survei 10 menit untuk membantu kami meningkatkan pengalaman Anda di aplikasi Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Transaksi tidak dapat dikirim karena tenggat waktu telah berlalu. Harap
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Tidak ada data likuiditas."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Terjadi kesalahan saat mengambil saldo Anda"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Terjadi kesalahan saat memuat saldo {0} Anda"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Alamat ini diblokir di antarmuka Uniswap Labs karena terkait dengan satu atau lebih"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Rute ini mengoptimalkan total output Anda dengan mempertimbangkan rute t
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Token ini tidak muncul di daftar token yang aktif. Pastikan ini adalah token yang ingin Anda perdagangkan."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Token ini tidak memiliki data grafik karena belum diperdagangkan di Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Token ini tidak didukung di aplikasi Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token tidak didukung"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Token dari daftar tidak aktif. Impor token tertentu di bawah atau klik Kelola untuk mengaktifkan lebih banyak daftar."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Kolam atas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Nilai Total Terkunci"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Token teratas di Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total deposit"
|
||||
msgid "Total deposits"
|
||||
msgstr "Jumlah simpanan"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Nilai total terkunci (TVL) adalah jumlah aset yang saat ini berada dalam kumpulan likuiditas Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Rute Perdagangan"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Harga:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Lihat biaya yang masih harus dibayar dan analitik<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Lihat dan jual NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Lihat daftar"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Lihat lebih banyak analitik"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Lihat di Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Lihat di Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Lihat analitik token"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Lihat analitik token"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Lihat transaksi di Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volume adalah jumlah aset yang telah diperdagangkan di Uniswap v3 selama jangka waktu yang dipilih."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Beri Suara"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Anda belum memiliki likuiditas di pool ini."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Anda tidak memiliki token favorit"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Anda mungkin kehilangan koneksi jaringan Anda, atau {label} mungkin sedang down sekarang."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Anda mungkin kehilangan koneksi jaringan."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Likuiditas V2 Anda"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Posisi likuiditas V3 aktif Anda akan muncul di sini."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Saldo Anda berdasarkan jaringan"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Keseimbanganmu"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Transaksi Anda akan muncul di sini ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "UNI Anda yang belum diklaim"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Saldo {0} Anda"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "setelah tergelincir"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Impor tanda} other {Impor token}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Token ini tidak diverifikasi} other {Token ini tidak diverifikasi}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Token ini tidak diverifikasi.} other {Token ini tidak diverifikasi.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} token LP UNI-V2 yang tersedia"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Suara"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} semua saldo"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} token"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} mungkin sedang down sekarang, atau Anda mungkin kehilangan koneksi jaringan Anda."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token jembatan"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: it_IT\n"
|
||||
"Language-Team: Italian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / settimana"
|
||||
msgid "24H volume"
|
||||
msgstr "Volume 24 ore"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Il volume 24 ore è l'importo dell'asset che è stato scambiato su Uniswap v3 nelle ultime 24 ore."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Importo"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Si è verificato un errore durante il caricamento dei token. Per favore riprova."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Aggiungendo liquidità guadagnerai lo 0,3% di tutte le operazioni su que
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Aggiungendo questa lista si suppone implicitamente che i dati siano corretti. Chiunque può creare una lista, tra cui la creazione di versioni false di liste esistenti ed elenchi che affermano di rappresentare progetti che non ne hanno uno."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Collegando un portafoglio, accetti <0>Termini di servizio</0> di Uniswap Labs e riconosci di aver letto e compreso l'Esonero di responsabilità del protocollo <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Collegando un portafoglio, accetti i <0>Termini di servizio</0> di Uniswap Labs e acconsenti alla sua <1>Informativa sulla privacy</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Annullato"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Indirizzo del contratto"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Copiato!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "copia"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "L'esecuzione di questa proposta attiverà i calldata on-chain."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Esecuzione inviata"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Risultati espansi dalle liste Token inattive"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Uscita prevista"
|
||||
@@ -913,10 +914,9 @@ msgstr "Scaduto"
|
||||
msgid "Explore"
|
||||
msgstr "Esplorare"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Esplora i token"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Esplora i migliori token su Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema chiaro"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema leggero"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Collegamenti"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimo ricevuto"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Dati del grafico mancanti"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dipendenze mancanti"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Dipendenze mancanti"
|
||||
msgid "More"
|
||||
msgstr "Altro"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Collezioni NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Le commissioni di rete superano il 50% dell'importo dello swap!"
|
||||
msgid "New Position"
|
||||
msgstr "Nuova Posizione"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Nessun NFT in"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Nessuna liquidità V2 trovata."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Nessuna informazione sul token disponibile"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nessun token trovato"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nessun token trovato."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Raggruppato {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Piscine"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Collezioni NFT popolari"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Token popolari"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "In coda"
|
||||
msgid "Rates"
|
||||
msgstr "Tariffe"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Leggi di più"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Leggi tutto su UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Per saperne di più sugli asset non supportati"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Transazioni Recenti"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Ricerche recenti"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Se stesso"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Auto-Delegato"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vendi NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Mostra annullata"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Mostra posizioni chiuse"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Mostra di più"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Semplice"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Alcuni asset non sono disponibili attraverso questa interfaccia perché
|
||||
msgid "Something went wrong"
|
||||
msgstr "Qualcosa è andato storto"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Ordina e filtra le risorse tra le reti nella nuova pagina Token."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistiche"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Passo 1. Ottieni i token di liquidità UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Fornitura di {0} {1} e {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Scambio di {0} {1} per {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Simbolo non trovato"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Partecipa a un sondaggio di 10 minuti per aiutarci a migliorare la tua esperienza nell'app Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Impossibile inviare la transazione perché il termine è scaduto. Si pre
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Non ci sono dati sulla liquidità."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Si è verificato un errore durante il recupero del saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Si è verificato un errore durante il caricamento del saldo {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Questo indirizzo è bloccato sull'interfaccia di Uniswap Labs perché è associato a uno o più"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Questo percorso ottimizza la tua produzione totale considerando percorsi
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Questo token non viene visualizzato negli elenchi di token attivi. Assicurati che questo sia il token che vuoi scambiare."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Questo token non ha dati grafici perché non è stato scambiato su Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Questo token non è supportato nell'app Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token non supportato"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Token da elenchi inattivi. Importa token specifici di seguito o fai clic su Gestisci per attivare più elenchi."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "I pool migliori"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valore totale bloccato"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "I migliori token su Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Totale depositato"
|
||||
msgid "Total deposits"
|
||||
msgstr "Depositi totali"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Il valore totale bloccato (TVL) è l'importo dell'asset che si trova attualmente in un pool di liquidità Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Rotta commerciale"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Prezzo {0} V3:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Visualizza le commissioni e le analisi accumulate<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Visualizza e vendi NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Visualizza elenco"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Visualizza più analisi"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Visualizza su Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Visualizza su Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Visualizza l'analisi dei token"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Visualizza l'analisi dei token"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Visualizza transazione su Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Il volume è l'importo dell'asset che è stato scambiato su Uniswap v3 durante il periodo di tempo selezionato."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "VOTAZIONI"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Non hai ancora liquidità in questo pool."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Non hai token preferiti"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Potresti aver perso la connessione di rete o {label} potrebbe essere inattivo in questo momento."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Potresti aver perso la connessione di rete."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "La tua liquidità V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Le tue posizioni di liquidità V3 attive appariranno qui."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "I tuoi saldi per rete"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Il tuo bilancio"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Le tue transazioni appariranno qui..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "La tua UNI non richiesta"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Il tuo saldo {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "dopo lo slittamento"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importa token} other {Importa token}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Questo token non è verificato} other {Questi token non sono verificati}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Questo token non è verificato.} other {Questi token non sono verificati.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} token LP UNI-V2 disponibili"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Voti"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} tutti i saldi"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} gettoni"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} potrebbe essere inattivo in questo momento o potresti aver perso la connessione di rete."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token bridge"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ja_JP\n"
|
||||
"Language-Team: Japanese\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / 週"
|
||||
msgid "24H volume"
|
||||
msgstr "24時間ボリューム"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24 時間ボリュームは、過去 24 時間に Uniswap v3 で取引された資産の量です。"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "数量"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "トークンの読み込み中にエラーが発生しました。もう一度やり直してください。"
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "流動性を追加することで、このペアのすべての取引で
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "このリストを追加することで、データが正しいことを暗黙的に信頼することになります。 誰でもリストを作成することができます。そのため、既存リストの偽のバージョンや、実体のないプロジェクトを掲載するリストが作成されている可能性があります。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "ウォレットを接続することにより、あなたはUniswap Labsのに <0>サービス規約</0>に同意し、あなたがUniswap<1>プロトコル免責事項</1>を読み、理解していることに同意するものとします。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "ウォレットを接続することにより、Uniswap Labs の <0>利用規約</0> に同意し、 <1>プライバシー ポリシー</1>に同意したことになります。"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "キャンセル"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "契約住所"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "コピーしました!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "コピー"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "この提案を実行すると、calldataがチェーン上で成立し
|
||||
msgid "Execution Submitted"
|
||||
msgstr "実行が送信されました"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "あなたが利用していないトークンリストからの検索結果"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "予想される結果"
|
||||
@@ -913,10 +914,9 @@ msgstr "期限切れ"
|
||||
msgid "Explore"
|
||||
msgstr "探検"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "トークンを調べる"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Uniswap のトップ トークンを調べる"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "ライトテーマ"
|
||||
msgid "Light theme"
|
||||
msgstr "ライトテーマ"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "リンク"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "最小:"
|
||||
msgid "Minimum received"
|
||||
msgstr "最小購入数"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "グラフ データがありません"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "依存関係がありません"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "依存関係がありません"
|
||||
msgid "More"
|
||||
msgstr "もっと見る"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFTコレクション"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "ネットワーク料金がスワップ金額の50%を超えていま
|
||||
msgid "New Position"
|
||||
msgstr "新しいポジション"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "NFTはありません"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "V2の流動性が見つかりません。"
|
||||
@@ -1339,7 +1352,7 @@ msgstr "トークン情報がありません"
|
||||
msgid "No tokens found"
|
||||
msgstr "トークンが見つかりません"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "トークンが見つかりません。"
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "プールしている {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "プール"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "人気の NFT コレクション"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "人気のトークン"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "キューイング"
|
||||
msgid "Rates"
|
||||
msgstr "レート"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "続きを読む"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "UNIについてもっと見る"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "サポートされていないアセットの詳細を見る"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "最近の取引"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "最近の検索"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "自分"
|
||||
msgid "Self Delegate"
|
||||
msgstr "自己委任する"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "NFTを売る"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "キャンセルされた表示"
|
||||
msgid "Show closed positions"
|
||||
msgstr "決済したポジションを表示"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "もっと見せる"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "シンプル"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "一部のトークンは、スマートコントラクトでうまく動
|
||||
msgid "Something went wrong"
|
||||
msgstr "何らかの問題が発生しました"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "新しいトークン ページで、ネットワーク全体でアセットを並べ替えてフィルタリングします。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "統計"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "ステップ1. UNI-V2流動性トークンを入手"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "{0} {1} と {2} {3} を追加中"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "{0} {1} を {2} {3} にスワップ中"
|
||||
msgid "Symbol not found"
|
||||
msgstr "シンボルが見つかりません"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Uniswapアプリのエクスペリエンスを向上させるために、10分間のアンケートに回答してください。"
|
||||
@@ -1962,14 +1983,6 @@ msgstr "期限が過ぎたため、取引を送信できませんでした。期
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "流動性データはありません。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "残高の取得中にエラーが発生しました"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "残高 {0} の読み込み中にエラーが発生しました"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "このアドレスは、1つ以上に関連付けられているため、UniswapLabsインターフェイスでブロックされています。"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "このルートは、分割ルート、複数のホップ、および各
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "このトークンはご利用中のトークンリストに存在しません。取引したいトークンであることを確認してください。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "このトークンは Uniswap v3 で取引されていないため、チャート データがありません"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "このトークンは、Uniswap Labsアプリでは対応しておりません"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "トークンは対応していません"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "トークン"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "あなたが利用していないリストにあるトークンです。以下の特定のトークンをインポートするか、[管理] をクリックして他のリストを有効にしてください。"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "上位のプール"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "ロックされた合計値"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "ユニスワップの上位トークン"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "合計預入数量"
|
||||
msgid "Total deposits"
|
||||
msgstr "合計預入額"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Total value locked (TVL) は、現在 Uniswap v3 流動性プールにある資産の金額です。"
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "取引ルート"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3での {0} 価格:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "発生した報酬と分析を見る<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "NFTの閲覧と販売"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "リストを表示"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "他の分析を表示"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Etherscanで見る"
|
||||
msgid "View on Explorer"
|
||||
msgstr "エクスプローラーで見る"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "トークン分析を表示する"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "トークン分析を表示する"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "エクスプローラーで取引を表示する"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "出来高は、選択した期間中に Uniswap v3 で取引された資産の量です。"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "投票"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "プールにはまだ流動性がありません。"
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "お気に入りのトークンはありません"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "ネットワーク接続が失われたか、 {label} がダウンしている可能性があります。"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "ネットワーク接続が失われた可能性があります。"
|
||||
@@ -2517,9 +2539,9 @@ msgstr "V2の流動性"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "V3の流動性ポジションはこちらに表示されます。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "ネットワーク別の残高"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "あなたのバランス"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "取引履歴がここに表示されます..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "未請求のUNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "あなたの {0} 残高"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "スリッページ後"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {トークンをインポートしてください} other {トークンをインポートしてください}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {このトークンは検証されていません} other {これらのトークンは検証されていません}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {このトークンは検証されていません。} other {これらのトークンは検証されていません。}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LPトークンが利用可能"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} の投票"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} すべての残高"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} トークン"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} が現在ダウンしているか、ネットワーク接続が失われている可能性があります。"
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} トークンブリッジ"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ko_KR\n"
|
||||
"Language-Team: Korean\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / 주"
|
||||
msgid "24H volume"
|
||||
msgstr "24시간 볼륨"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H 거래량은 지난 24시간 동안 Uniswap v3에서 거래된 자산의 양입니다."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25 %"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "금액"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "토큰을 로드하는 중에 오류가 발생했습니다. 다시 시도해 주세요."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "유동성을 추가하면 풀 쉐어에 비례하여이 쌍에 대한
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "이 목록을 추가하면 데이터가 정확하다는 것을 암시적으로 신뢰하게 됩니다. 기존 목록의 가짜 버전 및 목록이 없는 프로젝트를 나타낸다고 주장하는 목록을 만드는 등 누구나 목록을 만들 수 있습니다."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "지갑을 연결하면 Uniswap Labs의 <0>서비스 약관</0>을 읽고 이해하여 <1>프로토콜 면책 조항</1>을 인정하는 것입니다."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "지갑을 연결하면 Uniswap Labs의 <0>서비스 약관</0> 및 <1>개인 정보 보호 정책</1>에 동의하는 것입니다."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "취소됨"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "계약 주소"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "복사되었습니다!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "복사"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "이 제안을 실행하면 호출 데이터가 온체인에 적용됩니
|
||||
msgid "Execution Submitted"
|
||||
msgstr "실행 제출됨"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "비활성 토큰 목록에서 확장된 결과"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "예상 출력"
|
||||
@@ -913,10 +914,9 @@ msgstr "만료 됨"
|
||||
msgid "Explore"
|
||||
msgstr "탐구하다"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "토큰 탐색"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Uniswap의 인기 토큰 살펴보기"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "밝은 테마"
|
||||
msgid "Light theme"
|
||||
msgstr "밝은 테마"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "연결"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "최소 :"
|
||||
msgid "Minimum received"
|
||||
msgstr "최소 수령됨"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "차트 데이터 누락"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "누락된 종속성"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "누락된 종속성"
|
||||
msgid "More"
|
||||
msgstr "추가"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT 컬렉션"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "네트워크 수수료가 스왑 금액의 50%를 초과합니다!"
|
||||
msgid "New Position"
|
||||
msgstr "새로운 위치"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "NFT 없음"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "V2 유동성이 없습니다."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "사용 가능한 토큰 정보가 없습니다."
|
||||
msgid "No tokens found"
|
||||
msgstr "토큰을 찾을 수 없습니다."
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "토큰을 찾을 수 없습니다."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "{0} 풀링 됨:"
|
||||
msgid "Pools"
|
||||
msgstr "수영장"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "인기 있는 NFT 컬렉션"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "인기있는 토큰"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "큐잉"
|
||||
msgid "Rates"
|
||||
msgstr "요율"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "더 읽기"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "UNI에 대해 자세히 알아보기"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "지원되지 않는 자산에 대해 자세히 알아보기"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "최근 거래"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "최근 검색"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "본인"
|
||||
msgid "Self Delegate"
|
||||
msgstr "셀프 위임"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "NFT 판매"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "취소된 표시"
|
||||
msgid "Show closed positions"
|
||||
msgstr "마감된 위치 표시"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "자세히보기"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "단순한"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "일부 자산은 스마트 계약과 잘 작동하지 않거나 법적
|
||||
msgid "Something went wrong"
|
||||
msgstr "문제가 발생했습니다"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "새 토큰 페이지에서 네트워크 전반에 걸쳐 자산을 정렬하고 필터링합니다."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "통계"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "1 단계. UNI-V2 유동성 토큰 받기"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "{0} {1} 및 {2} {3} 공급 중"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "{0} {1} 을 {2} {3}(으)로 스왑"
|
||||
msgid "Symbol not found"
|
||||
msgstr "기호를 찾을 수 없음"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Uniswap 앱 경험을 개선하는 데 도움이 되는 10분 설문조사에 참여하세요."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "기한이 지났기 때문에 거래를 보낼 수 없습니다. 거래
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "유동성 데이터가 없습니다."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "잔액을 가져오는 중에 오류가 발생했습니다."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "{0} 잔액을 로드하는 중에 오류가 발생했습니다."
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "이 주소는 하나 이상의 주소와 연결되어 있기 때문에 Uniswap Labs 인터페이스에서 차단됩니다."
|
||||
@@ -1994,6 +2007,10 @@ msgstr "이 경로는 분할 경로, 다중 홉 및 각 단계의 가스 비용
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "이 토큰은 활성 토큰 목록에 표시되지 않습니다. 이것이 거래하려는 토큰인지 확인하십시오."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "이 토큰은 Uniswap v3에서 거래되지 않았기 때문에 차트 데이터가 없습니다."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "이 토큰은 Uniswap Labs 앱에서 지원되지 않습니다."
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "지원되지 않는 토큰"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "토큰"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "비활성 목록의 토큰. 아래에서 특정 토큰을 가져 오거나 관리를 클릭하여 더 많은 목록을 활성화하십시오."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "상위 풀"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "잠긴 총 가치"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Uniswap의 인기 토큰"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "총 입금"
|
||||
msgid "Total deposits"
|
||||
msgstr "총 입금"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "잠긴 총 가치(TVL)는 현재 Uniswap v3 유동성 풀에 있는 자산의 양입니다."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "무역로"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} 가격 :"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "발생한 수수료 및 분석 보기 <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "NFT 조회 및 판매"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "목록 보기"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "더 많은 분석 보기"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Etherscan에서보기"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Explorer에서 보기"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "토큰 분석 보기"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "토큰 분석 보기"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Explorer에서 거래 보기"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "거래량은 선택한 기간 동안 Uniswap v3에서 거래된 자산의 양입니다."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "투표"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "아직 이 풀에 유동성이 없습니다."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "즐겨찾는 토큰이 없습니다."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "네트워크 연결이 끊어졌거나 {label} 이 다운되었을 수 있습니다."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "네트워크 연결이 끊어졌을 수 있습니다."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "V2 유동성"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "활성 V3 유동성 위치가 여기에 표시됩니다."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "네트워크별 잔액"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "잔액"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "거래 내역이 여기에 표시됩니다 ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "내 미 청구 UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "당신의 {0} 잔액"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "미끄러진 후"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {토큰 가져오기} other {토큰 가져오기}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {이 토큰은 확인되지 않았습니다} other {이 토큰은 확인되지 않았습니다}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {이 토큰은 확인되지 않았습니다.} other {이러한 토큰은 확인되지 않습니다.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP 토큰 사용 가능"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} 투표"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} 모든 잔액"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} 토큰"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} 이 지금 다운되었거나 네트워크 연결이 끊어졌을 수 있습니다."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} 토큰 브릿지"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Language-Team: Dutch\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / week"
|
||||
msgid "24H volume"
|
||||
msgstr "24H-volume"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H-volume is het bedrag van het activum dat de afgelopen 24 uur is verhandeld op Uniswap v3."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Er is een fout opgetreden bij het laden van tokens. Probeer het opnieuw."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Door liquiditeit toe te voegen, verdient u 0,3% van alle transacties op
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Door deze lijst toe te voegen, vertrouwt u er impliciet op dat de gegevens juist zijn. Iedereen kan een lijst maken, inclusief het maken van nepversies van bestaande lijsten en lijsten die beweren projecten te vertegenwoordigen die er geen hebben."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Door een portemonnee te koppelen, gaat u akkoord met de <0>Servicevoorwaarden</0> van Uniswap Labs en bevestigt u dat u de Disclaimer</1><1>protocol hebt gelezen en begrepen."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Door een portemonnee te koppelen, gaat u akkoord met de <0>Servicevoorwaarden</0> van Uniswap Labs en stemt u in met het <1>Privacybeleid</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Geannuleerd"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Contractadres"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "gekopieerd!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopiëren"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Als u dit voorstel uitvoert, worden de oproepgegevens on-chain uitgevoer
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Uitvoering verzonden"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Uitgebreide resultaten van inactieve tokenlijsten"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Verwachte resultaten"
|
||||
@@ -913,10 +914,9 @@ msgstr "Niet meer geldig"
|
||||
msgid "Explore"
|
||||
msgstr "Ontdekken"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Tokens verkennen"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Ontdek toptokens op Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Licht thema"
|
||||
msgid "Light theme"
|
||||
msgstr "Licht thema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum ontvangen"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Kaartgegevens ontbreken"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Ontbrekende afhankelijkheden"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Ontbrekende afhankelijkheden"
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT-verzamelingen"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "De netwerkkosten bedragen meer dan 50% van het swapbedrag!"
|
||||
msgid "New Position"
|
||||
msgstr "Nieuwe positie"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Geen NFT's in"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Geen V2-liquiditeit gevonden."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Geen tokeninformatie beschikbaar"
|
||||
msgid "No tokens found"
|
||||
msgstr "Geen tokens gevonden"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Geen tokens gevonden."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Gepoold {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Zwembaden"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Populaire NFT-collecties"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Populaire tokens"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "In de rij staan"
|
||||
msgid "Rates"
|
||||
msgstr "Tarieven"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Lees verder"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Lees meer over UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Lees meer over niet-ondersteunde middelen"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Recente transacties"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Recente zoekopdrachten"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Eigen"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Zelf gedelegeerd"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "NFT's verkopen"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Toon Geannuleerd"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Toon gesloten posities"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Laat meer zien"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Eenvoudig"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Sommige activa zijn niet beschikbaar via deze interface omdat ze mogelij
|
||||
msgid "Something went wrong"
|
||||
msgstr "Er is iets fout gegaan"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sorteer en filter activa over netwerken op de nieuwe Tokens-pagina."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistieken"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Stap 1. Verkrijg UNI-V2 liquiditeitstokens"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "{0} {1} en {2} {3} aanbieden"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "{0} {1} ruilen voor {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbool niet gevonden"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Vul een enquête van 10 minuten in om ons te helpen uw ervaring in de Uniswap-app te verbeteren."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "De transactie kan niet worden verzonden omdat de deadline is verstreken.
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Er zijn geen liquiditeitsgegevens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Er is een fout opgetreden bij het ophalen van uw saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Er is een fout opgetreden bij het laden van uw {0} -saldo"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Dit adres is geblokkeerd op de Uniswap Labs-interface omdat het is gekoppeld aan een of meer"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Deze route optimaliseert uw totale output door rekening te houden met ge
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Deze token wordt niet weergegeven op de actieve tokenlijst(en). Zorg ervoor dat dit de token is die u wilt verhandelen."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Dit token heeft geen grafiekgegevens omdat het niet is verhandeld op Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dit token wordt niet ondersteund in de Uniswap Labs-app"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token niet ondersteund"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens van inactieve lijsten. Importeer specifieke tokens hieronder of klik op Beheren om meer lijsten te activeren."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Top pools"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Totale waarde vergrendeld"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Toptokens op Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Totaal gestort"
|
||||
msgid "Total deposits"
|
||||
msgstr "Totale stortingen"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Totale waarde vergrendeld (TVL) is het bedrag van het actief dat zich momenteel in een Uniswap v3-liquiditeitspool bevindt."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Handelsroute"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} prijs:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Opgebouwde vergoedingen en analytics bekijken<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "NFT's bekijken en verkopen"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Lijst bekijken"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Bekijk meer analyses"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Bekijk op Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Weergeven op Verkenner"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Tokenanalyses bekijken"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Tokenanalyses bekijken"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Bekijk transactie op Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volume is het bedrag van het activum dat is verhandeld op Uniswap v3 gedurende het geselecteerde tijdsbestek."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Stem"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "U heeft nog geen liquiditeit in deze pool."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Je hebt geen favoriete tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Mogelijk bent u uw netwerkverbinding kwijtgeraakt of is {label} momenteel mogelijk niet beschikbaar."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Mogelijk bent u uw netwerkverbinding kwijtgeraakt."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Uw V2-liquiditeit"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Uw actieve V3-liquiditeitsposities verschijnen hier."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Uw saldi per netwerk"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Je balans"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Uw transacties zullen hier verschijnen..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Uw niet-opgeëiste UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Uw {0} -saldo"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "na slippen"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Token importeren} other {Tokens importeren}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Dit token is niet geverifieerd} other {Deze tokens zijn niet geverifieerd}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Dit token is niet geverifieerd.} other {Deze tokens zijn niet geverifieerd.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP tokens beschikbaar"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} stemmen"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} alle saldi"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} is op dit moment mogelijk niet beschikbaar of u bent uw netwerkverbinding kwijtgeraakt."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} tokenbrug"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: no_NO\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / uke"
|
||||
msgid "24H volume"
|
||||
msgstr "24H volum"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H volum er mengden av eiendelen som har blitt handlet på Uniswap v3 i løpet av de siste 24 timene."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25 %"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Beløp"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Det oppsto en feil ved lasting av tokens. Vær så snill, prøv på nytt."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Ved å tilføre likviditet tjener du 0,3 % av alle handler på dette par
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Ved å legge til denne listen stoler du implisitt på at dataene er riktige. Hvem som helst kan opprette en liste, inkludere å lage falske versjoner av eksisterende lister og lister som påstår å representere prosjekter som ikke har et."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ved å koble til en lommebok godtar du Uniswap Labs' <0>vilkår for bruk</0> og erkjenner at du har lest og forstått Uniswap <1>Protocol Ansvarsfraskrivelse</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Ved å koble til en lommebok godtar du Uniswap Labs' <0>vilkår for bruk</0> og samtykker til <1>personvernregler</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Avlyst"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Kontraktsadresse"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Kopiert!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopiere"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Utførelse av dette forslaget vil innføre anropsdataene i kjeden."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Utførelse innsendt"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Ekspanderte resultater fra inaktive pollettlister"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Forventet utgang"
|
||||
@@ -913,10 +914,9 @@ msgstr "Utløpt"
|
||||
msgid "Explore"
|
||||
msgstr "Utforske"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Utforsk tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Utforsk Top Tokens på Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Lys tema"
|
||||
msgid "Light theme"
|
||||
msgstr "Lett tema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Lenker"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum mottatt"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Manglende kartdata"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Mangler avhengigheter"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Mangler avhengigheter"
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT-samlinger"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Nettverksavgifter overstiger 50 % av byttebeløpet!"
|
||||
msgid "New Position"
|
||||
msgstr "Ny posisjon"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Ingen NFT-er inne"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Ingen V2-likviditet funnet."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Ingen tokeninformasjon tilgjengelig"
|
||||
msgid "No tokens found"
|
||||
msgstr "Ingen tokens funnet"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Ingen tokens funnet."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Pott {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Bassenger"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Populære NFT-samlinger"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Populære tokens"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "I kø"
|
||||
msgid "Rates"
|
||||
msgstr "Priser"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Les mer"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Les mer om UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Les mer om ikke-støttede ressurser"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Nylige transaksjoner"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Nylige søk"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Selv"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Selvdelegat"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Selg NFT-er"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Vis avbrutt"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Vis lukkede stillinger"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Vis mer"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Enkel"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Noen aktiva er ikke tilgjengelige gjennom dette grensesnittet fordi de k
|
||||
msgid "Something went wrong"
|
||||
msgstr "Noe gikk galt"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sorter og filtrer eiendeler på tvers av nettverk på den nye Tokens-siden."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistikk"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Trinn 1. Få UNI-V2-likviditetspolletter"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Leverer {0} {1} og {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Bytte {0} {1} mot {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbol ikke funnet"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Ta en 10-minutters spørreundersøkelse for å hjelpe oss med å forbedre opplevelsen din i Uniswap-appen."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Transaksjonen kunne ikke sendes fordi fristen er passert. Kontroller at
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Det er ingen likviditetsdata."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Det oppsto en feil under henting av saldoen din"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Det oppsto en feil ved innlasting av {0} -saldoen din"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Denne adressen er blokkert på Uniswap Labs-grensesnittet fordi den er knyttet til en eller flere"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Denne ruten optimaliserer din totale produksjon ved å vurdere delte rut
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Denne polletten vises ikke på den / de aktive pollettlistene. Forsikre deg om at dette er polletten du vil handle."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Dette tokenet har ikke diagramdata fordi det ikke har blitt handlet på Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dette tokenet støttes ikke i Uniswap Labs-appen"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token støttes ikke"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Polletter"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Polletter fra inaktive lister. Importer spesifikke polleter nedenfor, eller klikk på administrer for å aktivere flere lister."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Ledende potter"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Total verdi låst"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Topp tokens på Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Totalt avsatt"
|
||||
msgid "Total deposits"
|
||||
msgstr "Totale innskudd"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Total verdi låst (TVL) er mengden av eiendelen som for øyeblikket er i en Uniswap v3-likviditetspool."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Handelsrute"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} pris:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Vis påløpte gebyrer og analyser<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Se og selg NFT-er"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Se liste"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Se flere analyser"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Utsikt på Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Se på Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Se tokenanalyse"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Se tokenanalyse"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Se transaksjonen på Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volum er mengden av eiendelen som har blitt omsatt på Uniswap v3 i løpet av den valgte tidsrammen."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Stem"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Du har ikke likviditet i denne potten ennå."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Du har ingen favorittsymboler"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Du kan ha mistet nettverkstilkoblingen, eller {label} kan være nede akkurat nå."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Du kan ha mistet nettverkstilkoblingen."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Din V2-likviditet"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Dine aktive V3-likviditetsposisjoner vil vises her."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Dine saldoer etter nettverk"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Din balanse"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Dine transaksjoner vil vises her ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Ditt uavklarte UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Din {0} -saldo"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "etter utglidning"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importer token} other {Importer tokens}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Dette tokenet er ikke bekreftet} other {Disse tokenene er ikke verifisert}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Dette tokenet er ikke bekreftet.} other {Disse tokenene er ikke verifisert.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP-pollettenes tilgjengelig"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Stemmer"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} alle saldoer"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} poletter"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} kan være nede akkurat nå, eller du kan ha mistet nettverkstilkoblingen."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token bridge"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: pl_PL\n"
|
||||
"Language-Team: Polish\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>zł"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / tydzień"
|
||||
msgid "24H volume"
|
||||
msgstr "Objętość 24h"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Wolumen 24H to kwota aktywów, którymi handlowano na Uniswap v3 w ciągu ostatnich 24 godzin."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Kwota"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Podczas ładowania tokenów wystąpił błąd. Proszę spróbuj ponownie."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Dodając płynność zarabiasz 0,3% wszystkich transakcji na tej parze p
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Dodając tę listę domyślnie ufasz że dane są poprawne. Każdy może utworzyć listę, w tym tworzyć fałszywe wersje istniejących list i list, które twierdzą, że reprezentują projekty, które ich nie posiadają."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Podłączając portfel, zgadzasz się na Warunki korzystania z usługi <0></0> i potwierdzasz, że przeczytałeś i zrozumiałeś Zastrzeżenie dotyczące protokołu <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Podłączając portfel, zgadzasz się na <0>Warunki korzystania z usługi</0> i wyrażasz zgodę na jej <1>Politykę prywatności</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Anulowany"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Adres umowy"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Skopiowane!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopiuj"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Wykonanie tej propozycji spowoduje wprowadzenie danych połączeń w ła
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Wykonanie przesłane"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Rozszerzone wyniki z nieaktywnych list tokenów"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Oczekiwany wynik"
|
||||
@@ -913,10 +914,9 @@ msgstr "Przedawniony"
|
||||
msgid "Explore"
|
||||
msgstr "Badać"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Eksploruj tokeny"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Przeglądaj Top tokeny w Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Jasny motyw"
|
||||
msgid "Light theme"
|
||||
msgstr "Lekki motyw"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Spinki do mankietów"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Otrzymane minimum"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Brakujące dane wykresu"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Brakujące zależności"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Brakujące zależności"
|
||||
msgid "More"
|
||||
msgstr "Więcej"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Kolekcje NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Opłaty sieciowe przekraczają 50% kwoty swapu!"
|
||||
msgid "New Position"
|
||||
msgstr "Nowa pozycja"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Brak transakcji NFT w"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Nie znaleziono płynności V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Brak dostępnych informacji o tokenie"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nie znaleziono tokenów"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nie znaleziono tokenów."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Połączone {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Pule"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Popularne kolekcje NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Popularne tokeny"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Kolejkowanie"
|
||||
msgid "Rates"
|
||||
msgstr "Stawki"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Czytaj więcej"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Dowiedz się więcej o UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Przeczytaj więcej o nieobsługiwanych zasobach"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Ostatnie transakcje"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Ostatnie wyszukiwania"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Samego siebie"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Własny Delegat"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Sprzedawaj NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Pokaż anulowane"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Pokaż zamknięte pozycje"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Pokaż więcej"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Prosty"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Niektóre aktywa nie są dostępne za pośrednictwem tego interfejsu, po
|
||||
msgid "Something went wrong"
|
||||
msgstr "Coś poszło nie tak"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sortuj i filtruj zasoby w sieciach na nowej stronie Tokeny."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statystyki"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Krok 1. Pobierz tokeny płynności UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Dostarczanie {0} {1} i {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Zamiana {0} {1} na {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Nie znaleziono symbolu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Wypełnij 10-minutową ankietę, aby pomóc nam ulepszyć korzystanie z aplikacji Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Nie można wysłać transakcji, ponieważ upłynął termin. Sprawdź, c
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Brak danych o płynności."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Podczas pobierania salda wystąpił błąd"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Podczas wczytywania salda {0} wystąpił błąd"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Ten adres jest zablokowany w interfejsie Uniswap Labs, ponieważ jest powiązany z co najmniej jednym adresem"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Ta trasa optymalizuje całkowitą wydajność, biorąc pod uwagę podzie
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ten token nie pojawia się na aktywnych listach tokenów. Upewnij się, że jest to token, którym chcesz handlować."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Ten token nie zawiera danych wykresu, ponieważ nie był przedmiotem obrotu na Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ten token nie jest obsługiwany w aplikacji Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token nie jest obsługiwany"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokeny"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokeny z nieaktywnych list. Zaimportuj określone tokeny poniżej lub kliknij Zarządzaj, aby aktywować więcej list."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Najlepsze pule"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Całkowita wartość zablokowana"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Najlepsze tokeny na Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Całkowita wpłata"
|
||||
msgid "Total deposits"
|
||||
msgstr "Depozyty ogółem"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Całkowita zablokowana wartość (TVL) to kwota aktywów znajdujących się obecnie w puli płynności Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Szlak handlowy"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Cena V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Zobacz naliczone opłaty i analizy<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Przeglądaj i sprzedawaj NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Zobacz listę"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Zobacz więcej analiz"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Zobacz na Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Zobacz w Eksploratorze"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Wyświetl analitykę tokena"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Wyświetl analitykę tokena"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Zobacz transakcję na Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Wolumen to ilość aktywów, którymi handlowano na Uniswap v3 w wybranym przedziale czasowym."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Głosować"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Nie masz jeszcze płynności w tej puli."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Nie masz ulubionych tokenów"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Być może utraciłeś połączenie sieciowe lub {label} może być teraz wyłączone."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Możliwe, że utraciłeś połączenie sieciowe."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Twoja płynność V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Twoje aktywne pozycje płynności V3 pojawią się tutaj."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Twoje salda według sieci"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Twój balans"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Twoje transakcje pojawią się tutaj..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Twój nieodebrany UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Twoje saldo {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "po poślizgu"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importuj token} other {Importuj tokeny}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Ten token nie jest zweryfikowany} other {Te tokeny nie są zweryfikowane}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Ten token nie jest zweryfikowany.} other {Te tokeny nie są zweryfikowane.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} dostępnych tokenów LP UNI-V2"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Głosów"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} wszystkie salda"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} tokenów"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} może być w tej chwili nieaktywne lub możesz utracić połączenie sieciowe."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} mostek tokenów"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI/semana"
|
||||
msgid "24H volume"
|
||||
msgstr "Volume 24H"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "O volume 24H é o valor do ativo que foi negociado no Uniswap v3 durante as últimas 24 horas."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Ocorreu um erro ao carregar os tokens. Por favor, tente novamente."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Ao acrescentar liquidez, você ganha 0,3% de todas as negociações com
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Ao acrescentar esta lista, você está implicitamente confirmando que considera os dados corretos. Qualquer pessoa pode criar uma lista, incluindo versões falsas de listas existente e listas que alegam representar projetos que não existem."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ao conectar uma carteira, você concorda com os Termos de Serviço</0> <0>e reconhece que leu e entendeu a Isenção <1>Responsabilidade do Protocolo</1>do Uniswap 2."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Ao conectar uma carteira, você concorda com os <0>Termos de Serviço</0> da Uniswap Labs e concorda com sua <1>Política de Privacidade</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Endereço do contrato"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Copiado!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "cópia de"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "A execução desta proposta decretará o calldata on-chain."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Execução enviada"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Resultados ampliados de Listas de Tokens inativas"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Saída Esperada"
|
||||
@@ -913,10 +914,9 @@ msgstr "Expirado"
|
||||
msgid "Explore"
|
||||
msgstr "Explorar"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Explorar tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Explore os principais tokens no Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema claro"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema claro"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Mín:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínimo recebido"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Dados do gráfico ausentes"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependências ausentes"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Dependências ausentes"
|
||||
msgid "More"
|
||||
msgstr "Mais"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Coleções NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "As taxas de rede excedem 50% do valor da troca!"
|
||||
msgid "New Position"
|
||||
msgstr "Nova Posição"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Nenhum NFT em"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Nenhuma liquidez V2 encontrada."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Nenhuma informação de token disponível"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nenhum token encontrado"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nenhum token encontrado."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Em lote {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Piscinas"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Coleções populares de NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Fichas populares"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Fila"
|
||||
msgid "Rates"
|
||||
msgstr "Taxas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Consulte Mais informação"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Leia mais sobre as UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Ler mais sobre ativos incompatíveis"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Operações recentes"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Pesquisas recentes"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Auto"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Autodelegação"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vender NFTs"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Mostrar cancelado"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Mostrar posições fechadas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Mostre mais"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Simples"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Alguns ativos não estão disponíveis nesta interface, porque não func
|
||||
msgid "Something went wrong"
|
||||
msgstr "Ocorreu um erro"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Classifique e filtre ativos nas redes na nova página Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Etapa 1. Obtenha Tokens de Liquidez UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Fornecendo {0} {1} e {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Convertendo {0} {1} para {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Símbolo não encontrado"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Responda a uma pesquisa de 10 minutos para nos ajudar a melhorar sua experiência no aplicativo Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "A operação não pode ser enviada após a data-limite. Confirme se a da
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Não há dados de liquidez."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Ocorreu um erro ao buscar seu saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Ocorreu um erro ao carregar seu saldo {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Este endereço está bloqueado na interface do Uniswap Labs porque está associado a um ou mais"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Essa rota otimiza sua produção total, considerando rotas divididas, v
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Este token não figura na(s) lista(s) de tokens ativos. Certifique-se de que este é o tokens que você pretende negociar."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Este token não possui dados de gráfico porque não foi negociado no Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Este token não é compatível com o aplicativo Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token não suportado"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens de listas inativas. Importe tokens especificados abaixo ou clique em Gerenciar para ativar mais listas."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Lotes superiores"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valor total bloqueado"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Principais tokens no Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total depositado"
|
||||
msgid "Total deposits"
|
||||
msgstr "Total dos depósitos"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "O valor total bloqueado (TVL) é o valor do ativo que está atualmente em um pool de liquidez Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Rota comercial"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Preço V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Visualizar análises e taxas acumuladas<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Visualize e venda NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Ver a lista"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Veja mais análises"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Ver no Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Visualizar no Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Ver análise de token"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Ver análise de token"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Visualizar a operação no Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volume é o valor do ativo que foi negociado no Uniswap v3 durante o período de tempo selecionado."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Votar"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Você ainda não tem liquidez neste lote."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Você não tem tokens favoritos"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Você pode ter perdido sua conexão de rede ou {label} pode estar desativado agora."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Você pode ter perdido sua conexão de rede."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Sua liquidez V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Suas posições de liquidez V3 ativas aparecerão aqui."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Seus saldos por rede"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Seu balanço"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Suas operações serão exibidas aqui..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Suas UNI não resgatadas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Seu saldo {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "após derrapagem"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importar token} other {Importar fichas}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Este token não foi verificado} other {Esses tokens não são verificados}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Este token não foi verificado.} other {Esses tokens não são verificados.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} tokens UNI-V2 LP disponíveis"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} votos"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} todos os saldos"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} pode estar inativo agora ou você pode ter perdido sua conexão de rede."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "Ponte {label}"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / semana"
|
||||
msgid "24H volume"
|
||||
msgstr "Volume 24H"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "O volume 24H é o valor do ativo que foi negociado no Uniswap v3 durante as últimas 24 horas."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Quantia"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Ocorreu um erro ao carregar os tokens. Por favor, tente novamente."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Ao adicionar liquidez, você ganhará 0,3% de todas as negociações nes
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Ao adicionar esta lista, está a confiar implicitamente que os dados estão corretos. Qualquer pessoa pode criar uma lista, incluindo a criação de versões falsas de listas existentes e listas que afirmam representar projetos que não possuem uma."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ao conectar uma carteira, você concorda com os Termos de Serviço</0> <0>e reconhece que leu e entendeu a Isenção <1>Responsabilidade do Protocolo</1>do Uniswap 2."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Ao conectar uma carteira, você concorda com os <0>Termos de Serviço</0> da Uniswap Labs e concorda com sua <1>Política de Privacidade</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Endereço do contrato"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Copiado!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "cópia de"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "A execução desta proposta decretará o calldata on-chain."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Execução enviada"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Resultados expandidos da lista de tokens inativos"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Saída Esperada"
|
||||
@@ -913,10 +914,9 @@ msgstr "Expirado"
|
||||
msgid "Explore"
|
||||
msgstr "Explorar"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Explorar tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Explore os principais tokens no Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema claro"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema claro"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Mín:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínimo recebido"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Dados do gráfico ausentes"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependências ausentes"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Dependências ausentes"
|
||||
msgid "More"
|
||||
msgstr "Mais"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Coleções NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "As taxas de rede excedem 50% do valor da troca!"
|
||||
msgid "New Position"
|
||||
msgstr "Nova Posição"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Nenhum NFT em"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Nenhuma liquidez V2 encontrada."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Nenhuma informação de token disponível"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nenhum token encontrado"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nenhum token encontrado."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Na pool {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Piscinas"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Coleções populares de NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Fichas populares"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Fila"
|
||||
msgid "Rates"
|
||||
msgstr "Taxas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Consulte Mais informação"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Leia mais sobre a UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Leia mais sobre ativos não suportados"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Transações recentes"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Pesquisas recentes"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Auto"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Auto Delegar"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vender NFTs"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Mostrar cancelado"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Mostrar posições fechadas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Mostre mais"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Simples"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Alguns ativos não estão disponíveis através desta interface porque p
|
||||
msgid "Something went wrong"
|
||||
msgstr "Ocorreu um problema"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Classifique e filtre ativos nas redes na nova página Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Passo 1. Obtenha tokens de Liquidez UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "A fornecer {0} {1} e {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "A Trocar {0} {1} por {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Símbolo não encontrado"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Responda a uma pesquisa de 10 minutos para nos ajudar a melhorar sua experiência no aplicativo Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "A transação não pôde ser enviada porque o prazo expirou. Verifique s
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Não há dados de liquidez."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Ocorreu um erro ao buscar seu saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Ocorreu um erro ao carregar seu saldo {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Este endereço está bloqueado na interface do Uniswap Labs porque está associado a um ou mais"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Esta rota otimiza sua produção total, considerando rotas divididas, v
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Este token não aparece na(s) lista(s) de tokens ativos. Certifique-se que este é o token que deseja negociar."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Este token não possui dados de gráfico porque não foi negociado no Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Este token não é compatível com o aplicativo Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token não suportado"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens de listas inativas. Importe tokens específicos abaixo ou clique em Gerir para ativar mais listas."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Melhores pools"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valor total bloqueado"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Principais tokens no Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total depositado"
|
||||
msgid "Total deposits"
|
||||
msgstr "Total de depósitos"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "O valor total bloqueado (TVL) é o valor do ativo que está atualmente em um pool de liquidez Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Rota comercial"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Preço:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Ver comissões acumuladas e análises<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Visualize e venda NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Ver lista"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Veja mais análises"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Ver no Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Ver no Explorador"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Ver análise de token"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Ver análise de token"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Ver transação no Explorador"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volume é o valor do ativo que foi negociado no Uniswap v3 durante o período de tempo selecionado."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Votar"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Ainda não tem liquidez nesta pool."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Você não tem tokens favoritos"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Você pode ter perdido sua conexão de rede ou {label} pode estar desativado agora."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Você pode ter perdido sua conexão de rede."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "A sua liquidez V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Suas posições de liquidez V3 ativas aparecerão aqui."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Seus saldos por rede"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Seu balanço"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "As suas transações aparecerão aqui..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "As suas UNI não reivindicadas"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Seu saldo {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "após derrapagem"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importar token} other {Importar fichas}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Este token não foi verificado} other {Esses tokens não são verificados}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Este token não foi verificado.} other {Esses tokens não são verificados.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} tokens UNI-V2 LP disponíveis"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} votos"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} todos os saldos"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} pode estar inativo agora ou você pode ter perdido sua conexão de rede."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "Ponte {label}"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ro_RO\n"
|
||||
"Language-Team: Romanian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>USD"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / săptămână"
|
||||
msgid "24H volume"
|
||||
msgstr "Volum 24 ore"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Volumul 24 de ore este valoarea activului care a fost tranzacționat pe Uniswap v3 în ultimele 24 de ore."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Sumă"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "A apărut o eroare la încărcarea jetoanelor. Vă rugăm să încercați din nou."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Prin adăugarea de lichidități vei câștiga 0.3% din toate tranzacți
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Prin adăugarea acestei liste ești încrezător implicit că datele sunt corecte. Oricine poate crea o listă, inclusiv crearea de versiuni false ale listelor și liste existente care pretind că reprezintă proiecte care nu au unul."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Prin conectarea unui portofel, sunteți de acord cu <0>Termenii și condițiile</0> și confirmați că ați citit și înțeles Declinarea răspunderii privind protocolul <1></1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Conectând un portofel, sunteți de acord cu <0>Termenii și condițiile Uniswap Labs</0> și sunteți de acord cu <1>Politica de confidențialitate</1>a acestuia."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Anulat"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Adresa contractului"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Copiat!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Copie"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Executarea acestei propuneri va pune în aplicare calldata în lanț."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Execuție depusă"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Rezultate extinse din Listele de Jetoane/Grupuri inactive"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Rezultat așteptat"
|
||||
@@ -913,10 +914,9 @@ msgstr "Expirat"
|
||||
msgid "Explore"
|
||||
msgstr "Explora"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Explorați jetoanele"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Explorați Top Tokens pe Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Tema luminii"
|
||||
msgid "Light theme"
|
||||
msgstr "Tema ușoară"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Legături"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum primit"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Lipsesc date din diagramă"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependențe lipsă"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Dependențe lipsă"
|
||||
msgid "More"
|
||||
msgstr "Mai mult"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Colecții NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Taxele de rețea depășesc 50% din valoarea swapului!"
|
||||
msgid "New Position"
|
||||
msgstr "Poziție nouă"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Nu există NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Nu s-a găsit nicio Lichiditate V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Nu există informații despre simboluri disponibile"
|
||||
msgid "No tokens found"
|
||||
msgstr "Nu s-au găsit jetoane"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Nu s-au găsit jetoane."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Grupat {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Piscine"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Colecții populare NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Jetoane populare"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "La coadă"
|
||||
msgid "Rates"
|
||||
msgstr "Tarife"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Citeste mai mult"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Citește mai multe despre UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Citește mai multe despre activele neacceptate"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Tranzacții recente"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Căutări recente"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Sine"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Auto Delegare"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Vinde NFT-uri"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Show Anulat"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Afișați pozițiile închise"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Afișați mai multe"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Simplu"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Unele active nu sunt disponibile prin intermediul acestei interfețe deo
|
||||
msgid "Something went wrong"
|
||||
msgstr "Ceva nu a funcţionat corect"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sortați și filtrați activele în rețele pe noua pagină Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistici"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Pasul 1. Obține jetoane de Lichiditate UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Se furnizează {0} {1} și {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Se schimbă {0} {1} cu {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Simbolul nu a fost găsit"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Participați la un sondaj de 10 minute pentru a ne ajuta să vă îmbunătățim experiența în aplicația Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Tranzacția nu a putut fi trimisă deoarece termenul a trecut. Te rugăm
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Nu există date privind lichiditatea."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "A apărut o eroare la preluarea soldului dvs"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "A apărut o eroare la încărcarea soldului dvs. {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Această adresă este blocată pe interfața Uniswap Labs deoarece este asociată cu unul sau mai multe"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Această rută vă optimizează producția totală, luând în considera
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Acest jeton nu apare pe lista (listele) de jetoane active. Asigură-te că acesta este jetonul pe care vrei să îl tranzacționezi."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Acest simbol nu are date de diagramă deoarece nu a fost tranzacționat pe Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Acest simbol nu este acceptat în aplicația Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Tokenul nu este acceptat"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Jetoane"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Jetoane din liste inactive. Importă jetoanele specifice de mai jos sau fă clic pe Gestionare pentru a activa mai multe liste."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Grupuri de top"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Valoarea totală blocată"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Top tokens pe Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Total depozitat"
|
||||
msgid "Total deposits"
|
||||
msgstr "Depozite totale"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Valoarea totală blocată (TVL) este valoarea activului care se află în prezent într-un pool de lichidități Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Rută comercială"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Preț V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Vizualizează taxele acumulate și statisticile<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Vizualizați și vindeți NFT-uri"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Vizualizează lista"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Vedeți mai multe analize"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Vizualizare pe Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Vizualizează pe Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Vizualizați analizele tokenului"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Vizualizați analizele tokenului"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Vizualizează tranzacția în Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volumul este valoarea activului care a fost tranzacționat pe Uniswap v3 în intervalul de timp selectat."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Votează"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Încă nu ai lichidități în această rezervă."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Nu aveți jetoane preferate"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Poate că v-ați pierdut conexiunea la rețea sau {label} ar putea fi întrerupt chiar acum."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Este posibil să fi pierdut conexiunea la rețea."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Lichiditatea ta V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Pozițiile dvs. active de lichiditate V3 vor apărea aici."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Soldurile dvs. în funcție de rețea"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Echilibrul tau"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Tranzacțiile tale vor apărea aici..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "UNI nerevendicate de tine"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Soldul tău {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "după alunecare"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Import token} other {Importați jetoane}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Acest simbol nu este verificat} other {Aceste jetoane nu sunt verificate}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Acest simbol nu este verificat.} other {Aceste jetoane nu sunt verificate.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} Jetoane UNI-V2 LP disponibile"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Voturi"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} toate soldurile"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} jetoane"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "Este posibil ca {label} să fie întrerupt în acest moment sau este posibil să fi pierdut conexiunea la rețea."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token bridge"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ru_RU\n"
|
||||
"Language-Team: Russian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/> $"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI в неделю"
|
||||
msgid "24H volume"
|
||||
msgstr "24-часовая громкость"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24-часовой объем — это объем актива, который был продан на Uniswap v3 за последние 24 часа."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,8 +240,8 @@ msgid "Amount"
|
||||
msgstr "Сумма"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgstr "Произошла ошибка при загрузке токенов. Пожалуйста, попробуйте ещё раз."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Произошла ошибка при загрузке токенов. Пожалуйста, попробуйте еще раз."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
@@ -373,11 +373,14 @@ msgstr "Добавив ликвидность, вы будете зарабат
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Добавляя этот список, вы подразумеваете, что доверяете его данным. Любой может создать список, включая создание поддельных версий существующих списков, а также списков, якобы сделанных проектами, у которых нет списков."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Подключая кошелёк, вы соглашаетесь с <0>Условиями предоставления услуг</0> Uniswap Labs и подтверждаете, что прочитали и поняли <1>Отказ от претензий протокола Uniswap</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Подключая кошелек, вы соглашаетесь с <0>Условиями предоставления услуг Uniswap Labs</0> и соглашаетесь с ее <1>Политикой конфиденциальности</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Отменено"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Адрес контракта"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Скопировано!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Копировать"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Исполнение этого предложения отправит
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Исполнение отправлено"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Расширенные результаты из неактивных списков токенов"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Ожидается к получению"
|
||||
@@ -913,10 +914,9 @@ msgstr "Истёк срок"
|
||||
msgid "Explore"
|
||||
msgstr "Обзор"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Обзор токенов"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Исследуйте лучшие токены на Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Светлая тема"
|
||||
msgid "Light theme"
|
||||
msgstr "Светлая тема"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Ссылки"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Мин.:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Минимум к получению"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Отсутствуют данные диаграммы"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Отсутствуют зависимости"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Отсутствуют зависимости"
|
||||
msgid "More"
|
||||
msgstr "Ещё"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Коллекции NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Комиссия сети превышает 50% от суммы обм
|
||||
msgid "New Position"
|
||||
msgstr "Новая позиция"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Нет NFT в"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Ликвидность в V2 не обнаружена."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Нет информации о токене"
|
||||
msgid "No tokens found"
|
||||
msgstr "Токены не найдены"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Токены не найдены."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "{0} в пуле:"
|
||||
msgid "Pools"
|
||||
msgstr "Бассейны"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Популярные коллекции NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Популярные токены"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Постановка в очередь"
|
||||
msgid "Rates"
|
||||
msgstr "Тарифы"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Узнать подробнее"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Подробнее о UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Подробнее о неподдерживаемых активах"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Последние транзакции"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Вы ранее искали"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Себе"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Делегировать себе"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Продать NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Показать отменённые"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Показать закрытые позиции"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Показать больше"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Простой"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Некоторые активы недоступны через этот
|
||||
msgid "Something went wrong"
|
||||
msgstr "Что-то пошло не так"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Сортируйте и фильтруйте ресурсы по сетям на новой странице «Токены»."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Статистика"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Шаг 1. Получите токены ликвидности UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Внесение {0} {1} и {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Обмен {0} {1} на {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Символ не найден"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "ТВЛ"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Пройдите 10-минутный опрос — это поможет нам сделать приложение Uniswap более удобным для вас."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Транзакция не может быть отправлена, по
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Нет данных о ликвидности."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Произошла ошибка при получении вашего баланса"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Произошла ошибка при загрузке вашего баланса {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Этот адрес заблокирован в интерфейсе Uniswap Labs, поскольку он связан с одним или несколькими"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Этот маршрут оптимизирует количество т
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Этот токен не входит в активные списки токенов. Убедитесь, что это действительно тот токен, которым вы хотите торговать."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Для этого токена нет данных диаграммы, поскольку он не был продан на Uniswap v3."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Этот токен не поддерживается в приложении от Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Токен не поддерживается"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Токены"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Показаны токены из неактивных списков. Импортируйте нужные токены или нажмите «Управлять», чтобы активировать больше списков."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Топ пулов"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Общая стоимость заблокирована"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Лучшие токены на Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Всего внесено"
|
||||
msgid "Total deposits"
|
||||
msgstr "Всего внесено"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Общая заблокированная стоимость (TVL) — это сумма актива, который в настоящее время находится в пуле ликвидности Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Маршрут обмена"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Цена {0} в V3:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Просмотреть начисленные комиссии и аналитику<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Просмотр и продажа NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Просмотреть список"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Посмотреть больше аналитики"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Посмотреть на Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Просмотреть в обозревателе"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Посмотреть аналитику токенов"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Посмотреть аналитику токенов"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Просмотреть транзакцию в обозревателе"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Объем — это количество актива, который был продан на Uniswap v3 в течение выбранного периода времени."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Голосования"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "У вас пока нет ликвидности в этом пуле."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "У вас нет избранных токенов"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Возможно, у вас отсутствует соединение с интернетом, или {label} сейчас не работает."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Возможно, у вас отсутствует соединение с интернетом."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Ваша ликвидность в V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Здесь появятся ваши активные позиции ликвидности в V3."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Ваши балансы по сети"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Ваш баланс"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Ваши транзакции появятся здесь..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Ваши невостребованные UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Ваш {0} баланс"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "после проскальзывания"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Импортировать токен} other {Импортировать токены}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Этот токен не проверен} other {Эти токены не проверены}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Этот токен не проверен.} other {Эти токены не проверены.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} доступных LP-токенов UNI-V2"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} голосов"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} все остатки"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} токенов"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} может быть недоступен прямо сейчас, или вы потеряли подключение к сети."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "Мост токена {label}"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sl_SI\n"
|
||||
"Language-Team: Slovenian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "- $"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/> $"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / teden"
|
||||
msgid "24H volume"
|
||||
msgstr "24H prostornina"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H obseg je znesek sredstva, s katerim se je trgovalo na Uniswap v3 v zadnjih 24 urah."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25 %"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Znesek"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Pri nalaganju žetonov je prišlo do napake. Prosim poskusite ponovno."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Ko dodate likvidnost, boste služili provizijo 0,3 % od vseh poslov na t
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Z dodajanjem tega seznama zaupate pravilnosti podatkov. Vsakdo lahko ustvari seznam; ustvari lahko tudi ponarejeno različico obstoječega seznama ali pa seznam, ki naj bi pripadal resničnemu projektu, ki nima uradnega seznama."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "S tem ko povežete denarnico, se strinjate s <0>pogoji storitve Uniswap Labs</0> in potrjujete, da ste prebrali in razumeli <1>izjavo o omejitvi odgovornosti</1> protokola Uniswap."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Če povežete denarnico, se strinjate s pogoji storitve</0> Labs <0>in se strinjate z njegovim <1>pravilnikom o zasebnosti</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Preklicana"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Naslov pogodbe"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Skopirano!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopirati"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Izvršitev te pobude bo uveljavila klicne podatke (calldata) v verigi."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Izvedba predložena"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Razširjeni rezultati z onemogočenih seznamov žetonov"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Pričakovani izhodni znesek"
|
||||
@@ -913,10 +914,9 @@ msgstr "Potekla"
|
||||
msgid "Explore"
|
||||
msgstr "Raziščite"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Raziščite žetone"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Raziščite najboljše žetone na Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Svetla preobleka"
|
||||
msgid "Light theme"
|
||||
msgstr "Svetla tema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Povezave"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Najmanj:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Prejmete najmanj"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Manjkajo podatki grafikona"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Manjkajoče odvisnosti"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Manjkajoče odvisnosti"
|
||||
msgid "More"
|
||||
msgstr "Več"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Zbirke NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Omrežna provizija presega 50% zneska menjave!"
|
||||
msgid "New Position"
|
||||
msgstr "Nova pozicija"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Nobenih NFT-jev"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Ne najdem nobene likvidnosti V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Informacije o žetonu niso na voljo"
|
||||
msgid "No tokens found"
|
||||
msgstr "Ni najdenih žetonov"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Ni najdenih žetonov."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "{0} v skladu:"
|
||||
msgid "Pools"
|
||||
msgstr "Bazeni"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Priljubljene zbirke NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Priljubljeni žetoni"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Čakalna vrsta"
|
||||
msgid "Rates"
|
||||
msgstr "Tečaji"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Preberi več"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Preberite več o UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Preberite več o nepodprtih sredstvih"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Zadnje transakcije"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Nedavna iskanja"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Sebi"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Samozastopanje"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Prodaja NFT-jev"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Prikaz preklican"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Pokaži zaprte položaje"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Pokaži več"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Enostavno"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Nekatera sredstva v tem vmesniku niso na voljo, ker morda ne delujejo do
|
||||
msgid "Something went wrong"
|
||||
msgstr "Nekaj je šlo narobe"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Razvrstite in filtrirajte sredstva po omrežjih na novi strani z žetoni."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistika"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Korak 1. Pridobite žetone za likvidnost UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Polog {0} {1} in {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Menjava {0} {1} za {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Simbola ni mogoče najti"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Izpolnite 10-minutno anketo in nam pomagajte izboljšati vašo izkušnjo aplikacije Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Transakcije ni bilo mogoče poslati, ker je rok potekel. Preverite, ali
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Podatkov o likvidnosti ni."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Pri pridobivanju stanja je prišlo do napake"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Pri nalaganju vašega stanja {0} je prišlo do napake"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Ta naslov je blokiran v vmesniku Uniswap Labs, ker je povezan z"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "To je pot, po kateri iz menjave dobite največ ob upoštevanju razceplje
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Tega žetona ni na nobenem od omogočenih seznamov žetonov. Prepričajte se, da je to res žeton, s katerim želite trgovati."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Ta žeton nima podatkov grafikona, ker se z njim ni trgovalo na Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ta žeton ni podprt v aplikaciji Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Žeton ni podprt"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Žetoni"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Žetoni z neaktivnih seznamov. Specifične žetone lahko uvozite spodaj ali pa kliknite Upravljaj in omogočite več seznamov."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Glavni skladi"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Skupna vrednost je zaklenjena"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Najboljši žetoni na Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Skupaj položeno"
|
||||
msgid "Total deposits"
|
||||
msgstr "Vsi pologi"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Skupna zaklenjena vrednost (TVL) je znesek sredstva, ki je trenutno v skladu likvidnosti Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Pot menjave"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Cena V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Oglejte si natečene pristojbine in analitiko <0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Ogled in prodaja NFT-jev"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Pokaži seznam"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Oglejte si več analitike"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Prikaži na Etherscanu"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Prikaži v raziskovalcu"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Oglejte si analitiko žetonov"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Oglejte si analitiko žetonov"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Prikaži transakcijo v raziskovalcu"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Obseg je znesek sredstva, s katerim se je trgovalo na Uniswap v3 v izbranem časovnem okviru."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Glasuj"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "V tem skladu še nimate likvidnosti."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Nimate priljubljenih žetonov"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Morda ste izgubili povezavo z omrežjem ali pa {label} trenutno ni na voljo."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Morda ste izgubili omrežno povezavo."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Vaša likvidnost V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Tukaj bodo prikazane vaše aktivne likvidnostne pozicije na V3."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Vaša stanja po omrežju"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Vaše stanje"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Vaše transakcije bodo prikazane tukaj ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Vaši neprevzeti UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Vaše stanje {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "po zdrsu"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Uvozi žeton} other {Uvozi žetone}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Ta žeton ni preverjen} 2 {Ta žetona nista preverjena} other {Ti žetoni niso preverjeni}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Ta žeton ni preverjen.} other {Ti žetoni niso preverjeni.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "Na voljo {0} žetonov LP UNI-V2"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} glasov"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} vsa stanja"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} žetonov"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} morda trenutno ne deluje ali pa ste izgubili omrežno povezavo."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "Most za žetone {label}"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sr_SP\n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$ -"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>долара"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 УНИ / недељно"
|
||||
msgid "24H volume"
|
||||
msgstr "24Х волуме"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24Х обим је износ имовине којом се трговало на Унисвап в3 током протекла 24 сата."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Износ"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Дошло је до грешке при учитавању токена. Молим вас, покушајте поново."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Додавањем ликвидности зарадићете 0,3% св
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Додавањем ове листе имплицитно сте сагласни да су подаци тачни. Свако може да креира листу, укључујући стварање лажних верзија постојећих листа и листа за које се тврди да представљају пројекте којих нема."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Povezivanjem novčanika prihvatate Uslove korišćenja usluge <0></0> i potvrđujete da ste pročitali i razumeli Odricanje odgovornosti</1><1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Повезивањем новчаника прихватате Услове коришћења услуге <0>Унисвап Лабс-а</0> и сагласни сте са његовом <1>Политиком приватности</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Отказано"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Адреса уговора"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Копирано!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Копирај"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Извршење овог предлога ће активирати п
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Екецутион Субмиттед"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Проширени резултати са неактивних листа токена"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Очекивани излаз"
|
||||
@@ -913,10 +914,9 @@ msgstr "Истекло"
|
||||
msgid "Explore"
|
||||
msgstr "Истражите"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Истражите токене"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Истражите најбоље токене на Унисвап-у"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Лигхт Тхеме"
|
||||
msgid "Light theme"
|
||||
msgstr "Светла тема"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Линкови"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Мин:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Минимално примљено"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Недостају подаци графикона"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Недостају зависности"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Недостају зависности"
|
||||
msgid "More"
|
||||
msgstr "Више"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "НФТ Цоллецтионс"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Мрежне накнаде прелазе 50% износа размен
|
||||
msgid "New Position"
|
||||
msgstr "Нова позиција"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Нема НФТ-ова"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Није пронађена ликвидност V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Нема доступних информација о токену"
|
||||
msgid "No tokens found"
|
||||
msgstr "Нису пронађени токени"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Нису пронађени токени."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Сакупљено {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Базени"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Популарне НФТ колекције"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Популарни токени"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Стати у ред"
|
||||
msgid "Rates"
|
||||
msgstr "Стопе"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Опширније"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Прочитајте више о UNI-ју"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Прочитајте више о неподржаним материја
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Недавне трансакције"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Недавне претраге"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Сопствени"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Сопствени делегат"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Продај НФТ"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Схов Цанцеллед"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Покажите затворене позиције"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Прикажи више"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Једноставно"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Нека средства нису доступна путем овог
|
||||
msgid "Something went wrong"
|
||||
msgstr "Нешто није у реду"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Сортирајте и филтрирајте средства по мрежама на новој страници Токени."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Статс"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Корак 1. Набавите UNI-V2 токене ликвидности"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Снабдевање {0} {1} и {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Замена {0} {1} за {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Симбол није пронађен"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "ТВЛ"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Попуните 10-минутну анкету да бисте нам помогли да побољшамо ваше искуство у апликацији Унисвап."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Трансакција није могла бити послата је
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Нема података о ликвидности."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Дошло је до грешке при преузимању вашег стања"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Дошло је до грешке при учитавању вашег стања {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Ова адреса је блокирана на интерфејсу Унисвап Лабс јер је повезана са једном или више њих"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Ова рута оптимизује ваш укупни учинак у
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Овај токен се не појављује на листи активних токена. Уверите се да је ово жетон којим желите да тргујете."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Овај токен нема податке графикона јер се њиме није трговало на Унисвап в3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ovaj token nije podržan u aplikaciji Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token nije podržan"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Жетони"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Жетони са неактивних листа. Увезите одређене токене у наставку или кликните на Управљаљ да бисте активирали још листа."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Врхунски фондови"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Укупна вредност закључана"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Најбољи токени на Унисвап-у"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Укупно депоновано"
|
||||
msgid "Total deposits"
|
||||
msgstr "Укупни депозити"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Укупна закључана вредност (ТВЛ) је износ имовине који се тренутно налази у Унисвап в3 фонду ликвидности."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Трговачка рута"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Цена:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Погледајте обрачунате накнаде и аналитику <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Прегледајте и продајте НФТ-ове"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Погледајте листу"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Погледајте још аналитике"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Поглед на Етхерсцан-у"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Поглед на Екплореру"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Погледајте аналитику токена"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Погледајте аналитику токена"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Погледајте трансакцију у Екплореру"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Обим је износ средства којим се трговало на Унисвап в3 током изабраног временског оквира."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Гласајте"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Још увек немате ликвидност у овом фонду
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Немате омиљених токена"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Можда сте изгубили мрежну везу или {label} није у реду."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Можда сте изгубили мрежну везу."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Ваша V2 ликвидност"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Овде ће се појавити ваше активне В3 позиције ликвидности."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Ваша стања по мрежи"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Стање"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Ваше трансакције ће се појавити овде ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Ваш непотраживани UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Ваш баланс {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "после клизања"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Увези токен} other {Увоз токена}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Овај токен није верификован} other {Ови токени нису верификовани}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Овај токен није верификован.} other {Ови токени нису верификовани.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP токена доступно"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Гласова"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} свих биланса"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} жетона"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} можда тренутно не ради или сте можда изгубили мрежну везу."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} токен бридге"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sv_SE\n"
|
||||
"Language-Team: Swedish\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI/vecka"
|
||||
msgid "24H volume"
|
||||
msgstr "24H volym"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H volym är beloppet av tillgången som har handlats på Uniswap v3 under de senaste 24 timmarna."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25 %"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Belopp"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Ett fel uppstod när tokens skulle laddas. Var god försök igen."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Genom att fylla på likviditet kommer du att tjäna 0,3 procent av alla
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Genom att lägga till de här listan litar du underförstått på att uppgifterna är korrekta. Vem som helst kan skapa en lista, inklusive att skapa falska versioner av befintliga listor och listor som påstår sig representera projekt som inte har en lista."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Genom att ansluta en plånbok godkänner du Uniswap Labs <0>Användarvillkor</0> och bekräftar att du har läst och förstått Uniswap <1>Protocol Disclaimer</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Genom att ansluta en plånbok godkänner du Uniswap Labs <0>Användarvillkor</0> och samtycker till dess <1>Sekretesspolicy</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Inställt"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Avtalsadress"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Kopierade!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Kopiera"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Genom att verkställa detta förslag kommer samtalsdata att införas i k
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Utförande inlämnat"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Utökade resultat från inaktiva tokenlistor"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Förväntad utgång"
|
||||
@@ -913,10 +914,9 @@ msgstr "Utgånget"
|
||||
msgid "Explore"
|
||||
msgstr "Utforska"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Utforska tokens"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Utforska Top Tokens på Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Ljus tema"
|
||||
msgid "Light theme"
|
||||
msgstr "Lätt tema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Länkar"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Minimum:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum mottaget"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Sjökortsdata saknas"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Beroenden saknas"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Beroenden saknas"
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT-samlingar"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Nätverksavgifterna överstiger 50 % av bytessumman!"
|
||||
msgid "New Position"
|
||||
msgstr "Ny position"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Inga NFTs in"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Ingen V2-likviditet hittades."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Ingen tokeninformation tillgänglig"
|
||||
msgid "No tokens found"
|
||||
msgstr "Inga tokens hittades"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Inga tokens hittades."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Poolad {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Pooler"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Populära NFT-samlingar"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Populära tokens"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Köa"
|
||||
msgid "Rates"
|
||||
msgstr "Kurser"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Läs mer"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Läs mer om UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Läs mer om tillgångar som inte stöds"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Nyligen genomförda transaktioner"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Senaste sökningar"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Själv"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Självdelegering"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Sälj NFT:er"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Visa inställd"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Visa stängda positioner"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Visa mer"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Enkel"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Vissa tillgångar är inte tillgängliga via detta gränssnitt eftersom
|
||||
msgid "Something went wrong"
|
||||
msgstr "Något gick snett"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sortera och filtrera tillgångar över nätverk på den nya sidan Tokens."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Steg 1. Få UNI-V2 likviditetstokens"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Levererar {0} {1} och {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Byter ut {0} {1} mot {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Symbolen hittades inte"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Gör en undersökning på 10 minuter för att hjälpa oss att förbättra din upplevelse i Uniswap-appen."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Transaktionen kunde inte skickas eftersom tidsfristen har löpt ut. Kont
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Det finns inga likviditetsdata."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Det gick inte att hämta ditt saldo"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Det uppstod ett fel när ditt {0} -saldo skulle laddas"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Den här adressen är blockerad på Uniswap Labs-gränssnittet eftersom den är associerad med en eller flera"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Denna rutt optimerar din totala produktion genom att ta hänsyn till del
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Den här token visas inte i den eller de aktiva tokenlistorna. Se till att detta är den token som du vill handla med."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Denna token har inte diagramdata eftersom den inte har handlats på Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Denna token stöds inte i Uniswap Labs-appen"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Token stöds inte"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens från inaktiva listor. Importera specifika tokens nedan eller klicka på Hantera för att aktivera fler listor."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "De bästa poolerna"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Totalt värde låst"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Bästa tokens på Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Totalt insatt"
|
||||
msgid "Total deposits"
|
||||
msgstr "Summa insättningar"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Totalt värde låst (TVL) är summan av tillgången som för närvarande finns i en Uniswap v3-likviditetspool."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Handelsväg"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} pris:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Visa upplupna avgifter och analyser <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Se och sälj NFT:er"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Visa lista"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Se mer analys"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Visa på Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Visa i Utforskare"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Visa tokenanalys"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Visa tokenanalys"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Visa transaktion i Utforskaren"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Volym är summan av tillgången som har handlats på Uniswap v3 under den valda tidsramen."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Rösta"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Du har inte likviditet i denna pool ännu."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Du har inga favoritsymboler"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Du kan ha tappat din nätverksanslutning, eller {label} kan vara nere just nu."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Du kan ha tappat din nätverksanslutning."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Din V2-likviditet"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Dina aktiva V3-likviditetspositioner kommer att visas här."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Dina saldon per nätverk"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Din balans"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Dina transaktioner kommer att visas här..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Din outnyttjade UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Ditt {0} -saldo"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "efter glidning"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Importera token} other {Importera tokens}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Denna token är inte verifierad} other {Dessa tokens är inte verifierade}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Denna token är inte verifierad.} other {Dessa tokens är inte verifierade.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP-tokens tillgängliga"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} röster"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} alla saldon"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} tokens"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} kan vara nere just nu, eller så kan du ha tappat nätverksanslutningen."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} token bridge"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sw_TZ\n"
|
||||
"Language-Team: Swahili, Tanzania\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$ -"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / wiki"
|
||||
msgid "24H volume"
|
||||
msgstr "Kiasi cha 24H"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Kiasi cha 24H ni kiasi cha mali ambacho kimeuzwa kwenye Uniswap v3 katika saa 24 zilizopita."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Kiasi"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Hitilafu imetokea wakati wa kupakia tokeni. Tafadhali jaribu tena."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Kwa kuongeza ukwasi utapata 0.3% ya biashara zote kwenye jozi hii sawia
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Kwa kuongeza orodha hii unaamini kabisa kuwa data ni sahihi. Mtu yeyote anaweza kuunda orodha, pamoja na kuunda matoleo bandia ya orodha zilizopo na orodha ambazo zinadai kuwakilisha miradi ambayo haina moja."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Kwa kuunganisha mkoba, unakubaliana na Uniswap Labs ' <0>Masharti ya Huduma</0> na kutambua kwamba umesoma na kuelewa Uniswap <1>Itifaki Kanusho</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Kwa kuunganisha pochi, unakubali Sheria na Masharti <0>ya</0> Labs na kukubali <1>Sera yake ya Faragha</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Imeghairishwa"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Anwani ya mkataba"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Imenakiliwa!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Nakili"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Utekelezaji wa pendekezo hili utaweka data ya simu kwenye mnyororo."
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Utekelezaji Umewasilishwa"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Matokeo yaliyopanuliwa kutoka kwa Orodha za Ishara ambazo hazifanyi kazi"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Pato Linalotarajiwa"
|
||||
@@ -913,10 +914,9 @@ msgstr "Imeisha muda"
|
||||
msgid "Explore"
|
||||
msgstr "Chunguza"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Chunguza Tokeni"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Gundua Tokeni Kuu kwenye Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Mandhari mepesi"
|
||||
msgid "Light theme"
|
||||
msgstr "Mandhari nyepesi"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Viungo"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Dak:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Kiwango cha chini kimepokelewa"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Data ya chati haipo"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Kukosa utegemezi"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Kukosa utegemezi"
|
||||
msgid "More"
|
||||
msgstr "Zaidi"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Mikusanyiko ya NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Ada za mtandao zinazidi 50% ya kiasi cha ubadilishaji!"
|
||||
msgid "New Position"
|
||||
msgstr "Nafasi mpya"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Hakuna NFTs ndani"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Hakuna V2 Liquidity iliyopatikana."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Hakuna maelezo ya tokeni yanayopatikana"
|
||||
msgid "No tokens found"
|
||||
msgstr "Hakuna tokeni zilizopatikana"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Hakuna tokeni zilizopatikana."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Iliyounganishwa {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Mabwawa"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Mikusanyiko maarufu ya NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Ishara maarufu"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Kupanga foleni"
|
||||
msgid "Rates"
|
||||
msgstr "Viwango"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Soma zaidi"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Soma zaidi kuhusu UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Soma zaidi kuhusu mali zisizoungwa mkono"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Shughuli za Hivi Karibuni"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Utafutaji wa hivi majuzi"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Binafsi"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Ujumbe wa Kujitegemea"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Uza NFTs"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Onyesho Limeghairiwa"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Onyesha nafasi zilizofungwa"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Onyesha zaidi"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Rahisi"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Mali zingine hazipatikani kupitia kiolesura hiki kwa sababu zinaweza kuf
|
||||
msgid "Something went wrong"
|
||||
msgstr "Hitilafu imetokea"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Panga na uchuje vipengee kwenye mitandao kwenye ukurasa mpya wa Tokeni."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Takwimu"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Hatua ya 1. Pata tokeni za Liquidity za UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Kusambaza {0} {1} na {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Kubadilisha {0} {1} kwa {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Alama haijapatikana"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Fanya utafiti wa dakika 10 ili utusaidie kuboresha matumizi yako katika programu ya Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Shughuli haikuweza kutumwa kwa sababu tarehe ya mwisho imepita. Tafadhal
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Hakuna data ya ukwasi."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Kulikuwa na hitilafu katika kuleta salio lako"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Kulikuwa na hitilafu katika kupakia salio lako {0}"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Anwani hii imezuiwa kwenye kiolesura cha Uniswap Labs kwa sababu inahusishwa na moja au zaidi"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Njia hii huboresha jumla ya matokeo yako kwa kuzingatia njia zilizogawan
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ishara hii haionekani kwenye orodha (s) zinazotumika. Hakikisha hii ndio ishara kwamba unataka kufanya biashara."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Tokeni hii haina data ya chati kwa sababu haijauzwa kwenye Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Tokeni hii haitumiki katika programu ya Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Tokeni haitumiki"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Ishara"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Ishara kutoka orodha zisizotumika. Leta ishara maalum hapa chini au bofya Dhibiti ili kuamsha orodha zaidi."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Mabwawa ya juu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Jumla ya Thamani Imefungwa"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Ishara kuu kwenye Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Jumla iliyowekwa"
|
||||
msgid "Total deposits"
|
||||
msgstr "Amana ya jumla"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Jumla ya thamani iliyofungwa (TVL) ni kiasi cha kipengee ambacho kwa sasa kiko kwenye kundi la ukwasi la Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Njia ya Biashara"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Bei ya V3 {0}"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Angalia ada na uchanganuzi ulioongezeka <0> ↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Tazama na uuze NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Angalia orodha"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Tazama uchanganuzi zaidi"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Angalia kwenye Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Angalia kwenye Kichunguzi"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Tazama uchanganuzi wa tokeni"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Tazama uchanganuzi wa tokeni"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Angalia shughuli kwenye Kivinjari"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Kiasi ni kiasi cha kipengee ambacho kimeuzwa kwenye Uniswap v3 katika muda uliochaguliwa."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Piga kura"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Bado huna ukwasi katika dimbwi hili."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Huna tokeni unazopenda"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Labda umepoteza muunganisho wako wa mtandao, au {label} inaweza kuwa chini sasa hivi."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Labda umepoteza muunganisho wako wa mtandao."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Ukiritimba wako wa V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Nafasi zako za ukwasi za V3 zinazotumika zitaonekana hapa."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Salio lako kwa mtandao"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Mizani yako"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Shughuli zako zitaonekana hapa ..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "UNI yako isiyodaiwa"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Salio lako {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "baada ya kuteleza"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Leta ishara} other {Leta tokeni}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Tokeni hii haijathibitishwa} other {Tokeni hizi hazijathibitishwa}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Tokeni hii haijathibitishwa.} other {Tokeni hizi hazijathibitishwa.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} ishara za UNI-V2 LP zinapatikana"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Kura"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} mizani yote"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "Ishara {activeTokensOnThisChain}"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} inaweza kuwa chini sasa hivi, au unaweza kuwa umepoteza muunganisho wako wa mtandao."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} daraja la ishara"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: th_TH\n"
|
||||
"Language-Team: Thai\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / สัปดาห์"
|
||||
msgid "24H volume"
|
||||
msgstr "ปริมาณ 24H"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "ปริมาณ 24H คือจำนวนของสินทรัพย์ที่มีการซื้อขายบน Uniswap v3 ในช่วง 24 ชั่วโมงที่ผ่านมา"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "จำนวน"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "เกิดข้อผิดพลาดในการโหลดโทเค็น กรุณาลองอีกครั้ง."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "โดยการเพิ่มสภาพคล่อง คุณ
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "การเพิ่มรายการนี้แสดงว่าคุณเชื่อมั่นโดยปริยายว่าข้อมูลถูกต้อง ใครๆ ก็สร้างรายการได้ ซึ่งรวมถึงการสร้างเวอร์ชันปลอมของรายการที่มีอยู่และรายการที่อ้างว่าเป็นตัวแทนของโครงการที่ไม่มีอยู่"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "การเชื่อมต่อกระเป๋าเงินหมายความว่าคุณยอมรับข้อกำหนดในการให้บริการ <0></0> และรับทราบว่าคุณได้อ่านและทำความเข้าใจ Uniswap <1>Protocol Disclaimer</1>แล้ว"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "การเชื่อมต่อกระเป๋าเงินหมายความว่าคุณยอมรับข้อกำหนดในการให้บริการ <0>ของ Uniswap Labs</0> และยินยอมตาม <1>นโยบายความเป็นส่วนตัว</1>"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "ยกเลิก"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "ที่อยู่สัญญา"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "คัดลอก!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "สำเนา"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "การดำเนินการข้อเสนอนี้จะ
|
||||
msgid "Execution Submitted"
|
||||
msgstr "ส่งการดำเนินการแล้ว"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "ขยายผลจากรายการโทเค็นที่ไม่ได้ใช้งาน"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "ผลผลิตที่คาดหวัง"
|
||||
@@ -913,10 +914,9 @@ msgstr "หมดอายุ"
|
||||
msgid "Explore"
|
||||
msgstr "สำรวจ"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "สำรวจโทเค็น"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "สำรวจโทเค็นยอดนิยมบน Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "ธีมไฟ"
|
||||
msgid "Light theme"
|
||||
msgstr "ธีมไฟ"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "ลิงค์"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "นาที:"
|
||||
msgid "Minimum received"
|
||||
msgstr "รับขั้นต่ำ"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "ไม่มีข้อมูลแผนภูมิ"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "ไม่มีการพึ่งพา"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "ไม่มีการพึ่งพา"
|
||||
msgid "More"
|
||||
msgstr "มากกว่า"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "คอลเลกชัน NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "ค่าธรรมเนียมเครือข่ายเกิ
|
||||
msgid "New Position"
|
||||
msgstr "ตำแหน่งใหม่"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "ไม่มี NFT ใน"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "ไม่พบสภาพคล่อง V2"
|
||||
@@ -1339,7 +1352,7 @@ msgstr "ไม่มีข้อมูลโทเค็น"
|
||||
msgid "No tokens found"
|
||||
msgstr "ไม่พบโทเค็น"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "ไม่พบโทเค็น"
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "รวม {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "สระว่ายน้ำ"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "คอลเลกชัน NFT ยอดนิยม"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "โทเค็นยอดนิยม"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "เข้าคิว"
|
||||
msgid "Rates"
|
||||
msgstr "ราคา"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "อ่านเพิ่มเติม"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "อ่านเพิ่มเติมเกี่ยวกับ UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "อ่านเพิ่มเติมเกี่ยวกับเน
|
||||
msgid "Recent Transactions"
|
||||
msgstr "ธุรกรรมล่าสุด"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "ผลค้นหาล่าสุด"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "ตัวเอง"
|
||||
msgid "Self Delegate"
|
||||
msgstr "ผู้แทนตนเอง"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "ขาย NFTs"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "ยกเลิกการแสดง"
|
||||
msgid "Show closed positions"
|
||||
msgstr "แสดงตำแหน่งที่ปิด"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "แสดงมากขึ้น"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "เรียบง่าย"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "สินทรัพย์บางรายการไม่สาม
|
||||
msgid "Something went wrong"
|
||||
msgstr "อะไรบางอย่างผิดปกติ"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "จัดเรียงและกรองเนื้อหาข้ามเครือข่ายในหน้าโทเค็นใหม่"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "สถิติ"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "ขั้นตอนที่ 1 รับโทเค็นสภาพคล่อง UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "การจัดหา {0} {1} และ {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "สลับ {0} {1} เป็น {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "ไม่พบสัญลักษณ์"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "ทำแบบสำรวจ 10 นาทีเพื่อช่วยเราปรับปรุงประสบการณ์ของคุณในแอป Uniswap"
|
||||
@@ -1962,14 +1983,6 @@ msgstr "ไม่สามารถส่งธุรกรรมได้เน
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "ไม่มีข้อมูลสภาพคล่อง"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "เกิดข้อผิดพลาดในการเรียกยอดเงินของคุณ"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "เกิดข้อผิดพลาดในการโหลดยอดคงเหลือ {0} ของคุณ"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "ที่อยู่นี้ถูกบล็อกบนอินเทอร์เฟซ Uniswap Labs เนื่องจากเชื่อมโยงกับหนึ่งรายการขึ้นไป"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "เส้นทางนี้ปรับผลผลิตทั้ง
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "โทเค็นนี้ไม่ปรากฏในรายการโทเค็นที่ใช้งานอยู่ ตรวจสอบให้แน่ใจว่านี่คือโทเค็นที่คุณต้องการซื้อขาย"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "โทเค็นนี้ไม่มีข้อมูลแผนภูมิเนื่องจากไม่มีการซื้อขายบน Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "ไม่รองรับโทเค็นนี้ในแอป Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "ไม่รองรับโทเค็น"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "โทเค็น"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "โทเค็นจากรายการที่ไม่ใช้งาน นำเข้าโทเค็นเฉพาะด้านล่างหรือคลิกจัดการเพื่อเปิดใช้งานรายการเพิ่มเติม"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "สระว่ายน้ำยอดนิยม"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "มูลค่ารวมที่ถูกล็อค"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "โทเค็นอันดับต้น ๆ บน Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "ยอดฝาก"
|
||||
msgid "Total deposits"
|
||||
msgstr "ยอดเงินฝาก"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Total value lock (TVL) คือจำนวนของสินทรัพย์ที่อยู่ในกลุ่มสภาพคล่อง Uniswap v3"
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "เส้นทางการค้า"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} ราคา:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "ดูค่าธรรมเนียมและการวิเคราะห์ค้างชำระ<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "ดูและขาย NFTs"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "ดูรายการ"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "ดูบทวิเคราะห์เพิ่มเติม"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "ดูบน Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "ดูบน Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "ดูการวิเคราะห์โทเค็น"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "ดูการวิเคราะห์โทเค็น"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "ดูธุรกรรมบน Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "ปริมาณคือจำนวนของสินทรัพย์ที่มีการซื้อขายบน Uniswap v3 ระหว่างกรอบเวลาที่เลือก"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "โหวต"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "คุณยังไม่มีสภาพคล่องในกล
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "คุณไม่มีโทเค็นที่ชื่นชอบ"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "คุณอาจสูญเสียการเชื่อมต่อเครือข่าย หรือ {label} อาจหยุดทำงานในขณะนี้"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "คุณอาจสูญเสียการเชื่อมต่อเครือข่ายของคุณ"
|
||||
@@ -2517,9 +2539,9 @@ msgstr "สภาพคล่อง V2 ของคุณ"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "ตำแหน่งสภาพคล่อง V3 ที่ใช้งานอยู่ของคุณจะปรากฏที่นี่"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "ยอดคงเหลือของคุณตามเครือข่าย"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "ยอดเงินของคุณ"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "ธุรกรรมของคุณจะปรากฏที่น
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "UNI . ที่ไม่มีการอ้างสิทธิ์ของคุณ"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "ยอดคงเหลือ {0} ของคุณ"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "หลังการลื่นไถล"
|
||||
@@ -2684,7 +2711,7 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {นำเข้าโทเค็น} other {นำเข้าโทเค็น}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {โทเค็นนี้ไม่ได้รับการยืนยัน} other {โทเค็นเหล่านี้ไม่ได้รับการยืนยัน}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} โทเค็น LP UNI-V2 พร้อมใช้งาน"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} โหวต"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} ยอดคงเหลือทั้งหมด"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} โทเค็น"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} อาจหยุดทำงานในขณะนี้ หรือคุณอาจสูญเสียการเชื่อมต่อเครือข่าย"
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "สะพานโทเค็น {label}"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Language-Team: Turkish\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>$"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / hafta"
|
||||
msgid "24H volume"
|
||||
msgstr "24 saat hacim"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24 saatlik hacim, son 24 saat içinde Uniswap v3'te işlem gören varlığın miktarıdır."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "%25"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Miktar"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Jetonlar yüklenirken bir hata oluştu. Lütfen tekrar deneyin."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Likidite ekleyerek, havuzdaki payınızla orantılı olarak bu çiftteki
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Bu listeyi ekleyerek, verilerin doğru olduğuna dolaylı olarak güveniyorsunuz. Mevcut listelerin sahte sürümlerini ve listesi olmayan projeleri temsil ettiğini iddia eden listeler de dahil olmak üzere herkes bir liste oluşturabilir."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Bir cüzdan bağlayarak, Uniswap Labs'ın kabul <0>Hizmet Şartları'nı</0> ve okuduğunuzu ve Uniswap anladığımı teyit <1>Protokol Uyarı</1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Bir cüzdan bağlayarak, Uniswap Labs'ın <0>Hizmet Şartlarını</0> ve <1>Gizlilik Politikasını</1>kabul etmiş olursunuz."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "İptal edildi"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Sözleşme adresi"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "kopyalandı!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "kopyala"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Bu teklifin yürütülmesi, çağrı verilerini zincir üzerinde yürür
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Yürütme Gönderildi"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Aktif olmayan Jeton Listelerinden genişletilmiş sonuçlar"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Beklenen çıktı"
|
||||
@@ -913,10 +914,9 @@ msgstr "Süresi doldu"
|
||||
msgid "Explore"
|
||||
msgstr "Keşfetmek"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Jetonları Keşfedin"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Uniswap'ta En İyi Jetonları Keşfedin"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Işık Tema"
|
||||
msgid "Light theme"
|
||||
msgstr "hafif tema"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Bağlantılar"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Minimum:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum alınan"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Eksik grafik verileri"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Eksik bağımlılıklar"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Eksik bağımlılıklar"
|
||||
msgid "More"
|
||||
msgstr "Daha fazla"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT Koleksiyonları"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Ağ ücretleri takas tutarının %50'sini aşıyor!"
|
||||
msgid "New Position"
|
||||
msgstr "Yeni Pozisyon"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "NFT yok"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "V2 Likiditesi bulunamadı."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Belirteç bilgisi yok"
|
||||
msgid "No tokens found"
|
||||
msgstr "Jeton bulunamadı"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Jeton bulunamadı."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Havuza alınmış {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Havuzlar"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Popüler NFT koleksiyonları"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Popüler jetonlar"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Kuyruk"
|
||||
msgid "Rates"
|
||||
msgstr "Oranlar"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Devamını oku"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "UNI hakkında daha fazla bilgi edinin"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Desteklenmeyen varlıklar hakkında daha fazla bilgi edinin"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Son İşlemler"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Son aramalar"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Kendisi"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Kendinden Temsilci"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "NFT'leri sat"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "İptal Edilenleri Göster"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Kapalı pozisyonları göster"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Daha fazla göster"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Basit"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Bazı varlıklar bu arayüz aracılığıyla kullanılamaz. Bunun nedeni
|
||||
msgid "Something went wrong"
|
||||
msgstr "Bir şeyler yanlış gitti"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Yeni Jetonlar sayfasındaki varlıkları ağlar arasında sıralayın ve filtreleyin."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "İstatistikler"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Adım 1. UNI-V2 Likidite jetonları alın"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "{0} {1} ve {2} {3} temini"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "{2} {3} yerine {0} {1} swap ediliyor"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Sembol bulunamadı"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Uniswap uygulamasındaki deneyiminizi iyileştirmemize yardımcı olmak için 10 dakikalık bir ankete katılın."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Son tarih geçtiği için işlem gönderilemedi. Lütfen işlem süreniz
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Likidite verisi yok."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Bakiyeniz alınırken bir hata oluştu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "{0} bakiyeniz yüklenirken bir hata oluştu"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Bu adres, bir veya daha fazla adresle ilişkili olduğu için Uniswap Labs arabiriminde engellendi."
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Bu rota, bölünmüş rotaları, çoklu atlamaları ve her adımın gaz
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Bu jeton, aktif jeton listelerinde görünmüyor. Bunun takas etmek istediğiniz jeton olduğundan emin olun."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Bu jetonun grafik verileri yok çünkü Uniswap v3'te işlem görmedi"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Bu belirteç, Uniswap Labs uygulamasında desteklenmiyor"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Jeton desteklenmiyor"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Jetonlar"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Aktif olmayan listelerden gelen jetonlar. Aşağıdan belirli jetonları içe aktarın veya daha fazla listeyi etkinleştirmek için Yönet'e tıklayın."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "En iyi havuzlar"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Toplam Değer Kilitli"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Uniswap'ta en iyi jetonlar"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Toplam yatırılan"
|
||||
msgid "Total deposits"
|
||||
msgstr "Toplam mevduat"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Kilitli toplam değer (TVL), şu anda bir Uniswap v3 likidite havuzunda bulunan varlığın miktarıdır."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Ticaret rotası"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Fiyat:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Tahakkuk eden ücretleri ve analizleri görüntüleyin<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "NFT'leri görüntüleyin ve satın"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Listeyi görüntüle"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Daha fazla analiz görüntüle"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Etherscan üzerinde görüntüle"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Explorer'da Görüntüle"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Belirteç analizlerini görüntüleyin"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Belirteç analizlerini görüntüleyin"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "İşlemi Explorer'da görüntüle"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Hacim, seçilen zaman aralığında Uniswap v3'te işlem gören varlığın miktarıdır."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Oyla"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Bu havuzda henüz likiditeniz yok."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Favori jetonunuz yok"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Ağ bağlantınızı kaybetmiş {label} çalışmıyor olabilir."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Ağ bağlantınızı kaybetmiş olabilirsiniz."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "V2 likiditeniz"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Aktif V3 likidite pozisyonlarınız burada görünecektir."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Ağa göre bakiyeleriniz"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Bakiyeniz"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "İşlemleriniz burada görünecek..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Talep edilmemiş UNI'niz"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "{0} bakiyeniz"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "kaymadan sonra"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Simgeyi içe aktar} other {Jetonları içe aktarın}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Bu jeton doğrulanmadı} other {Bu jetonlar doğrulanmadı}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Bu jeton doğrulanmadı.} other {Bu jetonlar doğrulanmadı.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 LP jetonu mevcut"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} Oylar"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} tüm bakiyeler"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} jeton"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} şu anda çalışmıyor olabilir veya ağ bağlantınızı kaybetmiş olabilirsiniz."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} simge köprüsü"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: uk_UA\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "<0/>доларів"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI/тиждень"
|
||||
msgid "24H volume"
|
||||
msgstr "24H обсяг"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Обсяг за 24 години — це кількість активу, який торгувався на Uniswap v3 протягом останніх 24 годин."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Сума"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Під час завантаження токенів сталася помилка. Будь ласка спробуйте ще раз."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Додавши ліквідність, ви заробите 0,3% усі
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Додаючи цей список, ви непрямо погоджуєтеся з тим, що дані правильні. Будь-хто може створити список, включаючи створення підроблених версій існуючих списків і списків, які нібито представляють проекти, які його не мають."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Підключаючи гаманець, ви погоджуєтеся з Умовами надання послуг <0></0> і підтверджуєте, що прочитали та розумієте відмову від відповідальності</1><1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Підключаючи гаманець, ви приймаєте <0>Умови обслуговування</0> Uniswap Labs і погоджуєтеся з <1>Політикою конфіденційності</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Скасовано"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Адреса договору"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Скопійовано!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Копія"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Виконання цієї пропозиції призведе до
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Виконання подано"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Розширені результати з неактивних списків токенів"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Очікуваний результат"
|
||||
@@ -913,10 +914,9 @@ msgstr "Термін дії закінчився"
|
||||
msgid "Explore"
|
||||
msgstr "Досліджуйте"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Дослідіть жетони"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Досліджуйте найкращі токени на Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Світла тема"
|
||||
msgid "Light theme"
|
||||
msgstr "Світла тема"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Посилання"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Мінімум:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Мінімум отриманих"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Відсутні дані діаграми"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Відсутня залежність"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Відсутня залежність"
|
||||
msgid "More"
|
||||
msgstr "Більше"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Колекції NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Комісія за мережу перевищує 50% від суми
|
||||
msgid "New Position"
|
||||
msgstr "Нова позиція"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Немає NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Не знайдено ліквідності V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Інформація про маркери недоступна"
|
||||
msgid "No tokens found"
|
||||
msgstr "Токенів не знайдено"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Токенів не знайдено."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Заведено в пул {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Басейни"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Популярні колекції NFT"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Популярні токени"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Черга"
|
||||
msgid "Rates"
|
||||
msgstr "Ставки"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Читати далі"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Дізнатися більше про UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Докладніше про непідтримувані активи"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Останні Транзакції"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Останні пошуки"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Самостійний аналіз"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Самостійно делеговано"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Продавайте NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Показати скасовано"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Показати закриті позиції"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Показати більше"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Простий"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Деякі активи недоступні через цей інте
|
||||
msgid "Something went wrong"
|
||||
msgstr "Сталася помилка"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Сортуйте та фільтруйте активи в мережах на новій сторінці маркерів."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "статистика"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Крок 1. Отримайте токени ліквідності UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Постачання {0} {1} та {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Обмін {0} {1} на {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Символ не знайдено"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Пройдіть 10-хвилинне опитування, щоб допомогти нам покращити ваш досвід роботи в додатку Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Не вдалося надіслати транзакцію, оскіл
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Даних про ліквідність немає."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Під час отримання балансу сталася помилка"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Під час завантаження балансу {0} сталася помилка"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Ця адреса заблокована в інтерфейсі Uniswap Labs, оскільки вона пов’язана з одним або кількома"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Цей маршрут оптимізує вашу загальну пр
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Цей токен не відображається в списку (-ах) активних токенів. Переконайтеся в тому, що це токен, яким ви хочете торгувати."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Цей токен не має даних графіка, оскільки він не торгувався на Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Цей маркер не підтримується в додатку Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Токен не підтримується"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Токени"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Токени з неактивних списків. Імпортуйте конкретні токени нижче або натисніть \"Керувати\", аби активувати більше списків."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Пули в топі"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Загальне значення заблоковано"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Топ жетонів на Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Усього внесено"
|
||||
msgid "Total deposits"
|
||||
msgstr "Усього внесків"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Загальна заблокована вартість (TVL) – це сума активу, яка зараз знаходиться в пулі ліквідності Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Торговий шлях"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "Ціна V3 {0}:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Переглянути нараховані комісії та аналітику <0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Переглядайте та продавайте NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Переглянути список"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Переглянути більше аналітики"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Переглянути на Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Переглянути на Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Перегляньте аналітику токенів"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Перегляньте аналітику токенів"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Переглянути транзакцію в Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Обсяг — це кількість активу, який торгувався на Uniswap v3 протягом вибраного періоду часу."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Голосування"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "У вас ще немає ліквідності в цьому пулі.
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "У вас немає вибраних токенів"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Можливо, ви втратили з’єднання з мережею, або зараз може бути {label}"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Можливо, ви втратили з’єднання з мережею."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Ваша ліквідність V2"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Тут з’являться ваші активні позиції ліквідності V3."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Ваші баланси по мережах"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Ваш баланс"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Тут з’являтимуться ваші транзакції..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "Ваші неотримані UNI"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Ваш баланс {0}"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "після ковзання"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Імпортувати маркер} other {Імпорт токенів}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Цей маркер не перевірено} other {Ці токени не перевірені}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Цей маркер не перевірено.} other {Ці маркери не перевірені.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "Доступно {0} токенів LP UNI-V2"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} голосів"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} всі залишки"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} лексем"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} може зараз не працювати, або ви втратили з’єднання з мережею."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} маркерний міст"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/>"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI / tuần"
|
||||
msgid "24H volume"
|
||||
msgstr "24H khối lượng"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "Khối lượng 24H là số lượng tài sản đã được giao dịch trên Uniswap v3 trong 24 giờ qua."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,7 +240,7 @@ msgid "Amount"
|
||||
msgstr "Số tiền"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "Đã xảy ra lỗi khi tải mã thông báo. Vui lòng thử lại."
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
@@ -373,11 +373,14 @@ msgstr "Bằng cách thêm thanh khoản, bạn sẽ kiếm được 0,3% tất
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Bằng cách thêm danh sách này, bạn hoàn toàn tin tưởng rằng dữ liệu là chính xác. Bất kỳ ai cũng có thể tạo danh sách, bao gồm cả việc tạo các phiên bản giả mạo của danh sách hiện có và danh sách yêu cầu đại diện cho các dự án không có danh sách đó."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Bằng cách kết nối ví, bạn đồng ý với <0>Điều khoản dịch vụ</0> của Uniswap Labs và xác nhận rằng bạn đã đọc và hiểu Tuyên bố từ chối trách nhiệm</1><1>."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "Bằng cách kết nối ví, bạn đồng ý với <0>Điều khoản dịch vụ</0> của Uniswap Labs và đồng ý với <1>Chính sách quyền riêng tư</1>của Uniswap Labs."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Đã hủy"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "Địa chỉ hợp đồng"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "Đã sao chép!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "Sao chép"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "Việc thực thi đề xuất này sẽ tạo ra calldata trên chuỗi
|
||||
msgid "Execution Submitted"
|
||||
msgstr "Thực thi đã được đệ trình"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Kết quả mở rộng từ Danh sách mã token không hoạt động"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "Sản lượng mong đợi"
|
||||
@@ -913,10 +914,9 @@ msgstr "Đã hết hạn"
|
||||
msgid "Explore"
|
||||
msgstr "Khám phá"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "Khám phá mã thông báo"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "Khám phá các mã thông báo hàng đầu trên Uniswap"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "Chủ đề ánh sáng"
|
||||
msgid "Light theme"
|
||||
msgstr "Chủ đề ánh sáng"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "Liên kết"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "Tối thiểu:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Số tiền nhận được tối thiểu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "Thiếu dữ liệu biểu đồ"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Thiếu phụ thuộc"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "Thiếu phụ thuộc"
|
||||
msgid "More"
|
||||
msgstr "Thêm nữa"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "Bộ sưu tập NFT"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "Phí mạng vượt quá 50% số tiền hoán đổi!"
|
||||
msgid "New Position"
|
||||
msgstr "Vị trí mới"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "Không có NFT trong"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "Không tìm thấy Thanh khoản V2."
|
||||
@@ -1339,7 +1352,7 @@ msgstr "Không có thông tin mã thông báo có sẵn"
|
||||
msgid "No tokens found"
|
||||
msgstr "Không tìm thấy mã thông báo"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "Không tìm thấy mã thông báo nào."
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "Pool {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "Hồ bơi"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "Bộ sưu tập NFT phổ biến"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "Các mã thông báo phổ biến"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "Xếp hàng"
|
||||
msgid "Rates"
|
||||
msgstr "Tỷ giá"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "Đọc thêm"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "Đọc thêm về UNI"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "Đọc thêm về nội dung không được hỗ trợ"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "Giao dịch gần đây"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "Tìm kiếm gần đây"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "Bản thân"
|
||||
msgid "Self Delegate"
|
||||
msgstr "Tự ủy quyền"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "Bán NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "Hiển thị Đã bị Hủy"
|
||||
msgid "Show closed positions"
|
||||
msgstr "Hiển thị các vị trí đã đóng"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "Cho xem nhiều hơn"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "Đơn giản"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "Một số tài sản không khả dụng thông qua giao diện này v
|
||||
msgid "Something went wrong"
|
||||
msgstr "Đã xảy ra sự cố"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "Sắp xếp và lọc nội dung trên các mạng trên trang Mã thông báo mới."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "Số liệu thống kê"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Bước 1. Nhận mã token thanh khoản UNI-V2"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "Cung cấp {0} {1} và {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "Đổi {0} {1} lấy {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "Không tìm thấy ký hiệu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "TVL"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "Hãy thực hiện một cuộc khảo sát trong 10 phút để giúp chúng tôi cải thiện trải nghiệm của bạn trong ứng dụng Uniswap."
|
||||
@@ -1962,14 +1983,6 @@ msgstr "Không thể gửi giao dịch vì đã hết thời hạn. Vui lòng ki
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "Không có dữ liệu thanh khoản."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "Đã xảy ra lỗi khi tìm nạp số dư của bạn"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "Đã xảy ra lỗi khi tải số dư {0} của bạn"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "Địa chỉ này bị chặn trên giao diện Uniswap Labs vì nó được liên kết với một hoặc nhiều"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "Lộ trình này tối ưu hóa tổng sản lượng của bạn bằng
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Mã token này không xuất hiện trên (các) danh sách mã token đang hoạt động. Đảm bảo rằng đây là mã token mà bạn muốn giao dịch."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "Mã thông báo này không có dữ liệu biểu đồ vì nó chưa được giao dịch trên Uniswap v3"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Mã thông báo này không được hỗ trợ trong ứng dụng Uniswap Labs"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "Mã thông báo không được hỗ trợ"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Mã token từ danh sách không hoạt động. Nhập mã token cụ thể bên dưới hoặc nhấp vào Quản lý để kích hoạt thêm danh sách."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Pool hàng đầu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "Tổng giá trị đã khóa"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Các mã thông báo hàng đầu trên Uniswap"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "Tổng số tiền gửi"
|
||||
msgid "Total deposits"
|
||||
msgstr "Tổng số tiền gửi"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "Tổng giá trị bị khóa (TVL) là số lượng tài sản hiện có trong nhóm thanh khoản Uniswap v3."
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "Con đường thương mại"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} Giá:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "Xem phí đã tích lũy và số liệu phân tích <0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "Xem và bán NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "Danh sách xem"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "Xem thêm phân tích"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "Xem trên Etherscan"
|
||||
msgid "View on Explorer"
|
||||
msgstr "Xem trên Explorer"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "Xem phân tích mã thông báo"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "Xem phân tích mã thông báo"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "Xem giao dịch trên Explorer"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "Khối lượng là số lượng tài sản đã được giao dịch trên Uniswap v3 trong khung thời gian đã chọn."
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "Bỏ phiếu"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "Bạn chưa có thanh khoản trong pool này."
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "Bạn không có mã thông báo ưa thích nào"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "Có thể bạn đã mất kết nối mạng hoặc {label} có thể bị ngắt ngay bây giờ."
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "Bạn có thể đã mất kết nối mạng của mình."
|
||||
@@ -2517,9 +2539,9 @@ msgstr "Thanh khoản V2 của bạn"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "Các vị trí thanh khoản V3 đang hoạt động của bạn sẽ xuất hiện tại đây."
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "Số dư của bạn theo mạng"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "Số dư của bạn"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "Các giao dịch của bạn sẽ xuất hiện tại đây..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "UNI chưa được nhận của bạn"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "Số dư {0} của bạn"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "sau khi trượt"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {Nhập mã thông báo} other {Nhập mã thông báo}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {Mã thông báo này chưa được xác minh} other {Những mã thông báo này chưa được xác minh}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {Mã thông báo này chưa được xác minh.} other {Những mã thông báo này không được xác minh.}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} mã token UNI-V2 LP có sẵn"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} phiếu bầu"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} tất cả số dư"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} mã thông báo"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} có thể không hoạt động ngay bây giờ hoặc bạn có thể đã mất kết nối mạng."
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} mã thông báo"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/> 美元"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI 代币 / 每周"
|
||||
msgid "24H volume"
|
||||
msgstr "24小时音量"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H 交易量是过去 24 小时内在 Uniswap v3 上交易的资产数量。"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,8 +240,8 @@ msgid "Amount"
|
||||
msgstr "数额"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgstr "加载令牌时发生错误。请再试一次。"
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "加载令牌时出错。请再试一次。"
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
@@ -373,11 +373,14 @@ msgstr "通过添加流动性,您将按您在流动池中所占比例赚取对
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "添加此代币列表代表您信任其数据是正确的。任何人都可以创建代币列表,包括创建假冒实际列表的造假版本,以及自我声称代表了某项目的代币列表。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "连接钱包即表示您同意 Uniswap Labs 的 <0>服务条款</0> 并确认您已阅读并理解 Uniswap <1>协议免责声明</1>。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "连接钱包即表示您同意 Uniswap Labs 的 <0>服务条款</0> 并同意其 <1>隐私政策</1>。"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "已取消"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "合约地址"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "复制!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "复制"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "执行此提案将在链上制定 calldata。"
|
||||
msgid "Execution Submitted"
|
||||
msgstr "提交执行"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "从待用代币列表中扩展出的结果"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "预期获得"
|
||||
@@ -913,10 +914,9 @@ msgstr "已过期"
|
||||
msgid "Explore"
|
||||
msgstr "探索"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "探索代币"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "探索 Uniswap 上的热门代币"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "浅色主题"
|
||||
msgid "Light theme"
|
||||
msgstr "轻主题"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "链接"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "最小值:"
|
||||
msgid "Minimum received"
|
||||
msgstr "收到的最低数额"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "缺少图表数据"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "缺少依赖套件"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "缺少依赖套件"
|
||||
msgid "More"
|
||||
msgstr "更多"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT 集合"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "网络费用超过兑换金额的50%!"
|
||||
msgid "New Position"
|
||||
msgstr "新仓位"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "没有 NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "找不到V2流动资金。"
|
||||
@@ -1339,7 +1352,7 @@ msgstr "没有可用的令牌信息"
|
||||
msgid "No tokens found"
|
||||
msgstr "未找到令牌"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "未找到令牌。"
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "流动池汇集 {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "游泳池"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "流行的 NFT 合集"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "热门代币"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "排队"
|
||||
msgid "Rates"
|
||||
msgstr "费率"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "阅读更多"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "阅读更多关于 UNI 代币的信息"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "阅读有关不受支持的代币的更多信息"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "最近的交易"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "最近的搜索"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "自我"
|
||||
msgid "Self Delegate"
|
||||
msgstr "自我委托"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "出售 NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "节目取消"
|
||||
msgid "Show closed positions"
|
||||
msgstr "显示已关闭的仓位"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "显示更多"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "简单型"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "有些代币无法通过此界面使用,因为它们可能无法很好
|
||||
msgid "Something went wrong"
|
||||
msgstr "出错了"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "在新的令牌页面上跨网络对资产进行排序和过滤。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "统计数据"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "第 1 步:获取 UNI-V2 流动池代币"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "提供 {0} {1} 和 {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "将 {0} {1} 兑换为 {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "找不到符号"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "电视L"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "参加 10 分钟调查,以帮助我们改善您在 Uniswap 中的体验。"
|
||||
@@ -1962,14 +1983,6 @@ msgstr "由于期限已过,因此无法发送交易。请检查您的交易截
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "没有流动性数据。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "提取余额时出错"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "加载您的 {0} 余额时出错"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "此地址在 Uniswap Labs 界面上被阻止,因为它与一个或多个相关联"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "此路线通过考虑拆分路线、多跳和每一步的 gas 成本来
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "此代币未出现在激活的代币列表中。请确保这是您想要交易的代币。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "此代币没有图表数据,因为它尚未在 Uniswap v3 上交易"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Uniswap Labs 应用程序不支持此代币"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "不支持该代币"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "代币"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "待用代币列表中的代币。在下面导入特定代币或单击“管理”以激活更多列表。"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "顶级流动池"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "总价值锁定"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Uniswap 上的热门代币"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "存入总额"
|
||||
msgid "Total deposits"
|
||||
msgstr "存入总额"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "锁定的总价值 (TVL) 是当前在 Uniswap v3 流动性池中的资产数量。"
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "交易路由"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} 兑换率:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "查看已累积手续费和数据分析<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "查看和出售 NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "查看代币列表"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "查看更多分析"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "在 Etherscan 上查看"
|
||||
msgid "View on Explorer"
|
||||
msgstr "在以太坊资源浏览器上查看"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "查看令牌分析"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "查看令牌分析"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "在以太坊资源浏览器上查看交易"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "交易量是在选定时间范围内在 Uniswap v3 上交易的资产数量。"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "投票"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "您在此流动池中还未有流动资金。"
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "您没有收藏的代币"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "您的网络连接可能已断开,或者 {label} 可能正处停机状态。"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "您的网络连接可能断了。"
|
||||
@@ -2517,9 +2539,9 @@ msgstr "您的V2流动资金"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "您的 V3 流动性仓位将在此显示。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "您的网络余额"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "您的余额"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "您的交易将出现在这里..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "您未领取的 UNI 代币"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "您的 {0} 余额"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "滑点后"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {导入令牌} other {导入代币}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {此令牌未经验证} other {这些令牌未经验证}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {此令牌未经过验证。} other {这些令牌未经验证。}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 流动池代币可用"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} 票"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} 所有余额"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI 代币"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} 代币"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} 现在可能已关闭,或者您可能已丢失网络连接。"
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} 代币桥"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-21 21:05\n"
|
||||
"PO-Revision-Date: 2022-10-11 02:57\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
@@ -21,10 +21,6 @@ msgstr ""
|
||||
msgid "$-"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/CurrencyInputPanel/FiatValue.tsx
|
||||
msgid "$<0/>"
|
||||
msgstr "$<0/> 美元"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/swap/GasEstimateBadge.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -63,6 +59,10 @@ msgstr "0 UNI 代幣 / 每周"
|
||||
msgid "24H volume"
|
||||
msgstr "24小時音量"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "24H volume is the amount of the asset that has been traded on Uniswap v3 during the past 24 hours."
|
||||
msgstr "24H 交易量是過去 24 小時內在 Uniswap v3 上交易的資產數量。"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
msgstr "25%"
|
||||
@@ -240,8 +240,8 @@ msgid "Amount"
|
||||
msgstr "數額"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenTable.tsx
|
||||
msgid "An error occured loading tokens. Please try again."
|
||||
msgstr "加載令牌時發生錯誤。請再試一次。"
|
||||
msgid "An error occurred loading tokens. Please try again."
|
||||
msgstr "加載令牌時出錯。請再試一次。"
|
||||
|
||||
#: src/utils/swapErrorToUserReadableMessage.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
@@ -373,11 +373,14 @@ msgstr "通過添加流動性,您將按您在流動池中所佔比例賺取對
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "添加此代幣列表代表您信任其數據是正確的。任何人都可以創建代幣列表,包括創建假冒實際列表的造假版本,以及自我聲稱代表了某項目的代幣列表。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "連接錢包即表示您同意 Uniswap Labs 的 <0>服務條款</0> 並確認您已閱讀並理解 Uniswap <1>協議免責聲明</1>。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and consent to its <1>Privacy Policy</1>."
|
||||
msgstr "通過連接錢包,您同意 Uniswap Labs 的 <0>服務條款</0> 並同意其 <1>隱私政策</1>。"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "已取消"
|
||||
@@ -605,11 +608,13 @@ msgid "Contract address"
|
||||
msgstr "合約地址"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
#: src/theme/components.tsx
|
||||
msgid "Copied!"
|
||||
msgstr "複製!"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
#: src/nft/components/profile/view/ProfileAccountDetails.tsx
|
||||
msgid "Copy"
|
||||
msgstr "複製"
|
||||
|
||||
@@ -889,10 +894,6 @@ msgstr "執行此提案將在鏈上製定 calldata。"
|
||||
msgid "Execution Submitted"
|
||||
msgstr "提交執行"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "從待用代幣列表中擴展出的結果"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Expected Output"
|
||||
msgstr "預期獲得"
|
||||
@@ -913,10 +914,9 @@ msgstr "已過期"
|
||||
msgid "Explore"
|
||||
msgstr "探索"
|
||||
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Explore Tokens"
|
||||
msgstr "探索代幣"
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Explore Top Tokens on Uniswap"
|
||||
msgstr "探索 Uniswap 上的熱門代幣"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore Uniswap Analytics."
|
||||
@@ -1130,6 +1130,10 @@ msgstr "淺色"
|
||||
msgid "Light theme"
|
||||
msgstr "輕主題"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Links"
|
||||
msgstr "鏈接"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Liquidity"
|
||||
@@ -1262,6 +1266,11 @@ msgstr "最小值:"
|
||||
msgid "Minimum received"
|
||||
msgstr "收到的最低數額"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "Missing chart data"
|
||||
msgstr "缺少圖表數據"
|
||||
|
||||
#: src/lib/hooks/swap/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "缺少依賴套件"
|
||||
@@ -1270,7 +1279,7 @@ msgstr "缺少依賴套件"
|
||||
msgid "More"
|
||||
msgstr "更多"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "NFT Collections"
|
||||
msgstr "NFT 集合"
|
||||
|
||||
@@ -1298,6 +1307,10 @@ msgstr "網絡費用超過兌換金額的50%!"
|
||||
msgid "New Position"
|
||||
msgstr "新倉位"
|
||||
|
||||
#: src/nft/components/profile/view/EmptyWalletContent.tsx
|
||||
msgid "No NFTs in"
|
||||
msgstr "沒有 NFT"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "No V2 Liquidity found."
|
||||
msgstr "找不到V2流動資金。"
|
||||
@@ -1339,7 +1352,7 @@ msgstr "沒有可用的令牌信息"
|
||||
msgid "No tokens found"
|
||||
msgstr "未找到令牌"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "No tokens found."
|
||||
msgstr "未找到令牌。"
|
||||
|
||||
@@ -1468,11 +1481,11 @@ msgstr "流動池匯集 {0}:"
|
||||
msgid "Pools"
|
||||
msgstr "游泳池"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular NFT collections"
|
||||
msgstr "流行的 NFT 合集"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Popular tokens"
|
||||
msgstr "熱門代幣"
|
||||
|
||||
@@ -1577,10 +1590,6 @@ msgstr "排隊"
|
||||
msgid "Rates"
|
||||
msgstr "費率"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Read more"
|
||||
msgstr "閱讀更多"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "了解有關 UNI 的更多資訊"
|
||||
@@ -1601,7 +1610,7 @@ msgstr "閱讀有關不受支持的代幣的更多資訊"
|
||||
msgid "Recent Transactions"
|
||||
msgstr "最近交易"
|
||||
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
msgid "Recent searches"
|
||||
msgstr "最近的搜索"
|
||||
|
||||
@@ -1719,10 +1728,6 @@ msgstr "自身"
|
||||
msgid "Self Delegate"
|
||||
msgstr "自我代表"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "Sell NFTs"
|
||||
msgstr "出售 NFT"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1755,6 +1760,10 @@ msgstr "節目取消"
|
||||
msgid "Show closed positions"
|
||||
msgstr "顯示已關閉的倉位"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/About.tsx
|
||||
msgid "Show more"
|
||||
msgstr "顯示更多"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
msgstr "簡單型"
|
||||
@@ -1771,6 +1780,14 @@ msgstr "有些代幣無法通過此界面使用,因為它們可能無法很好
|
||||
msgid "Something went wrong"
|
||||
msgstr "出問題了"
|
||||
|
||||
#: src/components/Tokens/TokensBanner.tsx
|
||||
msgid "Sort and filter assets across networks on the new Tokens page."
|
||||
msgstr "在新的令牌頁面上跨網絡對資產進行排序和過濾。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Stats"
|
||||
msgstr "統計數據"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "第 1 步:獲取 UNI-V2 流動池代幣"
|
||||
@@ -1806,7 +1823,7 @@ msgstr "供應 {0} {1} 和 {2} {3}"
|
||||
#: src/components/AccountDetailsV2/TransactionBody.tsx
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/swap/SwapHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1848,6 +1865,10 @@ msgstr "將 {0} {1} 兌換為 {2} {3}"
|
||||
msgid "Symbol not found"
|
||||
msgstr "找不到符號"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "TVL"
|
||||
msgstr "電視L"
|
||||
|
||||
#: src/components/Popups/SurveyPopup.tsx
|
||||
msgid "Take a 10 minute survey to help us improve your experience in the Uniswap app."
|
||||
msgstr "進行 10 分鐘調查,以幫助我們改善您在 Uniswap 中的體驗。"
|
||||
@@ -1962,14 +1983,6 @@ msgstr "由於期限已過,因此無法發送交易。請檢查您的交易截
|
||||
msgid "There is no liquidity data."
|
||||
msgstr "沒有流動性數據。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "There was an error fetching your balance"
|
||||
msgstr "提取餘額時出錯"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "There was an error loading your {0} balance"
|
||||
msgstr "加載您的 {0} 餘額時出錯"
|
||||
|
||||
#: src/components/ConnectedAccountBlocked/index.tsx
|
||||
msgid "This address is blocked on the Uniswap Labs interface because it is associated with one or more"
|
||||
msgstr "此地址在 Uniswap Labs 界面上被阻止,因為它與一個或多個相關聯"
|
||||
@@ -1994,6 +2007,10 @@ msgstr "此路線通過考慮拆分路線、多跳和每一步的 gas 成本來
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "此代幣未出現在激活的代幣列表中。請確保這是您想要交易的代幣。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/PriceChart.tsx
|
||||
msgid "This token doesn't have chart data because it hasn't been traded on Uniswap v3"
|
||||
msgstr "該代幣沒有圖表數據,因為它尚未在 Uniswap v3 上交易"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Uniswap Labs 應用程序不支持此代幣"
|
||||
@@ -2033,23 +2050,20 @@ msgid "Token not supported"
|
||||
msgstr "不支持此代幣"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavBar/SearchBar.tsx
|
||||
#: src/components/NavBar/SearchBarDropdown.tsx
|
||||
#: src/components/NavBar/index.tsx
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "代幣"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList/index.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "待用代幣列表中的代幣。在下面導入特定代幣或單擊“管理”以激活更多代幣列表。"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "較活躍的流動池"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/StatsSection.tsx
|
||||
msgid "Total Value Locked"
|
||||
msgstr "總價值鎖定"
|
||||
#: src/pages/Tokens/index.tsx
|
||||
#: src/pages/Tokens/index.tsx
|
||||
msgid "Top tokens on Uniswap"
|
||||
msgstr "Uniswap 上的熱門代幣"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -2059,6 +2073,10 @@ msgstr "存入總額"
|
||||
msgid "Total deposits"
|
||||
msgstr "存款總額"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Total value locked (TVL) is the amount of the asset that’s currently in a Uniswap v3 liquidity pool."
|
||||
msgstr "鎖定的總價值 (TVL) 是當前在 Uniswap v3 流動性池中的資產數量。"
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "交易路由"
|
||||
@@ -2263,10 +2281,18 @@ msgstr "V3 {0} 兌換率:"
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "查看已累積手續費和數據分析<0>↗</0>"
|
||||
|
||||
#: src/components/WalletDropdown/AuthenticatedHeader.tsx
|
||||
msgid "View and sell NFTs"
|
||||
msgstr "查看和出售 NFT"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
msgstr "查看代幣列表"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View more analytics"
|
||||
msgstr "查看更多分析"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "View on Etherscan"
|
||||
@@ -2278,10 +2304,6 @@ msgstr "在Etherscan上查看"
|
||||
msgid "View on Explorer"
|
||||
msgstr "在以太坊資源瀏覽器上查看"
|
||||
|
||||
#: src/components/NavBar/MenuDropdown.tsx
|
||||
msgid "View token analytics"
|
||||
msgstr "查看令牌分析"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -2291,6 +2313,10 @@ msgstr "查看令牌分析"
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "在以太坊資源瀏覽器上查看"
|
||||
|
||||
#: src/components/Tokens/TokenTable/TokenRow.tsx
|
||||
msgid "Volume is the amount of the asset that has been traded on Uniswap v3 during the selected time frame."
|
||||
msgstr "交易量是在選定時間範圍內在 Uniswap v3 上交易的資產數量。"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
msgstr "投票"
|
||||
@@ -2472,10 +2498,6 @@ msgstr "您在此流動池中還未有流動資金。"
|
||||
msgid "You have no favorited tokens"
|
||||
msgstr "您沒有收藏的代幣"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection, or {label} might be down right now."
|
||||
msgstr "您的網絡連接可能已斷開,或者 {label} 可能正處停機狀態。"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "You may have lost your network connection."
|
||||
msgstr "您的網絡連接可能斷了。"
|
||||
@@ -2517,9 +2539,9 @@ msgstr "您的V2流動資金"
|
||||
msgid "Your active V3 liquidity positions will appear here."
|
||||
msgstr "您的 V3 流動性倉位將在此顯示。"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "Your balances by network"
|
||||
msgstr "您的網絡餘額"
|
||||
#: src/components/Tokens/TokenDetails/BalanceSummary.tsx
|
||||
msgid "Your balance"
|
||||
msgstr "您的餘額"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Your connected network is unsupported."
|
||||
@@ -2608,6 +2630,11 @@ msgstr "您的交易將出現在這裏..."
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "您未領取的 UNI 代幣"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
#: src/components/Tokens/TokenDetails/MobileBalanceSummaryFooter.tsx
|
||||
msgid "Your {0} balance"
|
||||
msgstr "您的 {0} 餘額"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "after slippage"
|
||||
msgstr "滑點後"
|
||||
@@ -2684,8 +2711,8 @@ msgid "{0, plural, =1 {Import token} other {Import tokens}}"
|
||||
msgstr "{0, plural, =1 {導入令牌} other {導入代幣}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {This token isn't verified} other {These tokens aren't verified}}"
|
||||
msgstr "{0, plural, =1 {此令牌未經驗證} other {這些令牌未經驗證}}"
|
||||
msgid "{0, plural, =1 {This token isn't verified.} other {These tokens aren't verified.}}"
|
||||
msgstr "{0, plural, =1 {此令牌未經過驗證。} other {這些令牌未經驗證。}}"
|
||||
|
||||
#: src/constants/tokenSafety.tsx
|
||||
msgid "{0, plural, =1 {You can't trade this token using the Uniswap App.} other {You can't trade these tokens using the Uniswap App.}}"
|
||||
@@ -2758,10 +2785,6 @@ msgstr "{0} UNI-V2 流動池代幣可用"
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} 票"
|
||||
|
||||
#: src/components/Tokens/TokenDetails/FooterBalanceSummary.tsx
|
||||
msgid "{0} all balances"
|
||||
msgstr "{0} 所有餘額"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -2839,6 +2862,10 @@ msgstr "{USER_AMOUNT} UNI"
|
||||
msgid "{activeTokensOnThisChain} tokens"
|
||||
msgstr "{activeTokensOnThisChain} 代幣"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "{label} might be down right now, or you may have lost your network connection."
|
||||
msgstr "{label} 現在可能已關閉,或者您可能已丟失網絡連接。"
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "{label} token bridge"
|
||||
msgstr "{label} 代幣橋"
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import { style } from '@vanilla-extract/css'
|
||||
import { subhead } from 'nft/css/common.css'
|
||||
import { breakpoints, sprinkles, vars } from 'nft/css/sprinkles.css'
|
||||
import { breakpoints, sprinkles } from 'nft/css/sprinkles.css'
|
||||
|
||||
export const bagContainer = style([
|
||||
sprinkles({
|
||||
@@ -35,27 +34,3 @@ export const assetsContainer = style([
|
||||
scrollbarWidth: 'none',
|
||||
},
|
||||
])
|
||||
|
||||
export const header = style([
|
||||
subhead,
|
||||
sprinkles({
|
||||
color: 'textPrimary',
|
||||
justifyContent: 'space-between',
|
||||
}),
|
||||
{
|
||||
lineHeight: '24px',
|
||||
},
|
||||
])
|
||||
|
||||
export const clearAll = style([
|
||||
sprinkles({
|
||||
color: 'textTertiary',
|
||||
cursor: 'pointer',
|
||||
fontWeight: 'semibold',
|
||||
}),
|
||||
{
|
||||
':hover': {
|
||||
color: vars.color.blue400,
|
||||
},
|
||||
},
|
||||
])
|
||||
|
||||
@@ -3,21 +3,28 @@ import { formatEther } from '@ethersproject/units'
|
||||
import { useWeb3React } from '@web3-react/core'
|
||||
import { parseEther } from 'ethers/lib/utils'
|
||||
import { BagFooter } from 'nft/components/bag/BagFooter'
|
||||
import { BagRow, PriceChangeBagRow, UnavailableAssetsHeaderRow } from 'nft/components/bag/BagRow'
|
||||
import ListingModal from 'nft/components/bag/profile/ListingModal'
|
||||
import { Box } from 'nft/components/Box'
|
||||
import { Portal } from 'nft/components/common/Portal'
|
||||
import { Center, Column, Row } from 'nft/components/Flex'
|
||||
import { BagCloseIcon, LargeBagIcon } from 'nft/components/icons'
|
||||
import { Center, Column } from 'nft/components/Flex'
|
||||
import { LargeBagIcon, LargeTagIcon } from 'nft/components/icons'
|
||||
import { Overlay } from 'nft/components/modals/Overlay'
|
||||
import { subhead } from 'nft/css/common.css'
|
||||
import { buttonTextMedium, commonButtonStyles, subhead } from 'nft/css/common.css'
|
||||
import { themeVars } from 'nft/css/sprinkles.css'
|
||||
import { useBag, useIsMobile, useSendTransaction, useTransactionResponse, useWalletBalance } from 'nft/hooks'
|
||||
import {
|
||||
useBag,
|
||||
useIsMobile,
|
||||
useProfilePageState,
|
||||
useSellAsset,
|
||||
useSendTransaction,
|
||||
useTransactionResponse,
|
||||
useWalletBalance,
|
||||
} from 'nft/hooks'
|
||||
import { fetchRoute } from 'nft/queries'
|
||||
import { BagItemStatus, BagStatus, RouteResponse, TxStateType } from 'nft/types'
|
||||
import { BagItemStatus, BagStatus, ProfilePageStateType, RouteResponse, TxStateType } from 'nft/types'
|
||||
import { buildSellObject } from 'nft/utils/buildSellObject'
|
||||
import { recalculateBagUsingPooledAssets } from 'nft/utils/calcPoolPrice'
|
||||
import { fetchPrice } from 'nft/utils/fetchPrice'
|
||||
import { roundAndPluralize } from 'nft/utils/roundAndPluralize'
|
||||
import { combineBuyItemsWithTxRoute } from 'nft/utils/txRoute/combineItemsWithTxRoute'
|
||||
import { sortUpdatedAssets } from 'nft/utils/updatedAssets'
|
||||
import { useEffect, useMemo, useRef, useState } from 'react'
|
||||
@@ -25,22 +32,36 @@ import { useQuery, useQueryClient } from 'react-query'
|
||||
import { useLocation } from 'react-router-dom'
|
||||
|
||||
import * as styles from './Bag.css'
|
||||
import { BagContent } from './BagContent'
|
||||
import { BagHeader } from './BagHeader'
|
||||
import { ProfileBagContent } from './profile/ProfileBagContent'
|
||||
|
||||
const EmptyState = () => {
|
||||
const { pathname } = useLocation()
|
||||
const isProfilePage = pathname.startsWith('/profile')
|
||||
|
||||
return (
|
||||
<Center height="full">
|
||||
<Column gap="12">
|
||||
<Column gap={isProfilePage ? '16' : '12'}>
|
||||
<Center>
|
||||
<LargeBagIcon color={themeVars.colors.textTertiary} />
|
||||
{isProfilePage ? (
|
||||
<LargeTagIcon color={themeVars.colors.textTertiary} />
|
||||
) : (
|
||||
<LargeBagIcon color={themeVars.colors.textTertiary} />
|
||||
)}
|
||||
</Center>
|
||||
<Column gap="16">
|
||||
<Center className={subhead} style={{ lineHeight: '24px' }}>
|
||||
Your bag is empty
|
||||
</Center>
|
||||
<Center fontSize="12" fontWeight="normal" color="textSecondary" style={{ lineHeight: '16px' }}>
|
||||
Selected NFTs will appear here
|
||||
</Center>
|
||||
</Column>
|
||||
{isProfilePage ? (
|
||||
<span className={subhead}>No NFTs Selected</span>
|
||||
) : (
|
||||
<Column gap="16">
|
||||
<Center className={subhead} style={{ lineHeight: '24px' }}>
|
||||
Your bag is empty
|
||||
</Center>
|
||||
<Center fontSize="12" fontWeight="normal" color="textSecondary" style={{ lineHeight: '16px' }}>
|
||||
Selected NFTs will appear here
|
||||
</Center>
|
||||
</Column>
|
||||
)}
|
||||
</Column>
|
||||
</Center>
|
||||
)
|
||||
@@ -64,52 +85,21 @@ const ScrollingIndicator = ({ top, show }: SeparatorProps) => (
|
||||
/>
|
||||
)
|
||||
|
||||
interface BagHeaderProps {
|
||||
numberOfAssets: number
|
||||
toggleBag: () => void
|
||||
resetFlow: () => void
|
||||
}
|
||||
|
||||
const BagHeader = ({ numberOfAssets, toggleBag, resetFlow }: BagHeaderProps) => {
|
||||
return (
|
||||
<Column gap="4" paddingX="32" marginBottom="20">
|
||||
<Row className={styles.header}>
|
||||
My bag
|
||||
<Box display="flex" padding="2" color="textSecondary" cursor="pointer" onClick={toggleBag}>
|
||||
<BagCloseIcon />
|
||||
</Box>
|
||||
</Row>
|
||||
{numberOfAssets > 0 && (
|
||||
<Box fontSize="14" fontWeight="normal" style={{ lineHeight: '20px' }} color="textPrimary">
|
||||
{roundAndPluralize(numberOfAssets, 'NFT')} ·{' '}
|
||||
<Box
|
||||
as="span"
|
||||
className={styles.clearAll}
|
||||
onClick={() => {
|
||||
resetFlow()
|
||||
}}
|
||||
>
|
||||
Clear all
|
||||
</Box>
|
||||
</Box>
|
||||
)}
|
||||
</Column>
|
||||
)
|
||||
}
|
||||
|
||||
const Bag = () => {
|
||||
const { account } = useWeb3React()
|
||||
const bagStatus = useBag((s) => s.bagStatus)
|
||||
const setBagStatus = useBag((s) => s.setBagStatus)
|
||||
const markAssetAsReviewed = useBag((s) => s.markAssetAsReviewed)
|
||||
const didOpenUnavailableAssets = useBag((s) => s.didOpenUnavailableAssets)
|
||||
const setDidOpenUnavailableAssets = useBag((s) => s.setDidOpenUnavailableAssets)
|
||||
const bagIsLocked = useBag((s) => s.isLocked)
|
||||
const setLocked = useBag((s) => s.setLocked)
|
||||
const reset = useBag((s) => s.reset)
|
||||
const resetSellAssets = useSellAsset((state) => state.reset)
|
||||
const sellAssets = useSellAsset((state) => state.sellAssets)
|
||||
const setProfilePageState = useProfilePageState((state) => state.setProfilePageState)
|
||||
const profilePageState = useProfilePageState((state) => state.state)
|
||||
const uncheckedItemsInBag = useBag((s) => s.itemsInBag)
|
||||
const setItemsInBag = useBag((s) => s.setItemsInBag)
|
||||
const removeAssetFromBag = useBag((s) => s.removeAssetFromBag)
|
||||
const bagExpanded = useBag((s) => s.bagExpanded)
|
||||
const toggleBag = useBag((s) => s.toggleBag)
|
||||
const setTotalEthPrice = useBag((s) => s.setTotalEthPrice)
|
||||
@@ -121,7 +111,7 @@ const Bag = () => {
|
||||
const { pathname } = useLocation()
|
||||
const isProfilePage = pathname.startsWith('/profile')
|
||||
const isNFTPage = pathname.startsWith('/nfts')
|
||||
const shouldShowBag = isNFTPage && !isProfilePage
|
||||
const shouldShowBag = isNFTPage || isProfilePage
|
||||
const isMobile = useIsMobile()
|
||||
|
||||
const sendTransaction = useSendTransaction((state) => state.sendTransaction)
|
||||
@@ -255,31 +245,6 @@ const Bag = () => {
|
||||
useSendTransaction.subscribe((state) => (transactionStateRef.current = state.state))
|
||||
}, [])
|
||||
|
||||
const { unchangedAssets, priceChangedAssets, unavailableAssets, availableItems } = useMemo(() => {
|
||||
const unchangedAssets = itemsInBag
|
||||
.filter((item) => item.status === BagItemStatus.ADDED_TO_BAG || item.status === BagItemStatus.REVIEWED)
|
||||
.map((item) => item.asset)
|
||||
const priceChangedAssets = itemsInBag
|
||||
.filter((item) => item.status === BagItemStatus.REVIEWING_PRICE_CHANGE)
|
||||
.map((item) => item.asset)
|
||||
const unavailableAssets = itemsInBag
|
||||
.filter((item) => item.status === BagItemStatus.UNAVAILABLE)
|
||||
.map((item) => item.asset)
|
||||
const availableItems = itemsInBag.filter((item) => item.status !== BagItemStatus.UNAVAILABLE)
|
||||
|
||||
return { unchangedAssets, priceChangedAssets, unavailableAssets, availableItems }
|
||||
}, [itemsInBag])
|
||||
|
||||
useEffect(() => {
|
||||
const hasAssetsInReview = priceChangedAssets.length > 0
|
||||
const hasAssets = itemsInBag.length > 0
|
||||
|
||||
if (bagStatus === BagStatus.IN_REVIEW && !hasAssetsInReview) {
|
||||
if (hasAssets) setBagStatus(BagStatus.CONFIRM_REVIEW)
|
||||
else setBagStatus(BagStatus.ADDING_TO_BAG)
|
||||
}
|
||||
}, [bagStatus, itemsInBag, priceChangedAssets, setBagStatus])
|
||||
|
||||
useEffect(() => {
|
||||
if (bagIsLocked && !isOpen) setModalIsOpen(true)
|
||||
}, [bagIsLocked, isOpen])
|
||||
@@ -307,7 +272,7 @@ const Bag = () => {
|
||||
setTotalUsdPrice(totalUsdPrice)
|
||||
}, [totalEthPrice, totalUsdPrice, setTotalEthPrice, setTotalUsdPrice])
|
||||
|
||||
const hasAssetsToShow = itemsInBag.length > 0 || unavailableAssets.length > 0
|
||||
const hasAssetsToShow = itemsInBag.length > 0
|
||||
|
||||
const scrollHandler = (event: React.UIEvent<HTMLDivElement>) => {
|
||||
const scrollTop = event.currentTarget.scrollTop
|
||||
@@ -322,57 +287,52 @@ const Bag = () => {
|
||||
{bagExpanded && shouldShowBag ? (
|
||||
<Portal>
|
||||
<Column zIndex={isMobile || isOpen ? 'modal' : '3'} className={styles.bagContainer}>
|
||||
<BagHeader numberOfAssets={itemsInBag.length} toggleBag={toggleBag} resetFlow={reset} />
|
||||
{itemsInBag.length === 0 && bagStatus === BagStatus.ADDING_TO_BAG && <EmptyState />}
|
||||
<ScrollingIndicator top show={userCanScroll && scrollProgress > 0} />
|
||||
<Column ref={scrollRef} className={styles.assetsContainer} onScroll={scrollHandler} gap="12">
|
||||
<Column display={priceChangedAssets.length > 0 || unavailableAssets.length > 0 ? 'flex' : 'none'}>
|
||||
{unavailableAssets.length > 0 && (
|
||||
<UnavailableAssetsHeaderRow
|
||||
assets={unavailableAssets}
|
||||
usdPrice={fetchedPriceData}
|
||||
clearUnavailableAssets={() => setItemsInBag(availableItems)}
|
||||
didOpenUnavailableAssets={didOpenUnavailableAssets}
|
||||
setDidOpenUnavailableAssets={setDidOpenUnavailableAssets}
|
||||
isMobile={isMobile}
|
||||
{!(isProfilePage && profilePageState === ProfilePageStateType.LISTING) ? (
|
||||
<>
|
||||
<BagHeader
|
||||
numberOfAssets={isProfilePage ? sellAssets.length : itemsInBag.length}
|
||||
toggleBag={toggleBag}
|
||||
resetFlow={isProfilePage ? resetSellAssets : reset}
|
||||
isProfilePage={isProfilePage}
|
||||
/>
|
||||
{(!isProfilePage && itemsInBag.length === 0 && bagStatus === BagStatus.ADDING_TO_BAG) ||
|
||||
(isProfilePage && sellAssets.length === 0 && <EmptyState />)}
|
||||
<ScrollingIndicator top show={userCanScroll && scrollProgress > 0} />
|
||||
<Column ref={scrollRef} className={styles.assetsContainer} onScroll={scrollHandler} gap="12">
|
||||
{isProfilePage ? <ProfileBagContent /> : <BagContent />}
|
||||
</Column>
|
||||
<ScrollingIndicator show={userCanScroll && scrollProgress < 100} />
|
||||
{hasAssetsToShow && !isProfilePage && (
|
||||
<BagFooter
|
||||
balance={balance}
|
||||
sufficientBalance={sufficientBalance}
|
||||
isConnected={isConnected}
|
||||
totalEthPrice={totalEthPrice}
|
||||
totalUsdPrice={totalUsdPrice}
|
||||
bagStatus={bagStatus}
|
||||
fetchAssets={fetchAssets}
|
||||
assetsAreInReview={itemsInBag.some((item) => item.status === BagItemStatus.REVIEWING_PRICE_CHANGE)}
|
||||
/>
|
||||
)}
|
||||
{priceChangedAssets.map((asset, index) => (
|
||||
<PriceChangeBagRow
|
||||
key={asset.id}
|
||||
asset={asset}
|
||||
usdPrice={fetchedPriceData}
|
||||
markAssetAsReviewed={markAssetAsReviewed}
|
||||
top={index === 0 && unavailableAssets.length === 0}
|
||||
isMobile={isMobile}
|
||||
/>
|
||||
))}
|
||||
</Column>
|
||||
<Column gap="8">
|
||||
{unchangedAssets.map((asset) => (
|
||||
<BagRow
|
||||
key={asset.id}
|
||||
asset={asset}
|
||||
usdPrice={fetchedPriceData}
|
||||
removeAsset={removeAssetFromBag}
|
||||
showRemove={true}
|
||||
isMobile={isMobile}
|
||||
/>
|
||||
))}
|
||||
</Column>
|
||||
</Column>
|
||||
<ScrollingIndicator show={userCanScroll && scrollProgress < 100} />
|
||||
{hasAssetsToShow && (
|
||||
<BagFooter
|
||||
balance={balance}
|
||||
sufficientBalance={sufficientBalance}
|
||||
isConnected={isConnected}
|
||||
totalEthPrice={totalEthPrice}
|
||||
totalUsdPrice={totalUsdPrice}
|
||||
bagStatus={bagStatus}
|
||||
fetchAssets={fetchAssets}
|
||||
assetsAreInReview={itemsInBag.some((item) => item.status === BagItemStatus.REVIEWING_PRICE_CHANGE)}
|
||||
/>
|
||||
{sellAssets.length !== 0 && isProfilePage && (
|
||||
<Box
|
||||
marginTop="32"
|
||||
marginX="28"
|
||||
paddingY="10"
|
||||
className={`${buttonTextMedium} ${commonButtonStyles}`}
|
||||
backgroundColor="accentAction"
|
||||
textAlign="center"
|
||||
onClick={() => {
|
||||
isMobile && toggleBag()
|
||||
setProfilePageState(ProfilePageStateType.LISTING)
|
||||
}}
|
||||
>
|
||||
Continue
|
||||
</Box>
|
||||
)}
|
||||
</>
|
||||
) : (
|
||||
<ListingModal />
|
||||
)}
|
||||
</Column>
|
||||
{isOpen && <Overlay onClick={() => (!bagIsLocked ? setModalIsOpen(false) : undefined)} />}
|
||||
|
||||
91
src/nft/components/bag/BagContent.tsx
Normal file
91
src/nft/components/bag/BagContent.tsx
Normal file
@@ -0,0 +1,91 @@
|
||||
import { BagRow, PriceChangeBagRow, UnavailableAssetsHeaderRow } from 'nft/components/bag/BagRow'
|
||||
import { Column } from 'nft/components/Flex'
|
||||
import { useBag, useIsMobile } from 'nft/hooks'
|
||||
import { BagItemStatus, BagStatus } from 'nft/types'
|
||||
import { recalculateBagUsingPooledAssets } from 'nft/utils/calcPoolPrice'
|
||||
import { fetchPrice } from 'nft/utils/fetchPrice'
|
||||
import { useEffect, useMemo } from 'react'
|
||||
import { useQuery } from 'react-query'
|
||||
|
||||
export const BagContent = () => {
|
||||
const bagStatus = useBag((s) => s.bagStatus)
|
||||
const setBagStatus = useBag((s) => s.setBagStatus)
|
||||
const markAssetAsReviewed = useBag((s) => s.markAssetAsReviewed)
|
||||
const didOpenUnavailableAssets = useBag((s) => s.didOpenUnavailableAssets)
|
||||
const setDidOpenUnavailableAssets = useBag((s) => s.setDidOpenUnavailableAssets)
|
||||
const uncheckedItemsInBag = useBag((s) => s.itemsInBag)
|
||||
const setItemsInBag = useBag((s) => s.setItemsInBag)
|
||||
const removeAssetFromBag = useBag((s) => s.removeAssetFromBag)
|
||||
|
||||
const isMobile = useIsMobile()
|
||||
|
||||
const itemsInBag = useMemo(() => {
|
||||
return recalculateBagUsingPooledAssets(uncheckedItemsInBag)
|
||||
}, [uncheckedItemsInBag])
|
||||
|
||||
const { data: fetchedPriceData } = useQuery(['fetchPrice', {}], () => fetchPrice(), {})
|
||||
|
||||
const { unchangedAssets, priceChangedAssets, unavailableAssets, availableItems } = useMemo(() => {
|
||||
const unchangedAssets = itemsInBag
|
||||
.filter((item) => item.status === BagItemStatus.ADDED_TO_BAG || item.status === BagItemStatus.REVIEWED)
|
||||
.map((item) => item.asset)
|
||||
const priceChangedAssets = itemsInBag
|
||||
.filter((item) => item.status === BagItemStatus.REVIEWING_PRICE_CHANGE)
|
||||
.map((item) => item.asset)
|
||||
const unavailableAssets = itemsInBag
|
||||
.filter((item) => item.status === BagItemStatus.UNAVAILABLE)
|
||||
.map((item) => item.asset)
|
||||
const availableItems = itemsInBag.filter((item) => item.status !== BagItemStatus.UNAVAILABLE)
|
||||
|
||||
return { unchangedAssets, priceChangedAssets, unavailableAssets, availableItems }
|
||||
}, [itemsInBag])
|
||||
|
||||
useEffect(() => {
|
||||
const hasAssetsInReview = priceChangedAssets.length > 0
|
||||
const hasAssets = itemsInBag.length > 0
|
||||
|
||||
if (bagStatus === BagStatus.IN_REVIEW && !hasAssetsInReview) {
|
||||
if (hasAssets) setBagStatus(BagStatus.CONFIRM_REVIEW)
|
||||
else setBagStatus(BagStatus.ADDING_TO_BAG)
|
||||
}
|
||||
}, [bagStatus, itemsInBag, priceChangedAssets, setBagStatus])
|
||||
|
||||
return (
|
||||
<>
|
||||
<Column display={priceChangedAssets.length > 0 || unavailableAssets.length > 0 ? 'flex' : 'none'}>
|
||||
{unavailableAssets.length > 0 && (
|
||||
<UnavailableAssetsHeaderRow
|
||||
assets={unavailableAssets}
|
||||
usdPrice={fetchedPriceData}
|
||||
clearUnavailableAssets={() => setItemsInBag(availableItems)}
|
||||
didOpenUnavailableAssets={didOpenUnavailableAssets}
|
||||
setDidOpenUnavailableAssets={setDidOpenUnavailableAssets}
|
||||
isMobile={isMobile}
|
||||
/>
|
||||
)}
|
||||
{priceChangedAssets.map((asset, index) => (
|
||||
<PriceChangeBagRow
|
||||
key={asset.id}
|
||||
asset={asset}
|
||||
usdPrice={fetchedPriceData}
|
||||
markAssetAsReviewed={markAssetAsReviewed}
|
||||
top={index === 0 && unavailableAssets.length === 0}
|
||||
isMobile={isMobile}
|
||||
/>
|
||||
))}
|
||||
</Column>
|
||||
<Column gap="8">
|
||||
{unchangedAssets.map((asset) => (
|
||||
<BagRow
|
||||
key={asset.id}
|
||||
asset={asset}
|
||||
usdPrice={fetchedPriceData}
|
||||
removeAsset={removeAssetFromBag}
|
||||
showRemove={true}
|
||||
isMobile={isMobile}
|
||||
/>
|
||||
))}
|
||||
</Column>
|
||||
</>
|
||||
)
|
||||
}
|
||||
27
src/nft/components/bag/BagHeader.css.ts
Normal file
27
src/nft/components/bag/BagHeader.css.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { style } from '@vanilla-extract/css'
|
||||
import { subhead } from 'nft/css/common.css'
|
||||
import { sprinkles, vars } from 'nft/css/sprinkles.css'
|
||||
|
||||
export const header = style([
|
||||
subhead,
|
||||
sprinkles({
|
||||
color: 'textPrimary',
|
||||
justifyContent: 'space-between',
|
||||
}),
|
||||
{
|
||||
lineHeight: '24px',
|
||||
},
|
||||
])
|
||||
|
||||
export const clearAll = style([
|
||||
sprinkles({
|
||||
color: 'textTertiary',
|
||||
cursor: 'pointer',
|
||||
fontWeight: 'semibold',
|
||||
}),
|
||||
{
|
||||
':hover': {
|
||||
color: vars.color.blue400,
|
||||
},
|
||||
},
|
||||
])
|
||||
40
src/nft/components/bag/BagHeader.tsx
Normal file
40
src/nft/components/bag/BagHeader.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
import { Box } from 'nft/components/Box'
|
||||
import { Column, Row } from 'nft/components/Flex'
|
||||
import { BagCloseIcon } from 'nft/components/icons'
|
||||
import { roundAndPluralize } from 'nft/utils/roundAndPluralize'
|
||||
|
||||
import * as styles from './BagHeader.css'
|
||||
|
||||
interface BagHeaderProps {
|
||||
numberOfAssets: number
|
||||
toggleBag: () => void
|
||||
resetFlow: () => void
|
||||
isProfilePage: boolean
|
||||
}
|
||||
|
||||
export const BagHeader = ({ numberOfAssets, toggleBag, resetFlow, isProfilePage }: BagHeaderProps) => {
|
||||
return (
|
||||
<Column gap="4" paddingX="32" marginBottom="20">
|
||||
<Row className={styles.header}>
|
||||
{isProfilePage ? 'Sell NFTs' : 'My bag'}
|
||||
<Box display="flex" padding="2" color="textSecondary" cursor="pointer" onClick={toggleBag}>
|
||||
<BagCloseIcon />
|
||||
</Box>
|
||||
</Row>
|
||||
{numberOfAssets > 0 && (
|
||||
<Box fontSize="14" fontWeight="normal" style={{ lineHeight: '20px' }} color="textPrimary">
|
||||
{roundAndPluralize(numberOfAssets, 'NFT')} ·{' '}
|
||||
<Box
|
||||
as="span"
|
||||
className={styles.clearAll}
|
||||
onClick={() => {
|
||||
resetFlow()
|
||||
}}
|
||||
>
|
||||
Clear all
|
||||
</Box>
|
||||
</Box>
|
||||
)}
|
||||
</Column>
|
||||
)
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user