diff --git a/.env b/.env index 6015177c84..9285b9c4a2 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -REACT_APP_INFURA_KEY="4bf032f2d38a4ed6bb975b80d6340847" +REACT_APP_INFURA_KEY="4bf032f2d38a4ed6bb975b80d6340847" \ No newline at end of file diff --git a/.github/workflows/depcheck.yaml b/.github/workflows/depcheck.yaml new file mode 100644 index 0000000000..e796d9c70a --- /dev/null +++ b/.github/workflows/depcheck.yaml @@ -0,0 +1,43 @@ +name: Bundle Dependency Check +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + depcheck: + name: Bundle depcheck + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up node + uses: actions/setup-node@v2 + with: + node-version: 14 + registry-url: https://registry.npmjs.org + + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - uses: actions/cache@v2 + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + + - name: Install dependencies + run: yarn install --frozen-lockfile + + - name: Bundle + run: yarn bundle + + - name: Depcheck + run: yarn bundle:depcheck \ No newline at end of file diff --git a/.gitignore b/.gitignore index ef4bb39411..ca90e20ef2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,10 +3,18 @@ # generated contract types /src/types/v3 /src/abis/types +/src/lib/locales/**/*.js +/src/lib/locales/**/en-US.po +/src/lib/locales/**/pseudo.po /src/locales/**/*.js /src/locales/**/en-US.po +/src/locales/**/pseudo.po /src/state/data/generated.ts +# generated assets +/src/lib/assets/svg/*.tsx +/src/lib/assets/fonts/*.css + # dependencies /node_modules diff --git a/cosmos.config.json b/cosmos.config.json index 225e119553..fdcc5fe5c0 100644 --- a/cosmos.config.json +++ b/cosmos.config.json @@ -1,7 +1,9 @@ { - "staticPath": "public", - "watchDirs": ["src"], + "watchDirs": [ + "src" + ], "webpack": { - "configPath": "react-scripts/config/webpack.config" + "configPath": "react-scripts/config/webpack.config", + "overridePath": "cosmos.override.js" } -} +} \ No newline at end of file diff --git a/cosmos.override.js b/cosmos.override.js new file mode 100644 index 0000000000..79b6fa227a --- /dev/null +++ b/cosmos.override.js @@ -0,0 +1,14 @@ +// eslint-disable-next-line @typescript-eslint/no-var-requires +const HtmlWebpackPlugin = require('html-webpack-plugin') + +// Renders the cosmos fixtures in isolation, instead of using public/index.html. +module.exports = (webpackConfig) => ({ + ...webpackConfig, + plugins: webpackConfig.plugins.map((plugin) => + plugin instanceof HtmlWebpackPlugin + ? new HtmlWebpackPlugin({ + templateContent: '', + }) + : plugin + ), +}) diff --git a/depcheck.js b/depcheck.js new file mode 100644 index 0000000000..c28dcab5da --- /dev/null +++ b/depcheck.js @@ -0,0 +1,28 @@ +#!/bin/node +/** + * Checks if any dependencies have been bundled with the interface library. + * Exits with non-zero status if dependencies are included in the bundle. + */ +/* eslint-disable */ + +const { readFile } = require('fs') + +function checkDeps(err, sourcemap) { + if (err) { + console.error(err) + process.exit(1) + } + + const includesDeps = sourcemap.includes('node_modules') + if (includesDeps) { + const deps = [...sourcemap.toString().matchAll(/node_modules[\\\/]([^\\\/]*)/g)].map(([, match]) => match) + console.error(` +Sourcemap includes node_modules folder(s). External deps must be bundled under "dependencies". + +To fix, run: \`yarn add ${deps.join(' ')}\` +`) + process.exit(1) + } +} + +readFile('dist/interface.esm.js.map', checkDeps) diff --git a/lingui.config.ts b/lingui.config.ts index 7f22424da3..5d4fad743e 100644 --- a/lingui.config.ts +++ b/lingui.config.ts @@ -46,11 +46,13 @@ const linguiConfig = { 'vi-VN', 'zh-CN', 'zh-TW', + 'pseudo', ], orderBy: 'messageId', rootDir: '.', runtimeConfigModule: ['@lingui/core', 'i18n'], sourceLocale: 'en-US', + pseudoLocale: 'pseudo', } export default linguiConfig diff --git a/package.json b/package.json index 9b4e28f973..c72e3aedd5 100644 --- a/package.json +++ b/package.json @@ -18,14 +18,12 @@ "@graphql-codegen/typescript-operations": "^1.18.2", "@graphql-codegen/typescript-rtk-query": "^1.1.1", "@lingui/cli": "^3.9.0", - "@lingui/macro": "^3.9.0", - "@lingui/react": "^3.9.0", "@metamask/jazzicon": "^2.0.0", - "@popperjs/core": "^2.4.4", "@reach/dialog": "^0.10.3", "@reach/portal": "^0.10.3", "@react-hook/window-scroll": "^1.3.0", "@reduxjs/toolkit": "^1.6.1", + "@svgr/cli": "^5.5.0", "@testing-library/jest-dom": "^5.14.1", "@testing-library/react": "^12.0.0", "@testing-library/react-hooks": "^7.0.2", @@ -54,13 +52,13 @@ "@types/wcag-contrast": "^3.0.0", "@typescript-eslint/eslint-plugin": "^4.1.0", "@typescript-eslint/parser": "^4.1.0", + "@uniswap/default-token-list": "^2.1.0", "@uniswap/governance": "^1.0.2", "@uniswap/liquidity-staker": "^1.0.2", "@uniswap/merkle-distributor": "1.0.1", - "@uniswap/redux-multicall": "^1.0.0", - "@uniswap/router-sdk": "^1.0.1", + "@uniswap/router-sdk": "^1.0.3", "@uniswap/sdk-core": "^3.0.1", - "@uniswap/smart-order-router": "^2.5.7", + "@uniswap/smart-order-router": "^2.5.4", "@uniswap/token-lists": "^1.0.0-beta.27", "@uniswap/v2-core": "1.0.0", "@uniswap/v2-periphery": "^1.1.0-beta.0", @@ -84,6 +82,7 @@ "d3": "^7.0.0", "eslint": "^7.11.0", "eslint-config-prettier": "^6.11.0", + "eslint-plugin-better-styled-components": "^1.1.2", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-react": "^7.19.0", "eslint-plugin-react-hooks": "^4.0.0", @@ -99,32 +98,23 @@ "ms.macro": "^2.0.0", "multicodec": "^3.0.1", "multihashes": "^4.0.2", - "node-vibrant": "^3.2.1-alpha.1", - "polished": "^3.3.2", "polyfill-object.fromentries": "^1.0.1", "prettier": "^2.2.1", "qs": "^6.9.4", - "react": "^17.0.1", "react-confetti": "^6.0.0", "react-cosmos": "^5.6.3", - "react-dom": "^17.0.1", - "react-feather": "^2.0.8", "react-ga": "^2.5.7", "react-is": "^17.0.2", "react-markdown": "^4.3.1", - "react-popper": "^2.2.3", "react-redux": "^7.2.2", "react-router-dom": "^5.0.0", "react-scripts": "^4.0.3", "react-spring": "^8.0.27", "react-use-gesture": "^6.0.14", - "react-virtualized-auto-sizer": "^1.0.2", - "react-window": "^1.8.5", - "rebass": "^4.0.7", "redux-localstorage-simple": "^2.3.1", + "sass": "^1.45.1", "serve": "^11.3.2", "start-server-and-test": "^1.11.0", - "styled-components": "^5.3.0", "typechain": "^5.0.0", "typescript": "^4.2.3", "ua-parser-js": "^0.7.28", @@ -147,13 +137,18 @@ "prei18n:extract": "touch src/locales/en-US.po", "i18n:extract": "lingui extract --locale en-US", "i18n:compile": "yarn i18n:extract && lingui compile", - "postinstall": "yarn contracts:compile && yarn graphql:generate && yarn i18n:compile", + "i18n:pseudo": "lingui extract --locale pseudo && lingui compile", + "postinstall": "yarn contracts:compile && yarn graphql:generate && yarn i18n:compile && yarn assets:generate", "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=./custom-test-env.js", "test:e2e": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run --record'", - "bundle": "microbundle --tsconfig tsconfig.lib.json src/lib/index.tsx --format esm,cjs", - "cosmos": "open http://localhost:5000 && cross-env FAST_REFRESH=false cosmos" + "assets:generate": "yarn assets:svg:generate && yarn assets:font:generate", + "assets:svg:generate": "svgr -d src/lib/assets/svg --ext tsx --typescript src/lib/assets/svg && rm src/lib/assets/svg/index.tsx", + "assets:font:generate": "sass src/lib/assets/fonts/index.scss src/lib/assets/fonts/index.css --no-source-map -I node_modules", + "bundle": "microbundle --define process.env.REACT_APP_IS_WIDGET=true --tsconfig tsconfig.lib.json src/lib/index.tsx --format esm,cjs", + "bundle:depcheck": "node depcheck.js", + "cosmos": "cross-env FAST_REFRESH=false REACT_APP_IS_WIDGET=true cosmos" }, "browserslist": { "production": [ @@ -168,5 +163,37 @@ ] }, "license": "GPL-3.0-or-later", - "dependencies": {} + "dependencies": { + "@fontsource/ibm-plex-mono": "^4.5.1", + "@fontsource/inter": "^4.5.1", + "@lingui/core": "^3.9.0", + "@lingui/macro": "^3.9.0", + "@lingui/react": "^3.9.0", + "@popperjs/core": "^2.4.4", + "@uniswap/redux-multicall": "^1.0.0", + "immer": "^9.0.6", + "jotai": "^1.3.7", + "lodash": "^4.17.21", + "make-plural": "^7.0.0", + "node-vibrant": "^3.2.1-alpha.1", + "polished": "^3.3.2", + "popper-max-size-modifier": "^0.2.0", + "react": "^17.0.1", + "react-dom": "^17.0.1", + "react-feather": "^2.0.8", + "react-popper": "^2.2.3", + "react-virtualized-auto-sizer": "^1.0.2", + "react-window": "^1.8.5", + "rebass": "^4.0.7", + "redux": "^4.1.2", + "styled-components": "^5.3.0", + "tiny-invariant": "^1.2.0", + "wcag-contrast": "^3.0.0", + "wicg-inert": "^3.1.1", + "widgets-web3-react/core": "npm:@web3-react/core@8.0.15-alpha.0", + "widgets-web3-react/eip1193": "npm:@web3-react/eip1193@8.0.15-alpha.0", + "widgets-web3-react/metamask": "npm:@web3-react/metamask@8.0.15-alpha.0", + "widgets-web3-react/network": "npm:@web3-react/network@8.0.15-alpha.0", + "widgets-web3-react/types": "npm:@web3-react/types@8.0.15-alpha.0" + } } diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index 81fb5a567b..c15b873ad5 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -4,6 +4,7 @@ import { useCallback, useContext } from 'react' import { ExternalLink as LinkIcon } from 'react-feather' import { useAppDispatch } from 'state/hooks' import styled, { ThemeContext } from 'styled-components/macro' +import { Connector } from 'widgets-web3-react/types' import { ReactComponent as Close } from '../../assets/images/x.svg' import { injected, portis, walletlink } from '../../connectors' @@ -176,7 +177,7 @@ const IconWrapper = styled.div<{ size?: number }>` `}; ` -function WrappedStatusIcon({ connector }: { connector: AbstractConnector }) { +function WrappedStatusIcon({ connector }: { connector: AbstractConnector | Connector }) { return ( diff --git a/src/components/Identicon/StatusIcon.tsx b/src/components/Identicon/StatusIcon.tsx index 208031a651..b8b300c718 100644 --- a/src/components/Identicon/StatusIcon.tsx +++ b/src/components/Identicon/StatusIcon.tsx @@ -1,4 +1,5 @@ import { AbstractConnector } from '@web3-react/abstract-connector' +import { Connector } from 'widgets-web3-react/types' import CoinbaseWalletIcon from '../../assets/images/coinbaseWalletIcon.svg' import FortmaticIcon from '../../assets/images/fortmaticIcon.png' @@ -7,7 +8,7 @@ import WalletConnectIcon from '../../assets/images/walletConnectIcon.svg' import { fortmatic, injected, portis, walletconnect, walletlink } from '../../connectors' import Identicon from '../Identicon' -export default function StatusIcon({ connector }: { connector: AbstractConnector }) { +export default function StatusIcon({ connector }: { connector: AbstractConnector | Connector }) { switch (connector) { case injected: return diff --git a/src/components/Popover/index.tsx b/src/components/Popover/index.tsx index 20cd620d90..7effb0012d 100644 --- a/src/components/Popover/index.tsx +++ b/src/components/Popover/index.tsx @@ -1,11 +1,10 @@ import { Options, Placement } from '@popperjs/core' import Portal from '@reach/portal' +import useInterval from 'lib/hooks/useInterval' import React, { useCallback, useMemo, useState } from 'react' import { usePopper } from 'react-popper' import styled from 'styled-components/macro' -import useInterval from '../../hooks/useInterval' - const PopoverContainer = styled.div<{ show: boolean }>` z-index: 9999; visibility: ${(props) => (props.show ? 'visible' : 'hidden')}; diff --git a/src/components/Web3Status/index.tsx b/src/components/Web3Status/index.tsx index cc1dd66d23..ed6d499a92 100644 --- a/src/components/Web3Status/index.tsx +++ b/src/components/Web3Status/index.tsx @@ -6,6 +6,7 @@ import { darken } from 'polished' import { useMemo } from 'react' import { Activity } from 'react-feather' import styled, { css } from 'styled-components/macro' +import { Connector } from 'widgets-web3-react/types' import { NetworkContextName } from '../../constants/misc' import useENSName from '../../hooks/useENSName' @@ -130,7 +131,7 @@ function Sock() { ) } -function WrappedStatusIcon({ connector }: { connector: AbstractConnector }) { +function WrappedStatusIcon({ connector }: { connector: AbstractConnector | Connector }) { return ( diff --git a/src/constants/locales.ts b/src/constants/locales.ts index 3673550417..dacaab77be 100644 --- a/src/constants/locales.ts +++ b/src/constants/locales.ts @@ -33,11 +33,12 @@ export const SUPPORTED_LOCALES = [ 'zh-CN', 'zh-TW', ] as const -export type SupportedLocale = typeof SUPPORTED_LOCALES[number] +export type SupportedLocale = typeof SUPPORTED_LOCALES[number] | 'pseudo' +// eslint-disable-next-line import/first +import * as enUS from '../locales/en-US' export const DEFAULT_LOCALE: SupportedLocale = 'en-US' - -export { messages as DEFAULT_MESSAGES } from '../locales/en-US' +export const DEFAULT_CATALOG = enUS export const LOCALE_LABEL: { [locale in SupportedLocale]: string } = { 'af-ZA': 'Afrikaans', @@ -72,4 +73,5 @@ export const LOCALE_LABEL: { [locale in SupportedLocale]: string } = { 'vi-VN': 'Tiếng Việt', 'zh-CN': '简体中文', 'zh-TW': '繁体中文', + pseudo: 'ƥƨèúδô', } diff --git a/src/hooks/useActiveWeb3React.ts b/src/hooks/useActiveWeb3React.ts new file mode 100644 index 0000000000..8da7d18eff --- /dev/null +++ b/src/hooks/useActiveWeb3React.ts @@ -0,0 +1,22 @@ +import { Web3Provider } from '@ethersproject/providers' +import { useWeb3React } from '@web3-react/core' +import { default as useWidgetsWeb3React } from 'lib/hooks/useActiveWeb3React' + +import { NetworkContextName } from '../constants/misc' + +export default function useActiveWeb3React() { + const widgetsContext = useWidgetsWeb3React() + const interfaceContext = useWeb3React() + const interfaceNetworkContext = useWeb3React( + process.env.REACT_APP_IS_WIDGET ? undefined : NetworkContextName + ) + + if (process.env.REACT_APP_IS_WIDGET) { + return widgetsContext + } + if (interfaceContext.active) { + return interfaceContext + } + + return interfaceNetworkContext +} diff --git a/src/hooks/useMachineTime.ts b/src/hooks/useMachineTime.ts index f35dabc79f..2b717e1509 100644 --- a/src/hooks/useMachineTime.ts +++ b/src/hooks/useMachineTime.ts @@ -1,7 +1,6 @@ +import useInterval from 'lib/hooks/useInterval' import { useState } from 'react' -import useInterval from './useInterval' - const useMachineTimeMs = (updateInterval: number): number => { const [now, setNow] = useState(Date.now()) diff --git a/src/hooks/web3.ts b/src/hooks/web3.ts index 7bf54020a9..1bf3af5cbc 100644 --- a/src/hooks/web3.ts +++ b/src/hooks/web3.ts @@ -1,16 +1,12 @@ -import { Web3Provider } from '@ethersproject/providers' import { useWeb3React } from '@web3-react/core' +import type { EthereumProvider } from 'lib/ethereum' import { useEffect, useState } from 'react' import { gnosisSafe, injected } from '../connectors' -import { IS_IN_IFRAME, NetworkContextName } from '../constants/misc' +import { IS_IN_IFRAME } from '../constants/misc' import { isMobile } from '../utils/userAgent' -export function useActiveWeb3React() { - const context = useWeb3React() - const contextNetwork = useWeb3React(NetworkContextName) - return context.active ? context : contextNetwork -} +export { default as useActiveWeb3React } from './useActiveWeb3React' export function useEagerConnect() { const { activate, active } = useWeb3React() @@ -74,7 +70,7 @@ export function useInactiveListener(suppress = false) { const { active, error, activate } = useWeb3React() useEffect(() => { - const { ethereum } = window + const ethereum = window.ethereum as EthereumProvider | undefined if (ethereum && ethereum.on && !active && !error && !suppress) { const handleChainChanged = () => { diff --git a/src/i18n.tsx b/src/i18n.tsx index a967acab9b..7eb5396edb 100644 --- a/src/i18n.tsx +++ b/src/i18n.tsx @@ -1,110 +1,26 @@ -import { i18n } from '@lingui/core' -import { I18nProvider } from '@lingui/react' -import { DEFAULT_LOCALE, DEFAULT_MESSAGES, SupportedLocale } from 'constants/locales' +import { SupportedLocale } from 'constants/locales' import { initialLocale, useActiveLocale } from 'hooks/useActiveLocale' -import { - af, - ar, - ca, - cs, - da, - de, - el, - en, - es, - fi, - fr, - he, - hu, - id, - it, - ja, - ko, - nl, - no, - pl, - PluralCategory, - pt, - ro, - ru, - sr, - sv, - sw, - tr, - uk, - vi, - zh, -} from 'make-plural/plurals' -import { useEffect } from 'react' -import { ReactNode } from 'react' +import { dynamicActivate, Provider } from 'lib/i18n' +import { ReactNode, useCallback } from 'react' import { useUserLocaleManager } from 'state/user/hooks' -type LocalePlural = { - [key in SupportedLocale]: (n: number | string, ord?: boolean) => PluralCategory -} - -const plurals: LocalePlural = { - 'af-ZA': af, - 'ar-SA': ar, - 'ca-ES': ca, - 'cs-CZ': cs, - 'da-DK': da, - 'de-DE': de, - 'el-GR': el, - 'en-US': en, - 'es-ES': es, - 'fi-FI': fi, - 'fr-FR': fr, - 'he-IL': he, - 'hu-HU': hu, - 'id-ID': id, - 'it-IT': it, - 'ja-JP': ja, - 'ko-KR': ko, - 'nl-NL': nl, - 'no-NO': no, - 'pl-PL': pl, - 'pt-BR': pt, - 'pt-PT': pt, - 'ro-RO': ro, - 'ru-RU': ru, - 'sr-SP': sr, - 'sv-SE': sv, - 'sw-TZ': sw, - 'tr-TR': tr, - 'uk-UA': uk, - 'vi-VN': vi, - 'zh-CN': zh, - 'zh-TW': zh, -} - -async function dynamicActivate(locale: SupportedLocale) { - i18n.loadLocaleData(locale, { plurals: () => plurals[locale] }) - const { messages } = locale === DEFAULT_LOCALE ? { messages: DEFAULT_MESSAGES } : await import(`locales/${locale}`) - i18n.load(locale, messages) - i18n.activate(locale) -} - dynamicActivate(initialLocale) export function LanguageProvider({ children }: { children: ReactNode }) { const locale = useActiveLocale() const [, setUserLocale] = useUserLocaleManager() - useEffect(() => { - dynamicActivate(locale) - .then(() => { - document.documentElement.setAttribute('lang', locale) - setUserLocale(locale) // stores the selected locale to persist across sessions - }) - .catch((error) => { - console.error('Failed to activate locale', locale, error) - }) - }, [locale, setUserLocale]) + const onActivate = useCallback( + (locale: SupportedLocale) => { + document.documentElement.setAttribute('lang', locale) + setUserLocale(locale) // stores the selected locale to persist across sessions + }, + [setUserLocale] + ) return ( - + {children} - + ) } diff --git a/src/lib/.eslintrc.json b/src/lib/.eslintrc.json new file mode 100644 index 0000000000..b859374fb8 --- /dev/null +++ b/src/lib/.eslintrc.json @@ -0,0 +1,22 @@ +{ + "extends": ["../../.eslintrc.json"], + "plugins": ["better-styled-components"], + "rules": { + "better-styled-components/sort-declarations-alphabetically": "error", + "no-restricted-imports": [ + "error", + { + "paths": [ + { + "name": "styled-components/macro", + "message": "Please import styled from lib/theme to get the correct typings." + }, + { + "name": "react-feather", + "message": "Please import from lib/icons to ensure performant usage." + } + ] + } + ] + } +} diff --git a/src/lib/assets/fonts/index.scss b/src/lib/assets/fonts/index.scss new file mode 100644 index 0000000000..6019bda692 --- /dev/null +++ b/src/lib/assets/fonts/index.scss @@ -0,0 +1,22 @@ +// Use Inter mixin to set font-display: block. +@use "@fontsource/inter/scss/mixins" as Inter; +@include Inter.fontFace( + $fontName: 'Inter', + $weight: 400, + $display: block, +); +@include Inter.fontFace( + $fontName: 'Inter', + $weight: 500, + $display: block, +); +@include Inter.fontFace( + $fontName: 'Inter', + $weight: 600, + $display: block, +); +@include Inter.fontFaceVariable( + $display: block, +); + +@import "~@fontsource/ibm-plex-mono/400.css"; \ No newline at end of file diff --git a/src/lib/assets/svg/check.svg b/src/lib/assets/svg/check.svg new file mode 100644 index 0000000000..64735211ef --- /dev/null +++ b/src/lib/assets/svg/check.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/lib/assets/svg/expando.svg b/src/lib/assets/svg/expando.svg new file mode 100644 index 0000000000..aef744a93b --- /dev/null +++ b/src/lib/assets/svg/expando.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/lib/assets/svg/logo.svg b/src/lib/assets/svg/logo.svg new file mode 100644 index 0000000000..3bd07e1b17 --- /dev/null +++ b/src/lib/assets/svg/logo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/lib/assets/svg/spinner.svg b/src/lib/assets/svg/spinner.svg new file mode 100644 index 0000000000..e29a12455c --- /dev/null +++ b/src/lib/assets/svg/spinner.svg @@ -0,0 +1,18 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/lib/components/ActionButton.tsx b/src/lib/components/ActionButton.tsx new file mode 100644 index 0000000000..f5cf0921a0 --- /dev/null +++ b/src/lib/components/ActionButton.tsx @@ -0,0 +1,85 @@ +import { AlertTriangle, LargeIcon } from 'lib/icons' +import styled, { Color, css, keyframes, ThemedText } from 'lib/theme' +import { ReactNode } from 'react' + +import Button from './Button' +import Row from './Row' + +const StyledButton = styled(Button)` + border-radius: ${({ theme }) => theme.borderRadius}em; + flex-grow: 1; + transition: background-color 0.25s ease-out, flex-grow 0.25s ease-out, padding 0.25s ease-out; +` + +const UpdateRow = styled(Row)`` + +const grow = keyframes` + from { + opacity: 0; + width: 0; + } + to { + opacity: 1; + width: max-content; + } +` + +const updatedCss = css` + border: 1px solid ${({ theme }) => theme.outline}; + padding: calc(0.25em - 1px); + padding-left: calc(0.75em - 1px); + + ${UpdateRow} { + animation: ${grow} 0.25s ease-in; + white-space: nowrap; + } + + ${StyledButton} { + border-radius: ${({ theme }) => theme.borderRadius * 0.75}em; + flex-grow: 0; + padding: 1em; + } +` + +export const Overlay = styled(Row)<{ updated?: boolean }>` + border-radius: ${({ theme }) => theme.borderRadius}em; + flex-direction: row-reverse; + min-height: 3.5em; + transition: padding 0.25s ease-out; + + ${({ updated }) => updated && updatedCss} +` + +export interface ActionButtonProps { + color?: Color + disabled?: boolean + updated?: { message: ReactNode; action: ReactNode } + onClick: () => void + onUpdate?: () => void + children: ReactNode +} + +export default function ActionButton({ + color = 'accent', + disabled, + updated, + onClick, + onUpdate, + children, +}: ActionButtonProps) { + return ( + + + + {updated ? updated.action : children} + + + {updated && ( + + + {updated?.message} + + )} + + ) +} diff --git a/src/lib/components/Button.tsx b/src/lib/components/Button.tsx new file mode 100644 index 0000000000..d266348b23 --- /dev/null +++ b/src/lib/components/Button.tsx @@ -0,0 +1,64 @@ +import { Icon } from 'lib/icons' +import styled, { Color } from 'lib/theme' +import { ComponentProps } from 'react' + +export const BaseButton = styled.button` + background-color: transparent; + border: none; + border-radius: 0.5em; + color: currentColor; + cursor: pointer; + font-size: inherit; + font-weight: inherit; + line-height: inherit; + margin: 0; + padding: 0; + + :disabled { + cursor: initial; + filter: saturate(0) opacity(0.4); + } +` + +export default styled(BaseButton)<{ color?: Color }>` + color: ${({ color = 'interactive', theme }) => color === 'interactive' && theme.onInteractive}; + + :enabled { + background-color: ${({ color = 'interactive', theme }) => theme[color]}; + } + + :enabled:hover { + background-color: ${({ color = 'interactive', theme }) => theme.onHover(theme[color])}; + } + + :disabled { + border: 1px solid ${({ theme }) => theme.outline}; + color: ${({ theme }) => theme.secondary}; + cursor: initial; + } +` + +const transparentButton = (defaultColor: Color) => styled(BaseButton)<{ color?: Color }>` + color: ${({ color = defaultColor, theme }) => theme[color]}; + + :enabled:hover { + color: ${({ color = defaultColor, theme }) => theme.onHover(theme[color])}; + } +` + +export const TextButton = transparentButton('accent') + +const SecondaryButton = transparentButton('secondary') + +interface IconButtonProps { + icon: Icon + iconProps?: ComponentProps +} + +export function IconButton({ icon: Icon, iconProps, ...props }: IconButtonProps & ComponentProps) { + return ( + + + + ) +} diff --git a/src/lib/components/Column.tsx b/src/lib/components/Column.tsx new file mode 100644 index 0000000000..29026c2403 --- /dev/null +++ b/src/lib/components/Column.tsx @@ -0,0 +1,29 @@ +import styled, { Color, css, Theme } from 'lib/theme' + +const Column = styled.div<{ + align?: string + color?: Color + justify?: string + gap?: number + padded?: true + flex?: true + grow?: true + theme: Theme + css?: ReturnType +}>` + align-items: ${({ align }) => align ?? 'center'}; + background-color: inherit; + color: ${({ color, theme }) => color && theme[color]}; + display: ${({ flex }) => (flex ? 'flex' : 'grid')}; + flex-direction: column; + flex-grow: ${({ grow }) => grow && 1}; + gap: ${({ gap }) => gap && `${gap}em`}; + grid-auto-flow: row; + grid-template-columns: 1fr; + justify-content: ${({ justify }) => justify ?? 'space-between'}; + padding: ${({ padded }) => padded && '0.75em'}; + + ${({ css }) => css} +` + +export default Column diff --git a/src/lib/components/Dialog.tsx b/src/lib/components/Dialog.tsx new file mode 100644 index 0000000000..a65a14cb4a --- /dev/null +++ b/src/lib/components/Dialog.tsx @@ -0,0 +1,116 @@ +import 'wicg-inert' + +import useUnmount from 'lib/hooks/useUnmount' +import { X } from 'lib/icons' +import styled, { Color, Layer, ThemeProvider } from 'lib/theme' +import { createContext, ReactElement, ReactNode, useContext, useEffect, useRef, useState } from 'react' +import { createPortal } from 'react-dom' + +import { IconButton } from './Button' +import Column from './Column' +import { default as BaseHeader } from './Header' +import Rule from './Rule' + +// Include inert from wicg-inert +declare global { + interface HTMLElement { + inert?: boolean + } +} + +const Context = createContext({ + element: null as HTMLElement | null, + active: false, + setActive: (active: boolean) => undefined as void, +}) + +interface ProviderProps { + value: HTMLElement | null + children: ReactNode +} + +export function Provider({ value, children }: ProviderProps) { + // If a Dialog is active, mark the main content inert + const ref = useRef(null) + const [active, setActive] = useState(false) + const context = { element: value, active, setActive } + useEffect(() => { + if (ref.current) { + ref.current.inert = active + } + }, [active]) + return ( +
+ {children} +
+ ) +} + +const OnCloseContext = createContext<() => void>(() => void 0) + +interface HeaderProps { + title?: ReactElement + ruled?: boolean + children?: ReactNode +} + +export function Header({ title, children, ruled }: HeaderProps) { + return ( + <> + + + {children} + + + {ruled && } + + + ) +} + +export const Modal = styled.div<{ color: Color }>` + background-color: ${({ color, theme }) => theme[color]}; + border-radius: ${({ theme }) => theme.borderRadius * 0.75}em; + display: flex; + flex-direction: column; + height: calc(100% - 0.5em); + left: 0; + margin: 0.25em; + overflow: hidden; + position: absolute; + top: 0; + width: calc(100% - 0.5em); + z-index: ${Layer.DIALOG}; +` + +interface DialogProps { + color: Color + children: ReactNode + onClose?: () => void +} + +export default function Dialog({ color, children, onClose = () => void 0 }: DialogProps) { + const context = useContext(Context) + useEffect(() => { + context.setActive(true) + return () => context.setActive(false) + }, [context]) + const dialog = useRef(null) + useUnmount(dialog) + useEffect(() => { + const close = (e: KeyboardEvent) => e.key === 'Escape' && onClose?.() + document.addEventListener('keydown', close, true) + return () => document.removeEventListener('keydown', close, true) + }, [onClose]) + return ( + context.element && + createPortal( + + + {children} + + , + context.element + ) + ) +} diff --git a/src/lib/components/Error/ErrorBoundary.tsx b/src/lib/components/Error/ErrorBoundary.tsx new file mode 100644 index 0000000000..0118447381 --- /dev/null +++ b/src/lib/components/Error/ErrorBoundary.tsx @@ -0,0 +1,46 @@ +import { Trans } from '@lingui/macro' +import React, { ErrorInfo } from 'react' + +import Dialog from '../Dialog' +import ErrorDialog from './ErrorDialog' + +export type ErrorHandler = (error: Error, info: ErrorInfo) => void + +interface ErrorBoundaryProps { + onError?: ErrorHandler +} + +type ErrorBoundaryState = { + error: Error | null +} + +export default class ErrorBoundary extends React.Component { + constructor(props: ErrorBoundaryProps) { + super(props) + this.state = { error: null } + } + + static getDerivedStateFromError(error: Error) { + return { error } + } + + componentDidCatch(error: Error, errorInfo: ErrorInfo) { + this.props.onError?.(error, errorInfo) + } + + render() { + if (this.state.error) { + return ( + + Reload the page to try again} + action={Reload the page} + onAction={() => window.location.reload()} + /> + + ) + } + return this.props.children + } +} diff --git a/src/lib/components/Error/ErrorDialog.tsx b/src/lib/components/Error/ErrorDialog.tsx new file mode 100644 index 0000000000..95db5a8eca --- /dev/null +++ b/src/lib/components/Error/ErrorDialog.tsx @@ -0,0 +1,127 @@ +import { Trans } from '@lingui/macro' +import useScrollbar from 'lib/hooks/useScrollbar' +import { AlertTriangle, Expando, Icon, Info, LargeIcon } from 'lib/icons' +import styled, { Color, ThemedText } from 'lib/theme' +import { ReactNode, useState } from 'react' + +import ActionButton from '../ActionButton' +import { IconButton } from '../Button' +import Column from '../Column' +import Row from '../Row' +import Rule from '../Rule' + +const HeaderIcon = styled(LargeIcon)` + flex-grow: 1; + + svg { + transition: height 0.25s, width 0.25s; + } +` + +interface StatusHeaderProps { + icon: Icon + iconColor?: Color + iconSize?: number + children: ReactNode +} + +export function StatusHeader({ icon: Icon, iconColor, iconSize = 4, children }: StatusHeaderProps) { + return ( + <> + + + + {children} + + + + + ) +} + +const ErrorHeader = styled(Column)<{ open: boolean }>` + transition: gap 0.25s; + + div:last-child { + max-height: ${({ open }) => (open ? 0 : 60 / 14)}em; // 3 * line-height + overflow-y: hidden; + transition: max-height 0.25s; + } +` +const ErrorColumn = styled(Column)`` +const ExpandoColumn = styled(Column)<{ open: boolean }>` + flex-grow: ${({ open }) => (open ? 2 : 0)}; + transition: flex-grow 0.25s, gap 0.25s; + + ${Rule} { + margin-bottom: ${({ open }) => (open ? 0 : 0.75)}em; + transition: margin-bottom 0.25s; + } + + ${ErrorColumn} { + flex-basis: 0; + flex-grow: ${({ open }) => (open ? 1 : 0)}; + overflow-y: hidden; + position: relative; + transition: flex-grow 0.25s; + + ${Column} { + height: 100%; + padding: ${({ open }) => (open ? '0.5em 0' : 0)}; + transition: padding 0.25s; + + :after { + background: linear-gradient(#ffffff00, ${({ theme }) => theme.dialog}); + bottom: 0; + content: ''; + height: 0.75em; + pointer-events: none; + position: absolute; + width: calc(100% - 1em); + } + } + } +` + +interface ErrorDialogProps { + header?: ReactNode + error: Error + action: ReactNode + onAction: () => void +} + +export default function ErrorDialog({ header, error, action, onAction }: ErrorDialogProps) { + const [open, setOpen] = useState(false) + const [details, setDetails] = useState(null) + const scrollbar = useScrollbar(details) + return ( + + + + + Something went wrong. + + {header} + + + + + + + Error details + + + setOpen(!open)} icon={Expando} iconProps={{ open }} /> + + + + + + {error.message} + + + {action} + + + ) +} diff --git a/src/lib/components/Header.tsx b/src/lib/components/Header.tsx new file mode 100644 index 0000000000..089696ef42 --- /dev/null +++ b/src/lib/components/Header.tsx @@ -0,0 +1,51 @@ +import { largeIconCss, Logo } from 'lib/icons' +import styled, { ThemedText } from 'lib/theme' +import { ReactElement, ReactNode } from 'react' + +import Row from './Row' + +const UniswapA = styled.a` + cursor: pointer; + + ${Logo} { + fill: ${({ theme }) => theme.secondary}; + height: 1.5em; + transition: transform 0.25s ease; + width: 1.5em; + will-change: transform; + + :hover { + fill: ${({ theme }) => theme.onHover(theme.secondary)}; + transform: rotate(-5deg); + } + } +` + +const HeaderRow = styled(Row)` + height: 1.75em; + margin: 0 0.75em 0.75em; + padding-top: 0.5em; + ${largeIconCss} +` + +export interface HeaderProps { + title?: ReactElement + logo?: boolean + children: ReactNode +} + +export default function Header({ title, logo, children }: HeaderProps) { + return ( + + + {logo && ( + + + + )} + {title && {title}} + + {children} + + ) +} diff --git a/src/lib/components/Input.tsx b/src/lib/components/Input.tsx new file mode 100644 index 0000000000..9afa35cbeb --- /dev/null +++ b/src/lib/components/Input.tsx @@ -0,0 +1,166 @@ +import styled, { css } from 'lib/theme' +import { forwardRef, HTMLProps, useCallback, useEffect, useState } from 'react' + +const Input = styled.input` + -webkit-appearance: textfield; + background-color: transparent; + border: none; + color: currentColor; + font-family: inherit; + font-size: inherit; + font-weight: inherit; + line-height: inherit; + margin: 0; + outline: none; + overflow: hidden; + padding: 0; + text-align: left; + text-overflow: ellipsis; + width: 100%; + + ::-webkit-search-decoration { + -webkit-appearance: none; + } + + [type='number'] { + -moz-appearance: textfield; + } + + ::-webkit-outer-spin-button, + ::-webkit-inner-spin-button { + -webkit-appearance: none; + } + + ::placeholder { + color: ${({ theme }) => theme.secondary}; + } +` + +export default Input + +interface StringInputProps extends Omit, 'onChange' | 'as' | 'value'> { + value: string + onChange: (input: string) => void +} + +export const StringInput = forwardRef(function StringInput( + { value, onChange, ...props }: StringInputProps, + ref +) { + return ( + onChange(e.target.value)} + // universal input options + inputMode="text" + autoComplete="off" + autoCorrect="off" + // text-specific options + type="text" + placeholder={props.placeholder || '-'} + minLength={1} + spellCheck="false" + ref={ref as any} + {...props} + /> + ) +}) + +interface NumericInputProps extends Omit, 'onChange' | 'as' | 'value'> { + value: number | undefined + onChange: (input: number | undefined) => void +} + +interface EnforcedNumericInputProps extends NumericInputProps { + // Validates nextUserInput; returns stringified value or undefined if valid, or null if invalid + enforcer: (nextUserInput: string) => string | undefined | null +} + +const NumericInput = forwardRef(function NumericInput( + { value, onChange, enforcer, pattern, ...props }: EnforcedNumericInputProps, + ref +) { + // Allow value/onChange to use number by preventing a trailing decimal separator from triggering onChange + const [state, setState] = useState(value ?? '') + useEffect(() => { + if (+state !== value) { + setState(value ?? '') + } + }, [value, state, setState]) + + const validateChange = useCallback( + (event) => { + const nextInput = enforcer(event.target.value.replace(/,/g, '.')) + if (nextInput !== null) { + setState(nextInput ?? '') + if (nextInput === undefined || +nextInput !== value) { + onChange(nextInput === undefined ? undefined : +nextInput) + } + } + }, + [value, onChange, enforcer] + ) + + return ( + + ) +}) + +const integerRegexp = /^\d*$/ +const integerEnforcer = (nextUserInput: string) => { + if (nextUserInput === '' || integerRegexp.test(nextUserInput)) { + const nextInput = parseInt(nextUserInput) + return isNaN(nextInput) ? undefined : nextInput.toString() + } + return null +} +export const IntegerInput = forwardRef(function IntegerInput(props: NumericInputProps, ref) { + return +}) + +const decimalRegexp = /^\d*(?:[.])?\d*$/ +const decimalEnforcer = (nextUserInput: string) => { + if (nextUserInput === '') { + return undefined + } else if (nextUserInput === '.') { + return '0.' + } else if (decimalRegexp.test(nextUserInput)) { + return nextUserInput + } + return null +} +export const DecimalInput = forwardRef(function DecimalInput(props: NumericInputProps, ref) { + return +}) + +export const inputCss = css` + background-color: ${({ theme }) => theme.container}; + border: 1px solid ${({ theme }) => theme.container}; + border-radius: ${({ theme }) => theme.borderRadius}em; + cursor: text; + padding: calc(0.75em - 1px); + + :hover:not(:focus-within) { + background-color: ${({ theme }) => theme.onHover(theme.container)}; + border-color: ${({ theme }) => theme.onHover(theme.container)}; + } + + :focus-within { + border-color: ${({ theme }) => theme.active}; + } +` diff --git a/src/lib/components/Popover.tsx b/src/lib/components/Popover.tsx new file mode 100644 index 0000000000..5519c18588 --- /dev/null +++ b/src/lib/components/Popover.tsx @@ -0,0 +1,143 @@ +import { Options, Placement } from '@popperjs/core' +import styled, { Layer } from 'lib/theme' +import maxSize from 'popper-max-size-modifier' +import React, { createContext, useContext, useMemo, useRef, useState } from 'react' +import { createPortal } from 'react-dom' +import { usePopper } from 'react-popper' + +const BoundaryContext = createContext(null) + +export const BoundaryProvider = BoundaryContext.Provider + +const PopoverContainer = styled.div<{ show: boolean }>` + background-color: ${({ theme }) => theme.dialog}; + border-radius: 0.5em; + opacity: ${(props) => (props.show ? 1 : 0)}; + padding: 8px; + transition: visibility 0.25s linear, opacity 0.25s linear; + visibility: ${(props) => (props.show ? 'visible' : 'hidden')}; + z-index: ${Layer.TOOLTIP}; +` + +const Reference = styled.div` + display: inline-block; +` + +const Arrow = styled.div` + height: 8px; + width: 8px; + z-index: ${Layer.TOOLTIP}; + + ::before { + background: ${({ theme }) => theme.dialog}; + border: 1px solid ${({ theme }) => theme.outline}; + content: ''; + + height: 8px; + position: absolute; + transform: rotate(45deg); + width: 8px; + } + + &.arrow-top { + bottom: -5px; + ::before { + border-left: none; + border-top: none; + } + } + + &.arrow-bottom { + top: -5px; + ::before { + border-bottom: none; + border-right: none; + } + } + + &.arrow-left { + right: -5px; + ::before { + border-bottom: none; + border-left: none; + } + } + + &.arrow-right { + left: -5px; + ::before { + border-right: none; + border-top: none; + } + } +` + +export interface PopoverProps { + content: React.ReactNode + show: boolean + children: React.ReactNode + placement: Placement + contained?: true +} + +export default function Popover({ content, show, children, placement, contained }: PopoverProps) { + const boundary = useContext(BoundaryContext) + const reference = useRef(null) + + // Use callback refs to be notified when instantiated + const [popover, setPopover] = useState(null) + const [arrow, setArrow] = useState(null) + + const options = useMemo((): Options => { + const modifiers: Options['modifiers'] = [ + { name: 'offset', options: { offset: [5, 5] } }, + { name: 'arrow', options: { element: arrow, padding: 6 } }, + ] + if (contained) { + modifiers.push( + { name: 'preventOverflow', options: { boundary, padding: 8 } }, + { name: 'flip', options: { boundary, padding: 8 } }, + { ...maxSize, options: { boundary, padding: 8 } }, + { + name: 'applyMaxSize', + enabled: true, + phase: 'beforeWrite', + requires: ['maxSize'], + fn({ state }) { + const { width } = state.modifiersData.maxSize + state.styles.popper = { + ...state.styles.popper, + maxWidth: `${width}px`, + } + }, + } + ) + } + return { + placement, + strategy: 'absolute', + modifiers, + } + }, [arrow, boundary, placement, contained]) + + const { styles, attributes } = usePopper(reference.current, popover, options) + + return ( + <> + {children} + {boundary && + createPortal( + + {content} + + , + boundary + )} + + ) +} diff --git a/src/lib/components/RecentTransactionsDialog.tsx b/src/lib/components/RecentTransactionsDialog.tsx new file mode 100644 index 0000000000..8cd4c16754 --- /dev/null +++ b/src/lib/components/RecentTransactionsDialog.tsx @@ -0,0 +1,113 @@ +import { Trans } from '@lingui/macro' +import { AlertTriangle, ArrowRight, CheckCircle, Spinner, Trash2 } from 'lib/icons' +import { DAI, ETH, UNI, USDC } from 'lib/mocks' +import styled, { ThemedText } from 'lib/theme' +import { Token } from 'lib/types' +import { useMemo, useState } from 'react' + +import Button from './Button' +import Column from './Column' +import { Header } from './Dialog' +import Row from './Row' +import TokenImg from './TokenImg' + +interface ITokenAmount { + value: number + token: Token +} + +export enum TransactionStatus { + SUCCESS = 0, + ERROR, + PENDING, +} + +interface ITransaction { + input: ITokenAmount + output: ITokenAmount + status: TransactionStatus +} + +// TODO: integrate with web3-react context +export const mockTxs: ITransaction[] = [ + { + input: { value: 4170.15, token: USDC }, + output: { value: 4167.44, token: DAI }, + status: TransactionStatus.SUCCESS, + }, + { + input: { value: 1.23, token: ETH }, + output: { value: 4125.02, token: DAI }, + status: TransactionStatus.PENDING, + }, + { + input: { value: 10, token: UNI }, + output: { value: 2125.02, token: ETH }, + status: TransactionStatus.ERROR, + }, +] + +const TransactionRow = styled(Row)` + padding: 0.5em 1em; + + :first-of-type { + padding-top: 1em; + } +` + +function TokenAmount({ value: { value, token } }: { value: ITokenAmount }) { + return ( + + + + {value.toLocaleString('en')} {token.symbol} + + + ) +} + +function Transaction({ tx }: { tx: ITransaction }) { + const statusIcon = useMemo(() => { + switch (tx.status) { + case TransactionStatus.SUCCESS: + return + case TransactionStatus.ERROR: + return + case TransactionStatus.PENDING: + return + } + }, [tx.status]) + return ( + + + + + + + + + + {statusIcon} + + + ) +} + +export default function RecentTransactionsDialog() { + const [txs, setTxs] = useState(mockTxs) + + return ( + <> +
Recent transactions} ruled> + +
+ + {txs.map((tx, key) => ( + + ))} + + + ) +} diff --git a/src/lib/components/Row.tsx b/src/lib/components/Row.tsx new file mode 100644 index 0000000000..b0e530bc68 --- /dev/null +++ b/src/lib/components/Row.tsx @@ -0,0 +1,27 @@ +import styled, { Color, Theme } from 'lib/theme' +import { Children, ReactNode } from 'react' + +const Row = styled.div<{ + color?: Color + align?: string + justify?: string + pad?: number + gap?: number + flex?: true + grow?: true + children?: ReactNode + theme: Theme +}>` + align-items: ${({ align }) => align ?? 'center'}; + color: ${({ color, theme }) => color && theme[color]}; + display: ${({ flex }) => (flex ? 'flex' : 'grid')}; + flex-flow: wrap; + flex-grow: ${({ grow }) => grow && 1}; + gap: ${({ gap }) => gap && `${gap}em`}; + grid-auto-flow: column; + grid-template-columns: ${({ grow, children }) => (grow ? `repeat(${Children.count(children)}, 1fr)` : '')}; + justify-content: ${({ justify }) => justify ?? 'space-between'}; + padding: ${({ pad }) => pad && `0 ${pad}em`}; +` + +export default Row diff --git a/src/lib/components/Rule.tsx b/src/lib/components/Rule.tsx new file mode 100644 index 0000000000..f3a5397910 --- /dev/null +++ b/src/lib/components/Rule.tsx @@ -0,0 +1,11 @@ +import styled from 'lib/theme' + +const Rule = styled.hr<{ padded?: true; scrollingEdge?: 'top' | 'bottom' }>` + border: none; + border-bottom: 1px solid ${({ theme }) => theme.outline}; + margin: 0 ${({ padded }) => (padded ? '0.75em' : 0)}; + margin-bottom: ${({ scrollingEdge }) => (scrollingEdge === 'bottom' ? -1 : 0)}px; + margin-top: ${({ scrollingEdge }) => (scrollingEdge !== 'bottom' ? -1 : 0)}px; +` + +export default Rule diff --git a/src/lib/components/Swap/Input.tsx b/src/lib/components/Swap/Input.tsx new file mode 100644 index 0000000000..6fb84ab444 --- /dev/null +++ b/src/lib/components/Swap/Input.tsx @@ -0,0 +1,64 @@ +import { Trans } from '@lingui/macro' +import { useAtomValue } from 'jotai/utils' +import styled, { ThemedText } from 'lib/theme' +import { ReactNode } from 'react' + +import Column from '../Column' +import Row from '../Row' +import TokenImg from '../TokenImg' +import { inputAtom, useUpdateInputToken, useUpdateInputValue } from './state' +import TokenInput from './TokenInput' + +const mockBalance = 123.45 + +const InputColumn = styled(Column)<{ approved?: boolean }>` + margin: 0.75em; + position: relative; + + ${TokenImg} { + filter: ${({ approved }) => (approved ? undefined : 'saturate(0) opacity(0.4)')}; + transition: filter 0.25s; + } +` + +interface InputProps { + disabled?: boolean + children: ReactNode +} + +export default function Input({ disabled, children }: InputProps) { + const input = useAtomValue(inputAtom) + const setValue = useUpdateInputValue(inputAtom) + const setToken = useUpdateInputToken(inputAtom) + const balance = mockBalance + + return ( + + + + Trading + + + setValue(balance) : undefined} + onChangeInput={setValue} + onChangeToken={setToken} + > + + + {input.usdc ? `~ $${input.usdc.toLocaleString('en')}` : '-'} + {balance && ( + balance ? 'error' : undefined}> + Balance: {balance} + + )} + + + + + {children} + + ) +} diff --git a/src/lib/components/Swap/Output.tsx b/src/lib/components/Swap/Output.tsx new file mode 100644 index 0000000000..14f07cc110 --- /dev/null +++ b/src/lib/components/Swap/Output.tsx @@ -0,0 +1,87 @@ +import { Trans } from '@lingui/macro' +import { atom } from 'jotai' +import { useAtomValue } from 'jotai/utils' +import useColor, { usePrefetchColor } from 'lib/hooks/useColor' +import styled, { DynamicThemeProvider, ThemedText } from 'lib/theme' +import { ReactNode, useMemo } from 'react' + +import Column from '../Column' +import Row from '../Row' +import { inputAtom, outputAtom, useUpdateInputToken, useUpdateInputValue } from './state' +import TokenInput from './TokenInput' + +export const colorAtom = atom(undefined) + +const OutputColumn = styled(Column)<{ hasColor: boolean | null }>` + background-color: ${({ theme }) => theme.module}; + border-radius: ${({ theme }) => theme.borderRadius - 0.25}em; + padding: 0.75em; + position: relative; + + // Set transitions to reduce color flashes when switching color/token. + // When color loads, transition the background so that it transitions from the empty or last state, but not _to_ the empty state. + transition: ${({ hasColor }) => (hasColor ? 'background-color 0.25s ease-out' : undefined)}; + * { + // When color is loading, delay the color/stroke so that it seems to transition from the last state. + transition: ${({ hasColor }) => (hasColor === null ? 'color 0.25s ease-in, stroke 0.25s ease-in' : undefined)}; + } +` + +interface OutputProps { + disabled?: boolean + children: ReactNode +} + +export default function Output({ disabled, children }: OutputProps) { + const input = useAtomValue(inputAtom) + const output = useAtomValue(outputAtom) + const setValue = useUpdateInputValue(outputAtom) + const setToken = useUpdateInputToken(outputAtom) + const balance = 123.45 + + const overrideColor = useAtomValue(colorAtom) + const dynamicColor = useColor(output.token) + usePrefetchColor(input.token) // extract eagerly in case of reversal + const color = overrideColor || dynamicColor + const hasColor = output.token ? Boolean(color) || null : false + + const change = useMemo(() => { + if (input.usdc && output.usdc) { + const change = output.usdc / input.usdc - 1 + const percent = (change * 100).toPrecision(3) + return change > 0 ? ` (+${percent}%)` : `(${percent}%)` + } + return '' + }, [input, output]) + const usdc = useMemo(() => { + if (output.usdc) { + return `~ $${output.usdc.toLocaleString('en')}${change}` + } + return '-' + }, [change, output]) + + return ( + + + + + For + + + + + + {usdc} + {balance && ( + + Balance: {balance} + + )} + + + + {children} + + + ) +} diff --git a/src/lib/components/Swap/ReverseButton.tsx b/src/lib/components/Swap/ReverseButton.tsx new file mode 100644 index 0000000000..577a0560a9 --- /dev/null +++ b/src/lib/components/Swap/ReverseButton.tsx @@ -0,0 +1,72 @@ +import { useAtom } from 'jotai' +import { ArrowDown as ArrowDownIcon, ArrowUp as ArrowUpIcon } from 'lib/icons' +import styled, { Layer } from 'lib/theme' +import { useCallback, useState } from 'react' + +import Button from '../Button' +import Row from '../Row' +import { stateAtom } from './state' + +const ReverseRow = styled(Row)` + bottom: -1.5em; + position: absolute; + width: 100%; + z-index: ${Layer.OVERLAY}; +` + +const ArrowUp = styled(ArrowUpIcon)` + left: calc(50% - 0.37em); + position: absolute; + top: calc(50% - 0.82em); +` + +const ArrowDown = styled(ArrowDownIcon)` + bottom: calc(50% - 0.82em); + position: absolute; + right: calc(50% - 0.37em); +` + +const Overlay = styled.div` + background-color: ${({ theme }) => theme.container}; + border-radius: ${({ theme }) => theme.borderRadius}em; + padding: 0.25em; +` + +const StyledReverseButton = styled(Button)<{ turns: number }>` + border-radius: ${({ theme }) => theme.borderRadius * 0.75}em; + height: 2.5em; + position: relative; + width: 2.5em; + + div { + transform: rotate(${({ turns }) => turns / 2}turn); + transition: transform 0.25s ease-in-out; + will-change: transform; + } +` + +export default function ReverseButton({ disabled }: { disabled?: boolean }) { + const [state, setState] = useAtom(stateAtom) + const [turns, setTurns] = useState(0) + const onClick = useCallback(() => { + const { input, output } = state + setState((state) => { + state.input = output + state.output = input + }) + setTurns((turns) => ++turns) + }, [state, setState]) + + return ( + + + +
+ + +
+
+
+
+ ) +} diff --git a/src/lib/components/Swap/Settings.fixture.tsx b/src/lib/components/Swap/Settings.fixture.tsx new file mode 100644 index 0000000000..d24efc858d --- /dev/null +++ b/src/lib/components/Swap/Settings.fixture.tsx @@ -0,0 +1,8 @@ +import { Modal } from '../Dialog' +import { SettingsDialog } from './Settings' + +export default ( + + + +) diff --git a/src/lib/components/Swap/Settings/MaxSlippageSelect.tsx b/src/lib/components/Swap/Settings/MaxSlippageSelect.tsx new file mode 100644 index 0000000000..5e3821fae7 --- /dev/null +++ b/src/lib/components/Swap/Settings/MaxSlippageSelect.tsx @@ -0,0 +1,91 @@ +import { t, Trans } from '@lingui/macro' +import { useAtom } from 'jotai' +import { Check, LargeIcon } from 'lib/icons' +import styled, { ThemedText } from 'lib/theme' +import { ReactNode, useCallback, useRef } from 'react' + +import { BaseButton, TextButton } from '../../Button' +import Column from '../../Column' +import { DecimalInput, inputCss } from '../../Input' +import Row from '../../Row' +import { MaxSlippage, maxSlippageAtom } from '../state' +import { Label, optionCss } from './components' + +const tooltip = ( + Your transaction will revert if the price changes unfavorably by more than this percentage. +) + +const StyledOption = styled(TextButton)<{ selected: boolean }>` + ${({ selected }) => optionCss(selected)} +` + +const StyledInputOption = styled(BaseButton)<{ selected: boolean }>` + ${({ selected }) => optionCss(selected)} + ${inputCss} + border-color: ${({ selected, theme }) => (selected ? theme.active : 'transparent')} !important; + padding: calc(0.5em - 1px) 0.625em; +` + +interface OptionProps { + value: T + selected: boolean + onSelect: (value: T) => void +} + +function Option({ value, selected, onSelect }: OptionProps) { + return ( + onSelect(value)}> + + {value}% + {selected && } + + + ) +} + +function InputOption({ value, children, selected, onSelect }: OptionProps & { children: ReactNode }) { + return ( + onSelect(value)}> + + {children} + + + ) +} + +export default function MaxSlippageSelect() { + const { P01, P05, CUSTOM } = MaxSlippage + const [{ value: maxSlippage, custom }, setMaxSlippage] = useAtom(maxSlippageAtom) + + const input = useRef(null) + const focus = useCallback(() => input.current?.focus(), [input]) + const onInputSelect = useCallback( + (custom) => { + focus() + if (custom !== undefined) { + setMaxSlippage({ value: CUSTOM, custom }) + } + }, + [CUSTOM, focus, setMaxSlippage] + ) + + return ( + + + ) +} diff --git a/src/lib/components/Swap/Settings/MockToggle.tsx b/src/lib/components/Swap/Settings/MockToggle.tsx new file mode 100644 index 0000000000..4a61513532 --- /dev/null +++ b/src/lib/components/Swap/Settings/MockToggle.tsx @@ -0,0 +1,17 @@ +import { Trans } from '@lingui/macro' +import { useAtom } from 'jotai' + +import Row from '../../Row' +import Toggle from '../../Toggle' +import { mockTogglableAtom } from '../state' +import { Label } from './components' + +export default function MockToggle() { + const [mockTogglable, toggleMockTogglable] = useAtom(mockTogglableAtom) + return ( + + + ) +} diff --git a/src/lib/components/Swap/Settings/TransactionTtlInput.tsx b/src/lib/components/Swap/Settings/TransactionTtlInput.tsx new file mode 100644 index 0000000000..4bb12b44af --- /dev/null +++ b/src/lib/components/Swap/Settings/TransactionTtlInput.tsx @@ -0,0 +1,37 @@ +import { Trans } from '@lingui/macro' +import { useAtom } from 'jotai' +import styled, { ThemedText } from 'lib/theme' +import { useRef } from 'react' + +import Column from '../../Column' +import { inputCss, IntegerInput } from '../../Input' +import Row from '../../Row' +import { TRANSACTION_TTL_DEFAULT, transactionTtlAtom } from '../state' +import { Label } from './components' + +const tooltip = Your transaction will revert if it has been pending for longer than this period of time. + +const Input = styled(Row)` + ${inputCss} +` + +export default function TransactionTtlInput() { + const [transactionTtl, setTransactionTtl] = useAtom(transactionTtlAtom) + const input = useRef(null) + return ( + + + ) +} diff --git a/src/lib/components/Swap/Settings/components.tsx b/src/lib/components/Swap/Settings/components.tsx new file mode 100644 index 0000000000..f7a819a49a --- /dev/null +++ b/src/lib/components/Swap/Settings/components.tsx @@ -0,0 +1,43 @@ +import styled, { css, ThemedText } from 'lib/theme' +import { ReactNode } from 'react' +import { AnyStyledComponent } from 'styled-components' + +import Row from '../../Row' +import Tooltip from '../../Tooltip' + +export const optionCss = (selected: boolean) => css` + border: 1px solid ${({ theme }) => (selected ? theme.active : theme.outline)}; + border-radius: ${({ theme }) => theme.borderRadius * 0.75}em; + color: ${({ theme }) => theme.primary} !important; + display: grid; + grid-gap: 0.25em; + padding: 0.5em 0.625em; + + :enabled:hover { + border-color: ${({ theme }) => theme.onHover(selected ? theme.active : theme.outline)}; + } +` + +export function value(Value: AnyStyledComponent) { + return styled(Value)<{ selected?: boolean; cursor?: string }>` + cursor: ${({ cursor }) => cursor ?? 'pointer'}; + ` +} + +interface LabelProps { + name: ReactNode + tooltip?: ReactNode +} + +export function Label({ name, tooltip }: LabelProps) { + return ( + + {name} + {tooltip && ( + + {tooltip} + + )} + + ) +} diff --git a/src/lib/components/Swap/Settings/index.tsx b/src/lib/components/Swap/Settings/index.tsx new file mode 100644 index 0000000000..618d8addd8 --- /dev/null +++ b/src/lib/components/Swap/Settings/index.tsx @@ -0,0 +1,67 @@ +import { Trans } from '@lingui/macro' +import { useResetAtom } from 'jotai/utils' +import useScrollbar from 'lib/hooks/useScrollbar' +import { Settings as SettingsIcon } from 'lib/icons' +import styled, { ThemedText } from 'lib/theme' +import React, { useState } from 'react' + +import { IconButton, TextButton } from '../../Button' +import Column from '../../Column' +import Dialog, { Header } from '../../Dialog' +import { BoundaryProvider } from '../../Popover' +import { settingsAtom } from '../state' +import MaxSlippageSelect from './MaxSlippageSelect' +import TransactionTtlInput from './TransactionTtlInput' + +export function SettingsDialog() { + const [boundary, setBoundary] = useState(null) + const scrollbar = useScrollbar(boundary, { padded: true }) + const resetSettings = useResetAtom(settingsAtom) + return ( + <> +
Settings} ruled> + + + Reset + + +
+ + + + + + + + ) +} + +const SettingsButton = styled(IconButton)<{ hover: boolean }>` + ${SettingsIcon} { + transform: ${({ hover }) => hover && 'rotate(45deg)'}; + transition: ${({ hover }) => hover && 'transform 0.25s'}; + will-change: transform; + } +` + +export default function Settings({ disabled }: { disabled?: boolean }) { + const [open, setOpen] = useState(false) + const [hover, setHover] = useState(false) + return ( + <> + setOpen(true)} + onMouseEnter={() => setHover(true)} + onMouseLeave={() => setHover(false)} + icon={SettingsIcon} + /> + {open && ( + setOpen(false)}> + + + )} + + ) +} diff --git a/src/lib/components/Swap/Status.fixture.tsx b/src/lib/components/Swap/Status.fixture.tsx new file mode 100644 index 0000000000..f70425cd17 --- /dev/null +++ b/src/lib/components/Swap/Status.fixture.tsx @@ -0,0 +1,60 @@ +import { useUpdateAtom } from 'jotai/utils' +import { DAI, ETH } from 'lib/mocks' +import { useEffect } from 'react' +import { useSelect } from 'react-cosmos/fixture' +import invariant from 'tiny-invariant' + +import { Modal } from '../Dialog' +import { transactionAtom } from './state' +import { StatusDialog } from './Status' + +function Fixture() { + const setTransaction = useUpdateAtom(transactionAtom) + + const [state] = useSelect('state', { + options: ['PENDING', 'ERROR', 'SUCCESS'], + }) + useEffect(() => { + setTransaction({ + input: { token: ETH, value: 1 }, + output: { token: DAI, value: 4200 }, + receipt: '', + timestamp: Date.now(), + }) + }, [setTransaction]) + useEffect(() => { + switch (state) { + case 'PENDING': + setTransaction({ + input: { token: ETH, value: 1 }, + output: { token: DAI, value: 4200 }, + receipt: '', + timestamp: Date.now(), + }) + break + case 'ERROR': + setTransaction((tx) => { + invariant(tx) + tx.status = new Error( + 'Swap failed: Unknown error: "Error: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent pulvinar, risus eu pretium condimentum, tellus dui fermentum turpis, id gravida metus justo ac lorem. Etiam vitae dapibus eros, nec elementum ipsum. Duis condimentum, felis vel tempor ultricies, eros diam tempus odio, at tempor urna odio id massa. Aliquam laoreet turpis justo, auctor accumsan est pellentesque at. Integer et dolor feugiat, sodales tortor non, cursus augue. Phasellus id suscipit justo, in ultricies tortor. Aenean libero nibh, egestas sit amet vehicula sit amet, tempor ac ligula. Cras at tempor lectus. Mauris sollicitudin est velit, nec consectetur lorem dapibus ut. Praesent magna ex, faucibus ac fermentum malesuada, molestie at ex. Phasellus bibendum lorem nec dolor dignissim eleifend. Nam dignissim varius velit, at volutpat justo pretium id."' + ) + tx.elapsedMs = Date.now() - tx.timestamp + }) + break + case 'SUCCESS': + setTransaction((tx) => { + invariant(tx) + tx.status = true + tx.elapsedMs = Date.now() - tx.timestamp + }) + break + } + }, [setTransaction, state]) + return void 0} /> +} + +export default ( + + + +) diff --git a/src/lib/components/Swap/Status/StatusDialog.tsx b/src/lib/components/Swap/Status/StatusDialog.tsx new file mode 100644 index 0000000000..a5db31d9f5 --- /dev/null +++ b/src/lib/components/Swap/Status/StatusDialog.tsx @@ -0,0 +1,110 @@ +import { Trans } from '@lingui/macro' +import { useAtomValue } from 'jotai/utils' +import ErrorDialog, { StatusHeader } from 'lib/components/Error/ErrorDialog' +import useInterval from 'lib/hooks/useInterval' +import { CheckCircle, Clock, Spinner } from 'lib/icons' +import styled, { ThemedText } from 'lib/theme' +import { useCallback, useMemo, useState } from 'react' + +import ActionButton from '../../ActionButton' +import Column from '../../Column' +import Row from '../../Row' +import { Transaction, transactionAtom } from '../state' +import Summary from '../Summary' + +const errorMessage = ( + + Try increasing your slippage tolerance. +
+ NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3. +
+) + +const TransactionRow = styled(Row)` + flex-direction: row-reverse; +` + +function ElapsedTime({ tx }: { tx: Transaction | null }) { + const [elapsedMs, setElapsedMs] = useState(0) + useInterval( + () => { + if (tx?.elapsedMs) { + setElapsedMs(tx.elapsedMs) + } else if (tx?.timestamp) { + setElapsedMs(Date.now() - tx.timestamp) + } + }, + elapsedMs === tx?.elapsedMs ? null : 1000 + ) + const toElapsedTime = useCallback((ms: number) => { + let sec = Math.floor(ms / 1000) + const min = Math.floor(sec / 60) + sec = sec % 60 + if (min) { + return ( + + {min}m {sec}s + + ) + } else { + return {sec}s + } + }, []) + return ( + + + {toElapsedTime(elapsedMs)} + + ) +} + +const EtherscanA = styled.a` + color: ${({ theme }) => theme.accent}; + text-decoration: none; +` + +interface TransactionStatusProps extends StatusProps { + tx: Transaction | null +} + +function TransactionStatus({ tx, onClose }: TransactionStatusProps) { + const Icon = useMemo(() => { + return tx?.status ? CheckCircle : Spinner + }, [tx?.status]) + const heading = useMemo(() => { + return tx?.status ? Transaction submitted : Transaction pending + }, [tx?.status]) + return ( + + + {heading} + {tx ? :
} + + + + + View on Etherscan + + + + + + Close + + + ) +} + +interface StatusProps { + onClose: () => void +} + +export default function TransactionStatusDialog({ onClose }: StatusProps) { + const tx = useAtomValue(transactionAtom) + + return tx?.status instanceof Error ? ( + Dismiss} onAction={onClose} /> + ) : ( + + ) +} diff --git a/src/lib/components/Swap/Status/index.ts b/src/lib/components/Swap/Status/index.ts new file mode 100644 index 0000000000..b0ccbf9360 --- /dev/null +++ b/src/lib/components/Swap/Status/index.ts @@ -0,0 +1 @@ +export { default as StatusDialog } from './StatusDialog' diff --git a/src/lib/components/Swap/Summary.fixture.tsx b/src/lib/components/Swap/Summary.fixture.tsx new file mode 100644 index 0000000000..6eabbcd753 --- /dev/null +++ b/src/lib/components/Swap/Summary.fixture.tsx @@ -0,0 +1,43 @@ +import { useUpdateAtom } from 'jotai/utils' +import { DAI, ETH } from 'lib/mocks' +import { useEffect, useState } from 'react' +import { useValue } from 'react-cosmos/fixture' + +import { Modal } from '../Dialog' +import { Field, outputAtom, stateAtom } from './state' +import { SummaryDialog } from './Summary' + +function Fixture() { + const setState = useUpdateAtom(stateAtom) + const [, setInitialized] = useState(false) + // eslint-disable-next-line react-hooks/exhaustive-deps + useEffect(() => { + setState({ + activeInput: Field.INPUT, + input: { token: ETH, value: 1, usdc: 4195 }, + output: { token: DAI, value: 4200, usdc: 4200 }, + swap: { + lpFee: 0.0005, + integratorFee: 0.00025, + priceImpact: 0.01, + slippageTolerance: 0.5, + minimumReceived: 4190, + }, + }) + setInitialized(true) + }) + + const setOutput = useUpdateAtom(outputAtom) + const [price] = useValue('output value', { defaultValue: 4200 }) + useEffect(() => { + setState((state) => ({ ...state, output: { token: DAI, value: price, usdc: price } })) + }, [price, setOutput, setState]) + + return ( + + void 0} /> + + ) +} + +export default diff --git a/src/lib/components/Swap/Summary/Details.tsx b/src/lib/components/Swap/Summary/Details.tsx new file mode 100644 index 0000000000..05ea80a193 --- /dev/null +++ b/src/lib/components/Swap/Summary/Details.tsx @@ -0,0 +1,58 @@ +import { t } from '@lingui/macro' +import { ThemedText } from 'lib/theme' +import { Token } from 'lib/types' +import { useMemo } from 'react' + +import Row from '../../Row' +import { State } from '../state' + +interface DetailProps { + label: string + value: string +} + +function Detail({ label, value }: DetailProps) { + return ( + + + {label} + {value} + + + ) +} + +interface DetailsProps { + swap: Required['swap'] + input: Token + output: Token +} + +export default function Details({ + input: { symbol: inputSymbol }, + output: { symbol: outputSymbol }, + swap, +}: DetailsProps) { + const integrator = window.location.hostname + const details = useMemo((): [string, string][] => { + return [ + [t`Liquidity provider fee`, `${swap.lpFee} ${inputSymbol}`], + [t`${integrator} fee`, swap.integratorFee && `${swap.integratorFee} ${inputSymbol}`], + [t`Price impact`, `${swap.priceImpact}%`], + [t`Maximum sent`, swap.maximumSent && `${swap.maximumSent} ${inputSymbol}`], + [t`Minimum received`, swap.minimumReceived && `${swap.minimumReceived} ${outputSymbol}`], + [t`Slippage tolerance`, `${swap.slippageTolerance}%`], + ].filter(isDetail) + + function isDetail(detail: unknown[]): detail is [string, string] { + return Boolean(detail[1]) + } + }, [inputSymbol, outputSymbol, swap, integrator]) + return ( + <> + {details.map(([label, detail]) => ( + + ))} + + ) +} diff --git a/src/lib/components/Swap/Summary/Summary.tsx b/src/lib/components/Swap/Summary/Summary.tsx new file mode 100644 index 0000000000..effc52a115 --- /dev/null +++ b/src/lib/components/Swap/Summary/Summary.tsx @@ -0,0 +1,69 @@ +import { ArrowRight } from 'lib/icons' +import styled from 'lib/theme' +import { ThemedText } from 'lib/theme' +import { useMemo } from 'react' + +import Column from '../../Column' +import Row from '../../Row' +import TokenImg from '../../TokenImg' +import { Input } from '../state' + +const Percent = styled.span<{ gain: boolean }>` + color: ${({ gain, theme }) => (gain ? theme.success : theme.error)}; +` + +interface TokenValueProps { + input: Required> & Input + usdc?: boolean + change?: number +} + +function TokenValue({ input, usdc, change }: TokenValueProps) { + const percent = useMemo(() => { + if (change) { + const percent = (change * 100).toPrecision(3) + return change > 0 ? `(+${percent}%)` : `(${percent}%)` + } + return undefined + }, [change]) + return ( + + + + + {input.value} {input.token.symbol} + + + {usdc && input.usdc && ( + + + ~ ${input.usdc.toLocaleString('en')} + {change && 0}> {percent}} + + + )} + + ) +} + +interface SummaryProps { + input: Required> & Input + output: Required> & Input + usdc?: boolean +} + +export default function Summary({ input, output, usdc }: SummaryProps) { + const change = useMemo(() => { + if (usdc && input.usdc && output.usdc) { + return output.usdc / input.usdc - 1 + } + return undefined + }, [usdc, input.usdc, output.usdc]) + return ( + + + + + + ) +} diff --git a/src/lib/components/Swap/Summary/index.tsx b/src/lib/components/Swap/Summary/index.tsx new file mode 100644 index 0000000000..4a54a1efb6 --- /dev/null +++ b/src/lib/components/Swap/Summary/index.tsx @@ -0,0 +1,154 @@ +import { Trans } from '@lingui/macro' +import { useAtomValue } from 'jotai/utils' +import { IconButton } from 'lib/components/Button' +import useScrollbar from 'lib/hooks/useScrollbar' +import { Expando, Info } from 'lib/icons' +import styled, { ThemedText } from 'lib/theme' +import { useMemo, useState } from 'react' + +import ActionButton from '../../ActionButton' +import Column from '../../Column' +import { Header } from '../../Dialog' +import Row from '../../Row' +import Rule from '../../Rule' +import { Input, inputAtom, outputAtom, swapAtom } from '../state' +import Details from './Details' +import Summary from './Summary' + +export default Summary + +function asInput(input: Input): (Required> & Input) | undefined { + return input.token && input.value ? (input as Required>) : undefined +} + +const updated = { message: Price updated, action: Accept } + +const SummaryColumn = styled(Column)`` +const ExpandoColumn = styled(Column)`` +const DetailsColumn = styled(Column)`` +const Estimate = styled(ThemedText.Caption)`` +const Body = styled(Column)<{ open: boolean }>` + height: calc(100% - 2.5em); + + ${SummaryColumn} { + flex-grow: ${({ open }) => (open ? 0 : 1)}; + transition: flex-grow 0.25s; + } + + ${ExpandoColumn} { + flex-grow: ${({ open }) => (open ? 1 : 0)}; + transition: flex-grow 0.25s; + + ${DetailsColumn} { + flex-basis: ${({ open }) => (open ? 7 : 0)}em; + overflow-y: hidden; + position: relative; + transition: flex-basis 0.25s; + + ${Column} { + height: 100%; + padding: ${({ open }) => (open ? '0.5em 0' : 0)}; + transition: padding 0.25s; + + :after { + background: linear-gradient(#ffffff00, ${({ theme }) => theme.dialog}); + bottom: 0; + content: ''; + height: 0.75em; + pointer-events: none; + position: absolute; + width: calc(100% - 1em); + } + } + } + + ${Estimate} { + max-height: ${({ open }) => (open ? 0 : 56 / 12)}em; // 2 * line-height + padding + overflow-y: hidden; + padding: ${({ open }) => (open ? 0 : '1em 0')}; + transition: ${({ open }) => + open + ? 'max-height 0.1s ease-out, padding 0.25s ease-out' + : 'flex-grow 0.25s ease-out, max-height 0.1s ease-in, padding 0.25s ease-out'}; + } + } +` + +interface SummaryDialogProps { + onConfirm: () => void +} + +export function SummaryDialog({ onConfirm }: SummaryDialogProps) { + const swap = useAtomValue(swapAtom) + const partialInput = useAtomValue(inputAtom) + const partialOutput = useAtomValue(outputAtom) + const input = asInput(partialInput) + const output = asInput(partialOutput) + + const price = useMemo(() => { + return input && output ? output.value / input.value : undefined + }, [input, output]) + const [confirmedPrice, confirmPrice] = useState(price) + + const [open, setOpen] = useState(true) + + const [details, setDetails] = useState(null) + + const scrollbar = useScrollbar(details) + + if (!(input && output && swap)) { + return null + } + + return ( + <> +
Swap summary} ruled /> + + + + + 1 {input.token.symbol} = {price} {output.token.symbol} + + + + + + + + Swap details + + + setOpen(!open)} icon={Expando} iconProps={{ open }} /> + + + + + +
+ + + + Output is estimated.{' '} + {swap?.minimumReceived && ( + + You will receive at least {swap.minimumReceived} {output.token.symbol} or the transaction will revert. + + )} + {swap?.maximumSent && ( + + You will send at most {swap.maximumSent} {input.token.symbol} or the transaction will revert. + + )} + + confirmPrice(price)} + updated={price === confirmedPrice ? undefined : updated} + > + Confirm swap + + + + + ) +} diff --git a/src/lib/components/Swap/Swap.fixture.tsx b/src/lib/components/Swap/Swap.fixture.tsx new file mode 100644 index 0000000000..991a02f983 --- /dev/null +++ b/src/lib/components/Swap/Swap.fixture.tsx @@ -0,0 +1,67 @@ +import { useAtom } from 'jotai' +import { useUpdateAtom } from 'jotai/utils' +import { useEffect } from 'react' +import { useValue } from 'react-cosmos/fixture' + +import Swap from '.' +import { colorAtom } from './Output' +import { inputAtom, outputAtom, swapAtom } from './state' + +const validateColor = (() => { + const validator = document.createElement('div').style + return (color: string) => { + validator.color = '' + validator.color = color + return validator.color !== '' + } +})() + +function Fixture() { + const [input, setInput] = useAtom(inputAtom) + const [output, setOutput] = useAtom(outputAtom) + const [swap, setSwap] = useAtom(swapAtom) + const [priceFetched] = useValue('price fetched', { defaultValue: false }) + useEffect(() => { + if (priceFetched && input.token && output.token) { + const inputValue = input.value || 1 + const inputUsdc = input.usdc || inputValue + const outputValue = output.value || 1 + const outputUsdc = output.usdc || outputValue + if (!(inputValue === input.value && inputUsdc === input.usdc)) { + setInput({ ...input, value: inputValue, usdc: inputUsdc }) + } + if (!(outputValue === output.value && outputUsdc === output.usdc)) { + setOutput({ ...output, value: outputValue, usdc: outputUsdc }) + } + if (!swap || swap.minimumReceived !== outputValue * 0.995) { + setSwap({ + lpFee: 0.0005, + priceImpact: 0.01, + slippageTolerance: 0.5, + minimumReceived: outputValue * 0.995, + }) + } + } else if (swap) { + setSwap(undefined) + } + }, [input, output, priceFetched, setInput, setOutput, setSwap, swap]) + + const [tokenApproved] = useValue('token approved', { defaultValue: true }) + useEffect(() => { + if (tokenApproved !== input.approved) { + setInput({ ...input, approved: tokenApproved }) + } + }, [input, setInput, tokenApproved]) + + const setColor = useUpdateAtom(colorAtom) + const [color] = useValue('token color', { defaultValue: '' }) + useEffect(() => { + if (!color || validateColor(color)) { + setColor(color) + } + }, [color, setColor]) + + return +} + +export default diff --git a/src/lib/components/Swap/SwapButton.tsx b/src/lib/components/Swap/SwapButton.tsx new file mode 100644 index 0000000000..3fe3dc59af --- /dev/null +++ b/src/lib/components/Swap/SwapButton.tsx @@ -0,0 +1,58 @@ +import { Trans } from '@lingui/macro' +import { useAtomValue } from 'jotai/utils' +import { useCallback, useMemo, useState } from 'react' + +import ActionButton from '../ActionButton' +import Dialog from '../Dialog' +import { inputAtom, outputAtom, swapAtom } from './state' +import { StatusDialog } from './Status' +import { SummaryDialog } from './Summary' + +const mockBalance = 123.45 + +enum Mode { + NONE, + SUMMARY, + STATUS, +} + +export default function SwapButton() { + const swap = useAtomValue(swapAtom) + const input = useAtomValue(inputAtom) + const output = useAtomValue(outputAtom) + const balance = mockBalance + const [mode, setMode] = useState(Mode.NONE) + const actionProps = useMemo(() => { + if (swap && input.token && input.value && output.token && output.value && input.value <= balance) { + if (input.approved) { + return {} + } else { + return { + updated: { message: Approve {input.token.symbol} first, action: Approve }, + } + } + } + return { disabled: true } + }, [balance, input.approved, input.token, input.value, output.token, output.value, swap]) + const onConfirm = useCallback(() => { + // TODO: Send the tx to the connected wallet. + setMode(Mode.STATUS) + }, []) + return ( + <> + setMode(Mode.SUMMARY)} onUpdate={() => void 0} {...actionProps}> + Review swap + + {mode >= Mode.SUMMARY && ( + setMode(Mode.NONE)}> + + + )} + {mode >= Mode.STATUS && ( + + setMode(Mode.NONE)} /> + + )} + + ) +} diff --git a/src/lib/components/Swap/TokenInput.tsx b/src/lib/components/Swap/TokenInput.tsx new file mode 100644 index 0000000000..25d6881904 --- /dev/null +++ b/src/lib/components/Swap/TokenInput.tsx @@ -0,0 +1,95 @@ +import { Trans } from '@lingui/macro' +import styled, { keyframes, ThemedText } from 'lib/theme' +import { Token } from 'lib/types' +import { FocusEvent, ReactNode, useCallback, useRef, useState } from 'react' + +import Button from '../Button' +import Column from '../Column' +import { DecimalInput } from '../Input' +import Row from '../Row' +import TokenSelect from '../TokenSelect' +import { Input } from './state' + +const TokenInputRow = styled(Row)` + grid-template-columns: 1fr; +` + +const ValueInput = styled(DecimalInput)` + color: ${({ theme }) => theme.primary}; + + :hover:not(:focus-within) { + color: ${({ theme }) => theme.onHover(theme.primary)}; + } + + :hover:not(:focus-within)::placeholder { + color: ${({ theme }) => theme.onHover(theme.secondary)}; + } +` + +const delayedFadeIn = keyframes` + 0% { + opacity: 0; + } + 25% { + opacity: 0; + } + 100% { + opacity: 1; + } +` + +const MaxButton = styled(Button)` + animation: ${delayedFadeIn} 0.25s linear; + border-radius: 0.75em; + padding: 0.5em; +` + +interface TokenInputProps { + input: Input + disabled?: boolean + onMax?: () => void + onChangeInput: (input: number | undefined) => void + onChangeToken: (token: Token) => void + children: ReactNode +} + +export default function TokenInput({ + input: { value, token }, + disabled, + onMax, + onChangeInput, + onChangeToken, + children, +}: TokenInputProps) { + const max = useRef(null) + const [showMax, setShowMax] = useState(false) + const onFocus = useCallback(() => setShowMax(Boolean(onMax)), [onMax]) + const onBlur = useCallback((e: FocusEvent) => { + if (e.relatedTarget !== max.current) { + setShowMax(false) + } + }, []) + return ( + + + + + + {showMax && ( + + + Max + + + )} + + + {children} + + ) +} diff --git a/src/lib/components/Swap/Toolbar.tsx b/src/lib/components/Swap/Toolbar.tsx new file mode 100644 index 0000000000..e7888e30c4 --- /dev/null +++ b/src/lib/components/Swap/Toolbar.tsx @@ -0,0 +1,124 @@ +import { Trans } from '@lingui/macro' +import { useAtomValue } from 'jotai/utils' +import { AlertTriangle, Info, largeIconCss, Spinner } from 'lib/icons' +import styled, { ThemedText, ThemeProvider } from 'lib/theme' +import { useMemo, useState } from 'react' + +import { TextButton } from '../Button' +import Row from '../Row' +import Rule from '../Rule' +import Tooltip from '../Tooltip' +import { Field, Input, inputAtom, outputAtom, stateAtom, swapAtom } from './state' + +const mockBalance = 123.45 + +function RoutingTooltip() { + return ( + + + TODO: Routing Tooltip + + + ) +} + +type FilledInput = Input & Required> + +function asFilledInput(input: Input): FilledInput | undefined { + return input.token && input.value ? (input as FilledInput) : undefined +} + +interface LoadedStateProps { + input: FilledInput + output: FilledInput +} + +function LoadedState({ input, output }: LoadedStateProps) { + const [flip, setFlip] = useState(true) + const ratio = useMemo(() => { + const [a, b] = flip ? [output, input] : [input, output] + const ratio = `1 ${a.token.symbol} = ${b.value / a.value} ${b.token.symbol}` + const usdc = a.usdc && ` ($${(a.usdc / a.value).toLocaleString('en')})` + return ( + + {ratio} + {usdc && {usdc}} + + ) + }, [flip, input, output]) + + return ( + setFlip(!flip)}> + {ratio} + + ) +} + +const ToolbarRow = styled(Row)` + padding: 0.5em 0; + ${largeIconCss} +` + +export default function Toolbar({ disabled }: { disabled?: boolean }) { + const { activeInput } = useAtomValue(stateAtom) + const swap = useAtomValue(swapAtom) + const input = useAtomValue(inputAtom) + const output = useAtomValue(outputAtom) + const balance = mockBalance + + const caption = useMemo(() => { + const filledInput = asFilledInput(input) + const filledOutput = asFilledInput(output) + if (disabled) { + return ( + <> + + Connect wallet to swap + + ) + } + if (activeInput === Field.INPUT ? filledInput && output.token : filledOutput && input.token) { + if (!swap) { + return ( + <> + + Fetching best price… + + ) + } + if (filledInput && filledInput.value > balance) { + return ( + <> + + Insufficient {filledInput.token.symbol} + + ) + } + if (filledInput && filledOutput) { + return ( + <> + + + + ) + } + } + return ( + <> + + Enter an amount + + ) + }, [activeInput, balance, disabled, input, output, swap]) + + return ( + <> + + + + {caption} + + + + ) +} diff --git a/src/lib/components/Swap/index.tsx b/src/lib/components/Swap/index.tsx new file mode 100644 index 0000000000..b214c02f1c --- /dev/null +++ b/src/lib/components/Swap/index.tsx @@ -0,0 +1,37 @@ +import { Trans } from '@lingui/macro' +import useActiveWeb3React from 'lib/hooks/useActiveWeb3React' +import { useState } from 'react' + +import Header from '../Header' +import { BoundaryProvider } from '../Popover' +import Wallet from '../Wallet' +import Input from './Input' +import Output from './Output' +import ReverseButton from './ReverseButton' +import Settings from './Settings' +import SwapButton from './SwapButton' +import Toolbar from './Toolbar' + +export default function Swap() { + const [boundary, setBoundary] = useState(null) + const { active, account } = useActiveWeb3React() + return ( + <> +
Swap}> + {active && } + +
+
+ + + + + + + + + +
+ + ) +} diff --git a/src/lib/components/Swap/state.ts b/src/lib/components/Swap/state.ts new file mode 100644 index 0000000000..0b70893095 --- /dev/null +++ b/src/lib/components/Swap/state.ts @@ -0,0 +1,117 @@ +import { atom, WritableAtom } from 'jotai' +import { atomWithImmer } from 'jotai/immer' +import { useUpdateAtom } from 'jotai/utils' +import { atomWithReset } from 'jotai/utils' +import { ETH } from 'lib/mocks' +import { Token } from 'lib/types' +import { Customizable, pickAtom, setCustomizable, setTogglable } from 'lib/utils/atoms' +import { useMemo } from 'react' + +/** Max slippage, as a percentage. */ +export enum MaxSlippage { + P01 = 0.1, + P05 = 0.5, + // Members to satisfy CustomizableEnum; see setCustomizable + CUSTOM = -1, + DEFAULT = P05, +} + +export const TRANSACTION_TTL_DEFAULT = 40 + +export interface Settings { + maxSlippage: Customizable + transactionTtl: number | undefined + mockTogglable: boolean +} + +const initialSettings: Settings = { + maxSlippage: { value: MaxSlippage.DEFAULT }, + transactionTtl: undefined, + mockTogglable: true, +} + +export const settingsAtom = atomWithReset(initialSettings) +export const maxSlippageAtom = pickAtom(settingsAtom, 'maxSlippage', setCustomizable(MaxSlippage)) +export const transactionTtlAtom = pickAtom(settingsAtom, 'transactionTtl') +export const mockTogglableAtom = pickAtom(settingsAtom, 'mockTogglable', setTogglable) + +export enum Field { + INPUT = 'input', + OUTPUT = 'output', +} + +export interface Input { + value?: number + token?: Token + usdc?: number +} + +export interface State { + activeInput: Field + [Field.INPUT]: Input & { approved?: boolean } + [Field.OUTPUT]: Input + swap?: { + lpFee: number + priceImpact: number + slippageTolerance: number + integratorFee?: number + maximumSent?: number + minimumReceived?: number + } +} + +export const stateAtom = atomWithImmer({ + activeInput: Field.INPUT, + input: { token: ETH }, + output: {}, +}) + +export const swapAtom = pickAtom(stateAtom, 'swap') + +export const inputAtom = atom( + (get) => get(stateAtom).input, + (get, set, update: Input & { approved?: boolean }) => { + set(stateAtom, (state) => { + state.activeInput = Field.INPUT + state.input = update + state.swap = undefined + }) + } +) + +export const outputAtom = atom( + (get) => get(stateAtom).output, + (get, set, update: Input) => { + set(stateAtom, (state) => { + state.activeInput = Field.OUTPUT + state.output = update + state.swap = undefined + }) + } +) + +export function useUpdateInputValue(inputAtom: WritableAtom) { + return useUpdateAtom( + useMemo( + () => atom(null, (get, set, value: Input['value']) => set(inputAtom, { token: get(inputAtom).token, value })), + [inputAtom] + ) + ) +} + +export function useUpdateInputToken(inputAtom: WritableAtom) { + return useUpdateAtom( + useMemo(() => atom(null, (get, set, token: Input['token']) => set(inputAtom, { token })), [inputAtom]) + ) +} + +export interface Transaction { + input: Required> + output: Required> + receipt: string + timestamp: number + elapsedMs?: number + status?: true | Error +} + +export const transactionAtom = atomWithImmer(null) diff --git a/src/lib/components/Toggle.tsx b/src/lib/components/Toggle.tsx new file mode 100644 index 0000000000..f8c10e2f46 --- /dev/null +++ b/src/lib/components/Toggle.tsx @@ -0,0 +1,90 @@ +import { t } from '@lingui/macro' +import styled, { ThemedText } from 'lib/theme' +import { transparentize } from 'polished' +import { KeyboardEvent, useCallback } from 'react' + +const Input = styled.input<{ text: string }>` + -moz-appearance: none; + -webkit-appearance: none; + align-items: center; + appearance: none; + background: ${({ theme }) => theme.interactive}; + border: none; + border-radius: ${({ theme }) => theme.borderRadius * 1.25}em; + cursor: pointer; + display: flex; + font-size: inherit; + font-weight: inherit; + height: 2em; + margin: 0; + padding: 0; + + position: relative; + width: 4.5em; + + :before { + background-color: ${({ theme }) => theme.secondary}; + border-radius: ${({ theme }) => theme.borderRadius * 50}%; + content: ''; + display: inline-block; + height: 1.5em; + margin-left: 0.25em; + position: absolute; + width: 1.5em; + } + + :hover:before { + background-color: ${({ theme }) => transparentize(0.3, theme.secondary)}; + } + + :checked:before { + background-color: ${({ theme }) => theme.accent}; + margin-left: 2.75em; + } + + :hover:checked:before { + background-color: ${({ theme }) => transparentize(0.3, theme.accent)}; + } + + :after { + content: '${({ text }) => text}'; + margin-left: 1.75em; + text-align: center; + width: 2.75em; + } + + :checked:after { + margin-left: 0; + } + + :before { + transition: margin 0.25s ease; + } +` + +interface ToggleProps { + checked: boolean + onToggle: () => void +} + +export default function Toggle({ checked, onToggle }: ToggleProps) { + const onKeyDown = useCallback( + (e: KeyboardEvent) => { + if (e.key === 'Enter') { + onToggle() + } + }, + [onToggle] + ) + return ( + + onToggle()} + onKeyDown={onKeyDown} + /> + + ) +} diff --git a/src/lib/components/TokenImg.tsx b/src/lib/components/TokenImg.tsx new file mode 100644 index 0000000000..077f59e480 --- /dev/null +++ b/src/lib/components/TokenImg.tsx @@ -0,0 +1,33 @@ +import useNativeEvent from 'lib/hooks/useNativeEvent' +import styled from 'lib/theme' +import { Token } from 'lib/types' +import { useState } from 'react' + +interface TokenImgProps { + className?: string + token: Token +} +const TRANSPARENT_SRC = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==' + +function TokenImg({ className, token }: TokenImgProps) { + const [img, setImg] = useState(null) + useNativeEvent(img, 'error', () => { + if (img) { + // Use a local transparent gif to avoid the browser-dependent broken img icon. + // The icon may still flash, but using a native event further reduces the duration. + img.src = TRANSPARENT_SRC + } + }) + return {token.name +} + +export default styled(TokenImg)<{ size?: number }>` + // radial-gradient calculates distance from the corner, not the edge: divide by sqrt(2) + background: radial-gradient( + ${({ theme }) => theme.module} calc(100% / ${Math.sqrt(2)} - 1.5px), + ${({ theme }) => theme.outline} calc(100% / ${Math.sqrt(2)} - 1.5px) + ); + border-radius: 100%; + height: ${({ size }) => size || 1}em; + width: ${({ size }) => size || 1}em; +` diff --git a/src/lib/components/TokenSelect.fixture.tsx b/src/lib/components/TokenSelect.fixture.tsx new file mode 100644 index 0000000000..1e6e07403c --- /dev/null +++ b/src/lib/components/TokenSelect.fixture.tsx @@ -0,0 +1,8 @@ +import { Modal } from './Dialog' +import { TokenSelectDialog } from './TokenSelect' + +export default ( + + void 0} /> + +) diff --git a/src/lib/components/TokenSelect/TokenBase.tsx b/src/lib/components/TokenSelect/TokenBase.tsx new file mode 100644 index 0000000000..69327a44b8 --- /dev/null +++ b/src/lib/components/TokenSelect/TokenBase.tsx @@ -0,0 +1,29 @@ +import styled, { ThemedText } from 'lib/theme' +import { Token } from 'lib/types' + +import Button from '../Button' +import Row from '../Row' +import TokenImg from '../TokenImg' + +const TokenButton = styled(Button)` + border-radius: ${({ theme }) => theme.borderRadius}em; + padding: 0.25em 0.75em 0.25em 0.25em; +` + +interface TokenBaseProps { + value: Token + onClick: (value: Token) => void +} + +export default function TokenBase({ value, onClick }: TokenBaseProps) { + return ( + onClick(value)}> + + + + {value.symbol} + + + + ) +} diff --git a/src/lib/components/TokenSelect/TokenButton.tsx b/src/lib/components/TokenSelect/TokenButton.tsx new file mode 100644 index 0000000000..745c821a08 --- /dev/null +++ b/src/lib/components/TokenSelect/TokenButton.tsx @@ -0,0 +1,54 @@ +import { Trans } from '@lingui/macro' +import { ChevronDown } from 'lib/icons' +import styled, { ThemedText } from 'lib/theme' +import { Token } from 'lib/types' + +import Button from '../Button' +import Row from '../Row' +import TokenImg from '../TokenImg' + +const StyledTokenButton = styled(Button)<{ empty?: boolean }>` + border-radius: ${({ theme }) => theme.borderRadius}em; + padding: 0.25em; + padding-left: ${({ empty }) => (empty ? 0.75 : 0.25)}em; + + :disabled { + // prevents border from expanding the button's box size + padding: calc(0.25em - 1px); + padding-left: calc(${({ empty }) => (empty ? 0.75 : 0.25)}em - 1px); + } +` + +const TokenButtonRow = styled(Row)<{ collapsed: boolean }>` + height: 1.2em; + max-width: ${({ collapsed }) => (collapsed ? '1.2' : '8.2')}em; + overflow-x: hidden; + transition: max-width 0.25s linear; +` + +interface TokenButtonProps { + value?: Token + collapsed: boolean + disabled?: boolean + onClick: () => void +} + +export default function TokenButton({ value, collapsed, disabled, onClick }: TokenButtonProps) { + return ( + + + + {value ? ( + <> + + {value.symbol} + + ) : ( + Select a token + )} + + + + + ) +} diff --git a/src/lib/components/TokenSelect/TokenOptions.tsx b/src/lib/components/TokenSelect/TokenOptions.tsx new file mode 100644 index 0000000000..beb74bc29d --- /dev/null +++ b/src/lib/components/TokenSelect/TokenOptions.tsx @@ -0,0 +1,232 @@ +import useNativeEvent from 'lib/hooks/useNativeEvent' +import useScrollbar from 'lib/hooks/useScrollbar' +import styled, { ThemedText } from 'lib/theme' +import { Token } from 'lib/types' +import { + ComponentClass, + CSSProperties, + forwardRef, + KeyboardEvent, + memo, + SyntheticEvent, + useCallback, + useEffect, + useImperativeHandle, + useRef, + useState, +} from 'react' +import AutoSizer from 'react-virtualized-auto-sizer' +import { areEqual, FixedSizeList, FixedSizeListProps } from 'react-window' +import invariant from 'tiny-invariant' + +import { BaseButton } from '../Button' +import Column from '../Column' +import Row from '../Row' +import TokenImg from '../TokenImg' + +const TokenButton = styled(BaseButton)` + border-radius: 0; + outline: none; + padding: 0.5em 0.75em; +` + +const ITEM_SIZE = 56 +type ItemData = Token[] +interface FixedSizeTokenList extends FixedSizeList, ComponentClass> {} +const TokenList = styled(FixedSizeList as unknown as FixedSizeTokenList)<{ + hover: number + scrollbar?: ReturnType +}>` + ${TokenButton}[data-index='${({ hover }) => hover}'] { + background-color: ${({ theme }) => theme.onHover(theme.module)}; + } + + ${({ scrollbar }) => scrollbar} + overscroll-behavior: none; // prevent Firefox's bouncy overscroll effect (because it does not trigger the scroll handler) +` +const OnHover = styled.div<{ hover: number }>` + background-color: ${({ theme }) => theme.onHover(theme.module)}; + height: ${ITEM_SIZE}px; + left: 0; + position: absolute; + top: ${({ hover }) => hover * ITEM_SIZE}px; + width: 100%; +` + +interface TokenOptionProps { + index: number + value: Token + style: CSSProperties +} + +interface BubbledEvent extends SyntheticEvent { + index?: number + token?: Token + ref?: HTMLButtonElement +} + +function TokenOption({ index, value, style }: TokenOptionProps) { + const ref = useRef(null) + // Annotate the event to be handled later instead of passing in handlers to avoid rerenders. + // This prevents token logos from reloading and flashing on the screen. + const onEvent = (e: BubbledEvent) => { + e.index = index + e.token = value + e.ref = ref.current ?? undefined + } + return ( + + + + + + + {value.symbol} + {value.name} + + + 1.234 + + + + ) +} + +const itemKey = (index: number, tokens: ItemData) => tokens[index]?.address +const ItemRow = memo(function ItemRow({ + data: tokens, + index, + style, +}: { + data: ItemData + index: number + style: CSSProperties +}) { + return +}, +areEqual) + +interface TokenOptionsHandle { + onKeyDown: (e: KeyboardEvent) => void + blur: () => void +} + +interface TokenOptionsProps { + tokens: Token[] + onSelect: (token: Token) => void +} + +const TokenOptions = forwardRef(function TokenOptions( + { tokens, onSelect }: TokenOptionsProps, + ref +) { + const [focused, setFocused] = useState(false) + const [hover, setHover] = useState(-1) + useEffect(() => setHover(-1), [tokens]) + + const list = useRef(null) + const onKeyDown = useCallback( + (e: KeyboardEvent) => { + if (e.key === 'ArrowDown' || e.key === 'ArrowUp') { + if (e.key === 'ArrowDown' && hover < tokens.length - 1) { + scrollTo(hover + 1) + } else if (e.key === 'ArrowUp' && hover > 0) { + scrollTo(hover - 1) + } else if (e.key === 'ArrowUp' && hover === -1) { + scrollTo(tokens.length - 1) + } + e.preventDefault() + } + if (e.key === 'Enter' && hover) { + onSelect(tokens[hover]) + } + + function scrollTo(index: number) { + list.current?.scrollToItem(index) + setHover(index) + } + }, + [hover, onSelect, tokens] + ) + const blur = useCallback(() => setHover(-1), []) + useImperativeHandle(ref, () => ({ onKeyDown, blur }), [blur, onKeyDown]) + + const onClick = useCallback(({ token }: BubbledEvent) => token && onSelect(token), [onSelect]) + const onFocus = useCallback(({ index }: BubbledEvent) => { + if (index !== undefined) { + setHover(index) + setFocused(true) + } + }, []) + const onBlur = useCallback(() => setFocused(false), []) + const onMouseMove = useCallback( + ({ index, ref }: BubbledEvent) => { + if (index !== undefined) { + setHover(index) + if (focused) { + ref?.focus() + } + } + }, + [focused] + ) + + const [element, setElement] = useState(null) + const scrollbar = useScrollbar(element, { padded: true }) + + const onHover = useRef(null) + // use native onscroll handler to capture Safari's bouncy overscroll effect + useNativeEvent(element, 'scroll', (e) => { + invariant(element) + if (onHover.current) { + // must be set synchronously to avoid jank (avoiding useState) + onHover.current.style.marginTop = `${-element.scrollTop}px` + } + }) + + return ( + + {/* OnHover is a workaround to Safari's incorrect (overflow: overlay) implementation */} + + + {({ height }) => ( + + {ItemRow} + + )} + + + ) +}) + +export default TokenOptions diff --git a/src/lib/components/TokenSelect/index.tsx b/src/lib/components/TokenSelect/index.tsx new file mode 100644 index 0000000000..46a60141ba --- /dev/null +++ b/src/lib/components/TokenSelect/index.tsx @@ -0,0 +1,92 @@ +import { t, Trans } from '@lingui/macro' +import { DAI, ETH, UNI, USDC } from 'lib/mocks' +import styled, { ThemedText } from 'lib/theme' +import { Token } from 'lib/types' +import { ElementRef, useCallback, useEffect, useRef, useState } from 'react' + +import Column from '../Column' +import Dialog, { Header } from '../Dialog' +import { inputCss, StringInput } from '../Input' +import Row from '../Row' +import Rule from '../Rule' +import TokenBase from './TokenBase' +import TokenButton from './TokenButton' +import TokenOptions from './TokenOptions' + +// TODO: integrate with web3-react context +const mockTokens = [DAI, ETH, UNI, USDC] + +const SearchInput = styled(StringInput)` + ${inputCss} +` + +export function TokenSelectDialog({ onSelect }: { onSelect: (token: Token) => void }) { + const baseTokens = [DAI, ETH, UNI, USDC] + const tokens = mockTokens + + const [search, setSearch] = useState('') + + const input = useRef(null) + useEffect(() => input.current?.focus(), [input]) + + const [options, setOptions] = useState | null>(null) + + return ( + <> +
Select a token} /> + + + + + + + {Boolean(baseTokens.length) && ( + <> + + {baseTokens.map((token) => ( + + ))} + + + + )} + + + + ) +} + +interface TokenSelectProps { + value?: Token + collapsed: boolean + disabled?: boolean + onSelect: (value: Token) => void +} + +export default function TokenSelect({ value, collapsed, disabled, onSelect }: TokenSelectProps) { + const [open, setOpen] = useState(false) + const selectAndClose = useCallback( + (value: Token) => { + onSelect(value) + setOpen(false) + }, + [onSelect, setOpen] + ) + return ( + <> + setOpen(true)} /> + {open && ( + setOpen(false)}> + + + )} + + ) +} diff --git a/src/lib/components/Tooltip.tsx b/src/lib/components/Tooltip.tsx new file mode 100644 index 0000000000..9e4472414d --- /dev/null +++ b/src/lib/components/Tooltip.tsx @@ -0,0 +1,40 @@ +import { Placement } from '@popperjs/core' +import { HelpCircle, Icon } from 'lib/icons' +import styled from 'lib/theme' +import { ReactNode, useState } from 'react' + +import { IconButton } from './Button' +import Popover from './Popover' + +const IconTooltip = styled(IconButton)` + :hover { + cursor: help; + } +` + +interface TooltipInterface { + icon?: Icon + children: ReactNode + placement: Placement + contained?: true +} + +export default function Tooltip({ + icon: Icon = HelpCircle, + children, + placement = 'auto', + contained, +}: TooltipInterface) { + const [show, setShow] = useState(false) + return ( + + setShow(true)} + onMouseLeave={() => setShow(false)} + onFocus={() => setShow(true)} + onBlur={() => setShow(false)} + icon={Icon} + /> + + ) +} diff --git a/src/lib/components/Wallet.tsx b/src/lib/components/Wallet.tsx new file mode 100644 index 0000000000..ea992ce1bd --- /dev/null +++ b/src/lib/components/Wallet.tsx @@ -0,0 +1,15 @@ +import { CreditCard } from 'lib/icons' +import { ThemedText } from 'lib/theme' + +import Row from './Row' + +export default function Wallet({ disabled }: { disabled?: boolean }) { + return disabled ? ( + + + + Connect wallet to swap + + + ) : null +} diff --git a/src/lib/components/Web3Provider.tsx b/src/lib/components/Web3Provider.tsx new file mode 100644 index 0000000000..f9d05e6ec3 --- /dev/null +++ b/src/lib/components/Web3Provider.tsx @@ -0,0 +1,41 @@ +import { SetStateAction } from 'jotai' +import { RESET, useUpdateAtom } from 'jotai/utils' +import { injectedAtom, networkAtom } from 'lib/state' +import { ReactNode, useEffect, useMemo } from 'react' +import { initializeConnector, Web3ReactHooks } from 'widgets-web3-react/core' +import { EIP1193 } from 'widgets-web3-react/eip1193' +import { Network } from 'widgets-web3-react/network' +import { Actions, Connector, Provider as EthProvider } from 'widgets-web3-react/types' + +interface Web3ProviderProps { + jsonRpcEndpoint?: string + provider?: EthProvider + children: ReactNode +} + +function useConnector( + Connector: T, + initializer: I | undefined, + setContext: (update: typeof RESET | SetStateAction<[Connector, Web3ReactHooks]>) => void +) { + return useEffect(() => { + if (initializer) { + const [connector, hooks] = initializeConnector((actions) => new Connector(actions, initializer)) + setContext([connector, hooks]) + } else { + setContext(RESET) + } + }, [Connector, initializer, setContext]) +} + +export default function Web3Provider({ jsonRpcEndpoint, provider, children }: Web3ProviderProps) { + const setNetwork = useUpdateAtom(networkAtom) + // TODO(zzmp): Network should take a string, not a urlMap. + const urlMap = useMemo(() => jsonRpcEndpoint && { 1: jsonRpcEndpoint }, [jsonRpcEndpoint]) + useConnector(Network, urlMap, setNetwork) + + const setInjected = useUpdateAtom(injectedAtom) + useConnector(EIP1193, provider, setInjected) + + return <>{children} +} diff --git a/src/lib/components/Widget.tsx b/src/lib/components/Widget.tsx new file mode 100644 index 0000000000..140441919e --- /dev/null +++ b/src/lib/components/Widget.tsx @@ -0,0 +1,111 @@ +import { DEFAULT_LOCALE, SupportedLocale } from 'constants/locales' +import { Provider as AtomProvider } from 'jotai' +import { UNMOUNTING } from 'lib/hooks/useUnmount' +import { Provider as I18nProvider } from 'lib/i18n' +import styled, { keyframes, Theme, ThemeProvider } from 'lib/theme' +import { ReactNode, StrictMode, useRef } from 'react' +import { Provider as EthProvider } from 'widgets-web3-react/types' + +import { Provider as DialogProvider } from './Dialog' +import ErrorBoundary, { ErrorHandler } from './Error/ErrorBoundary' +import Web3Provider from './Web3Provider' + +const slideDown = keyframes` + to { + top: calc(100% - 0.25em); + } +` +const slideUp = keyframes` + from { + top: calc(100% - 0.25em); + } +` + +const WidgetWrapper = styled.div<{ width?: number | string }>` + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + background-color: ${({ theme }) => theme.container}; + border-radius: ${({ theme }) => theme.borderRadius}em; + color: ${({ theme }) => theme.primary}; + display: flex; + flex-direction: column; + font-feature-settings: 'ss01' on, 'ss02' on, 'cv01' on, 'cv03' on; + font-size: 16px; + font-smooth: always; + font-variant: none; + height: 348px; + min-width: 300px; + overflow-y: hidden; + padding: 0.25em; + position: relative; + width: ${({ width }) => width && (isNaN(Number(width)) ? width : `${width}px`)}; + + @supports (overflow: clip) { + overflow-y: clip; + } + + * { + box-sizing: border-box; + font-family: ${({ theme }) => theme.fontFamily}; + user-select: none; + + @supports (font-variation-settings: normal) { + font-family: ${({ theme }) => theme.fontFamilyVariable}; + } + } + + .dialog { + animation: ${slideUp} 0.25s ease-in-out; + } + + .dialog.${UNMOUNTING} { + animation: ${slideDown} 0.25s ease-in-out; + } +` + +export interface WidgetProps { + children: ReactNode + theme?: Theme + locale?: SupportedLocale + provider?: EthProvider + jsonRpcEndpoint?: string + width?: string | number + dialog?: HTMLElement | null + className?: string + onError?: ErrorHandler +} + +export default function Widget({ + children, + theme, + locale = DEFAULT_LOCALE, + provider, + jsonRpcEndpoint, + width = 360, + dialog, + className, + onError, +}: WidgetProps) { + const wrapper = useRef(null) + + return ( + + + + + + + + + {children} + + + + + + + + + ) +} diff --git a/src/lib/cosmos.decorator.tsx b/src/lib/cosmos.decorator.tsx new file mode 100644 index 0000000000..7da44ce9e3 --- /dev/null +++ b/src/lib/cosmos.decorator.tsx @@ -0,0 +1,16 @@ +import { JSXElementConstructor, ReactElement } from 'react' + +import Row from './components/Row' +import Widget from './cosmos/components/Widget' + +export default function WidgetDecorator({ + children, +}: { + children: ReactElement> +}) { + return ( + + {children} + + ) +} diff --git a/src/lib/cosmos/components/Widget.tsx b/src/lib/cosmos/components/Widget.tsx new file mode 100644 index 0000000000..54c3a38fdf --- /dev/null +++ b/src/lib/cosmos/components/Widget.tsx @@ -0,0 +1,55 @@ +import { SupportedChainId } from 'constants/chains' +import { DEFAULT_LOCALE, SUPPORTED_LOCALES } from 'constants/locales' +import Widget from 'lib/components/Widget' +import { darkTheme, defaultTheme, lightTheme } from 'lib/theme' +import { ReactNode, useEffect, useMemo } from 'react' +import { useSelect, useValue } from 'react-cosmos/fixture' + +import { metaMask } from '../connectors/metaMask' +import { URLS } from '../connectors/network' + +export default function Wrapper({ children }: { children: ReactNode }) { + const [width] = useValue('width', { defaultValue: 360 }) + const [locale] = useSelect('locale', { defaultValue: DEFAULT_LOCALE, options: ['pseudo', ...SUPPORTED_LOCALES] }) + const [darkMode] = useValue('dark mode', { defaultValue: false }) + const [theme, setTheme] = useValue('theme', { defaultValue: { ...defaultTheme, ...lightTheme } }) + useEffect(() => { + setTheme({ ...defaultTheme, ...(darkMode ? darkTheme : lightTheme) }) + // cosmos does not maintain referential equality for setters + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [darkMode]) + + const NO_JSON_RPC = 'None' + const [jsonRpcEndpoint] = useSelect('JSON-RPC', { + defaultValue: URLS[SupportedChainId.MAINNET][0] || NO_JSON_RPC, + options: [NO_JSON_RPC, ...Object.values(URLS).flat()], + }) + + const NO_PROVIDER = 'None' + const META_MASK = 'MetaMask' + const [providerType] = useSelect('Provider', { + defaultValue: NO_PROVIDER, + options: [NO_PROVIDER, META_MASK], + }) + const provider = useMemo(() => { + switch (providerType) { + case META_MASK: + metaMask.activate() + return metaMask.provider + default: + return undefined + } + }, [providerType]) + + return ( + + {children} + + ) +} diff --git a/src/lib/cosmos/connectors/metaMask.ts b/src/lib/cosmos/connectors/metaMask.ts new file mode 100644 index 0000000000..4b32a3ea7c --- /dev/null +++ b/src/lib/cosmos/connectors/metaMask.ts @@ -0,0 +1,4 @@ +import { initializeConnector } from 'widgets-web3-react/core' +import { MetaMask } from 'widgets-web3-react/metamask' + +export const [metaMask, hooks] = initializeConnector((actions) => new MetaMask(actions)) diff --git a/src/lib/cosmos/connectors/network.ts b/src/lib/cosmos/connectors/network.ts new file mode 100644 index 0000000000..9ceb44f691 --- /dev/null +++ b/src/lib/cosmos/connectors/network.ts @@ -0,0 +1,14 @@ +import { SupportedChainId } from 'constants/chains' + +const ALCHEMY_KEY = '-mzwnEVG3Ssm75WVbmsEpYiekfTF3W1z' +const alchemyUrl = (network: string) => `https://${network}.alchemyapi.io/v2/${ALCHEMY_KEY}` + +export const URLS = { + [SupportedChainId.MAINNET]: [alchemyUrl('eth-mainnet')], + [SupportedChainId.ROPSTEN]: [alchemyUrl('eth-ropsten')], + [SupportedChainId.RINKEBY]: [alchemyUrl('eth-rinkeby')], + [SupportedChainId.GOERLI]: [alchemyUrl('eth-goerli')], + [SupportedChainId.KOVAN]: [alchemyUrl('eth-kovan')], + [SupportedChainId.OPTIMISM]: [alchemyUrl('optimism-mainnet')], + [SupportedChainId.ARBITRUM_ONE]: [alchemyUrl('arbitrum-mainnet')], +} diff --git a/src/lib/ethereum.d.ts b/src/lib/ethereum.d.ts new file mode 100644 index 0000000000..a14b16c662 --- /dev/null +++ b/src/lib/ethereum.d.ts @@ -0,0 +1,11 @@ +export interface EthereumProvider { + on?: (...args: any[]) => void + removeListener?: (...args: any[]) => void + autoRefreshOnNetworkChange?: boolean +} + +declare global { + interface Window { + ethereum?: EthereumProvider + } +} diff --git a/src/lib/hooks/multicall.ts b/src/lib/hooks/multicall.ts new file mode 100644 index 0000000000..0a899ea9f9 --- /dev/null +++ b/src/lib/hooks/multicall.ts @@ -0,0 +1,8 @@ +import { multicall } from 'lib/state' + +export const { + useMultipleContractSingleData, + useSingleContractMultipleData, + useSingleContractWithCallData, + useSingleCallResult, +} = multicall.hooks diff --git a/src/lib/hooks/useActiveWeb3React.ts b/src/lib/hooks/useActiveWeb3React.ts new file mode 100644 index 0000000000..d288ca954f --- /dev/null +++ b/src/lib/hooks/useActiveWeb3React.ts @@ -0,0 +1,19 @@ +import { useAtomValue } from 'jotai/utils' +import { injectedAtom, networkAtom, Web3ReactState } from 'lib/state' +import { Web3ReactHooks } from 'widgets-web3-react/core' + +export function useActiveWeb3ReactState(): Web3ReactState { + const injected = useAtomValue(injectedAtom) + const network = useAtomValue(networkAtom) + return injected[1].useIsActive() ? injected : network +} + +export function useActiveWeb3ReactHooks(): Web3ReactHooks { + const [, hooks] = useActiveWeb3ReactState() + return hooks +} + +export default function useActiveWeb3React() { + const { useProvider, useWeb3React } = useActiveWeb3ReactHooks() + return useWeb3React(useProvider()) +} diff --git a/src/lib/hooks/useColor.ts b/src/lib/hooks/useColor.ts new file mode 100644 index 0000000000..08436434b6 --- /dev/null +++ b/src/lib/hooks/useColor.ts @@ -0,0 +1,80 @@ +import { useTheme } from 'lib/theme' +import { Token } from 'lib/types' +import uriToHttp from 'lib/utils/uriToHttp' +import Vibrant from 'node-vibrant/lib/bundle' +import { useLayoutEffect, useState } from 'react' + +const colors = new Map() + +function UriForEthToken(address: string) { + return `https://raw.githubusercontent.com/uniswap/assets/master/blockchains/ethereum/assets/${address}/logo.png?color` +} + +/** + * Extracts the prominent color from a token. + * NB: If cached, this function returns synchronously; using a callback allows sync or async returns. + */ +async function getColorFromToken(token: Token, cb: (color: string | undefined) => void = () => void 0) { + const { address, chainId, logoURI } = token + + // Color extraction must use a CORS-compatible resource, but the resource is already cached. + // Add a dummy parameter to force a different browser resource cache entry. + // Without this, color extraction prevents resource caching. + const uri = uriToHttp(logoURI)[0] + '?color' + + let color = colors.get(uri) + if (color) { + return cb(color) + } + + color = await getColorFromUriPath(uri) + if (!color && chainId === 1) { + const fallbackUri = UriForEthToken(address) + color = await getColorFromUriPath(fallbackUri) + } + if (color) { + colors.set(uri, color) + } + + return cb(color) +} + +async function getColorFromUriPath(uri: string): Promise { + try { + const palette = await Vibrant.from(uri).getPalette() + return palette.Vibrant?.hex + } catch {} + return +} + +export function usePrefetchColor(token?: Token) { + const theme = useTheme() + + if (theme.tokenColorExtraction && token) { + getColorFromToken(token) + } +} + +export default function useColor(token?: Token) { + const [color, setColor] = useState(undefined) + const theme = useTheme() + + useLayoutEffect(() => { + let stale = false + + if (theme.tokenColorExtraction && token) { + getColorFromToken(token, (color) => { + if (!stale && color) { + setColor(color) + } + }) + } + + return () => { + stale = true + setColor(undefined) + } + }, [token, theme]) + + return color +} diff --git a/src/hooks/useInterval.ts b/src/lib/hooks/useInterval.ts similarity index 62% rename from src/hooks/useInterval.ts rename to src/lib/hooks/useInterval.ts index bc12bbced1..926e7c2545 100644 --- a/src/hooks/useInterval.ts +++ b/src/lib/hooks/useInterval.ts @@ -1,5 +1,11 @@ import { useEffect, useRef } from 'react' +/** + * Invokes callback repeatedly over an interval defined by the delay + * @param callback + * @param delay if null, the callback will not be invoked + * @param leading if true, the callback will be invoked immediately (on the leading edge); otherwise, it will be invoked after delay + */ export default function useInterval(callback: () => void, delay: null | number, leading = true) { const savedCallback = useRef<() => void>() @@ -11,7 +17,7 @@ export default function useInterval(callback: () => void, delay: null | number, // Set up the interval. useEffect(() => { function tick() { - const current = savedCallback.current + const { current } = savedCallback current && current() } @@ -20,6 +26,6 @@ export default function useInterval(callback: () => void, delay: null | number, const id = setInterval(tick, delay) return () => clearInterval(id) } - return undefined + return }, [delay, leading]) } diff --git a/src/lib/hooks/useNativeEvent.ts b/src/lib/hooks/useNativeEvent.ts new file mode 100644 index 0000000000..4c23a2c82a --- /dev/null +++ b/src/lib/hooks/useNativeEvent.ts @@ -0,0 +1,11 @@ +import { useEffect } from 'react' + +export default function useNativeEvent( + element: HTMLElement | null, + ...eventListener: Parameters +) { + useEffect(() => { + element?.addEventListener(...eventListener) + return () => element?.removeEventListener(...eventListener) + }, [element, eventListener]) +} diff --git a/src/lib/hooks/useScrollbar.ts b/src/lib/hooks/useScrollbar.ts new file mode 100644 index 0000000000..b23b05f569 --- /dev/null +++ b/src/lib/hooks/useScrollbar.ts @@ -0,0 +1,64 @@ +import { css } from 'lib/theme' +import { useEffect, useMemo, useState } from 'react' + +import useNativeEvent from './useNativeEvent' + +const overflowCss = css` + overflow-y: scroll; +` + +/** Customizes the scrollbar for vertical overflow. */ +const scrollbarCss = (padded: boolean) => css` + overflow-y: scroll; + + ::-webkit-scrollbar { + width: 1.25em; + } + + ::-webkit-scrollbar-thumb { + background: radial-gradient( + closest-corner at 0.25em 0.25em, + ${({ theme }) => theme.interactive} 0.25em, + transparent 0.25em + ), + linear-gradient( + to bottom, + #ffffff00 0.25em, + ${({ theme }) => theme.interactive} 0.25em, + ${({ theme }) => theme.interactive} calc(100% - 0.25em), + #ffffff00 calc(100% - 0.25em) + ), + radial-gradient( + closest-corner at 0.25em calc(100% - 0.25em), + ${({ theme }) => theme.interactive} 0.25em, + #ffffff00 0.25em + ); + background-clip: padding-box; + border: none; + ${padded ? 'border-right' : 'border-left'}: 0.75em solid transparent; + } + + @supports not selector(::-webkit-scrollbar-thumb) { + scrollbar-color: ${({ theme }) => theme.interactive} transparent; + } +` + +interface ScrollbarOptions { + padded?: boolean +} + +export default function useScrollbar(element: HTMLElement | null, { padded = false }: ScrollbarOptions = {}) { + const [overflow, setOverflow] = useState(true) + useEffect(() => { + setOverflow(hasOverflow(element)) + }, [element]) + useNativeEvent(element, 'transitionend', () => setOverflow(hasOverflow(element))) + return useMemo(() => (overflow ? scrollbarCss(padded) : overflowCss), [overflow, padded]) + + function hasOverflow(element: HTMLElement | null) { + if (!element) { + return true + } + return element.scrollHeight > element.clientHeight + } +} diff --git a/src/lib/hooks/useUnmount.ts b/src/lib/hooks/useUnmount.ts new file mode 100644 index 0000000000..920223d775 --- /dev/null +++ b/src/lib/hooks/useUnmount.ts @@ -0,0 +1,33 @@ +import { RefObject, useEffect } from 'react' + +export const UNMOUNTING = 'unmounting' + +/** + * Delays a node's unmounting so that an animation may be applied. + * An animation *must* be applied, or the node will not unmount. + */ +export default function useUnmount(node: RefObject) { + useEffect(() => { + const current = node.current + const parent = current?.parentElement + const removeChild = parent?.removeChild + if (parent && removeChild) { + parent.removeChild = function (child: T) { + if ((child as Node) === current) { + current.classList.add(UNMOUNTING) + current.onanimationend = () => { + removeChild.call(parent, child) + } + return child + } else { + return removeChild.call(parent, child) as T + } + } + } + return () => { + if (parent && removeChild) { + parent.removeChild = removeChild + } + } + }, [node]) +} diff --git a/src/lib/i18n.tsx b/src/lib/i18n.tsx new file mode 100644 index 0000000000..c3e2b2f113 --- /dev/null +++ b/src/lib/i18n.tsx @@ -0,0 +1,109 @@ +import { i18n } from '@lingui/core' +import { I18nProvider } from '@lingui/react' +import { DEFAULT_CATALOG, DEFAULT_LOCALE, SupportedLocale } from 'constants/locales' +import { + af, + ar, + ca, + cs, + da, + de, + el, + en, + es, + fi, + fr, + he, + hu, + id, + it, + ja, + ko, + nl, + no, + pl, + pt, + ro, + ru, + sr, + sv, + sw, + tr, + uk, + vi, + zh, +} from 'make-plural/plurals' +import { PluralCategory } from 'make-plural/plurals' +import { ReactNode, useEffect } from 'react' + +type LocalePlural = { + [key in SupportedLocale]: (n: number | string, ord?: boolean) => PluralCategory +} + +const plurals: LocalePlural = { + 'af-ZA': af, + 'ar-SA': ar, + 'ca-ES': ca, + 'cs-CZ': cs, + 'da-DK': da, + 'de-DE': de, + 'el-GR': el, + 'en-US': en, + 'es-ES': es, + 'fi-FI': fi, + 'fr-FR': fr, + 'he-IL': he, + 'hu-HU': hu, + 'id-ID': id, + 'it-IT': it, + 'ja-JP': ja, + 'ko-KR': ko, + 'nl-NL': nl, + 'no-NO': no, + 'pl-PL': pl, + 'pt-BR': pt, + 'pt-PT': pt, + 'ro-RO': ro, + 'ru-RU': ru, + 'sr-SP': sr, + 'sv-SE': sv, + 'sw-TZ': sw, + 'tr-TR': tr, + 'uk-UA': uk, + 'vi-VN': vi, + 'zh-CN': zh, + 'zh-TW': zh, + pseudo: en, +} + +export async function dynamicActivate(locale: SupportedLocale) { + i18n.loadLocaleData(locale, { plurals: () => plurals[locale] }) + // There are no default messages in production; instead, bundle the default to save a network request: + // see https://github.com/lingui/js-lingui/issues/388#issuecomment-497779030 + const catalog = locale === DEFAULT_LOCALE ? DEFAULT_CATALOG : await import(`locales/${locale}`) + i18n.load(locale, catalog.messages) + i18n.activate(locale) +} + +interface ProviderProps { + locale: SupportedLocale + forceRenderAfterLocaleChange?: boolean + onActivate?: (locale: SupportedLocale) => void + children: ReactNode +} + +export function Provider({ locale, forceRenderAfterLocaleChange = true, onActivate, children }: ProviderProps) { + useEffect(() => { + dynamicActivate(locale) + .then(() => onActivate?.(locale)) + .catch((error) => { + console.error('Failed to activate locale', locale, error) + }) + }, [locale, onActivate]) + + return ( + + {children} + + ) +} diff --git a/src/lib/icons/index.tsx b/src/lib/icons/index.tsx new file mode 100644 index 0000000000..9ee9370e4d --- /dev/null +++ b/src/lib/icons/index.tsx @@ -0,0 +1,123 @@ +/* eslint-disable no-restricted-imports */ +import CheckIcon from 'lib/assets/svg/Check' +import ExpandoIcon from 'lib/assets/svg/Expando' +import LogoIcon from 'lib/assets/svg/Logo' +import SpinnerIcon from 'lib/assets/svg/Spinner' +import styled, { Color, css, keyframes } from 'lib/theme' +import { FunctionComponent, SVGProps } from 'react' +import { Icon as FeatherIcon } from 'react-feather' +import { + AlertTriangle as AlertTriangleIcon, + ArrowDown as ArrowDownIcon, + ArrowRight as ArrowRightIcon, + ArrowUp as ArrowUpIcon, + CheckCircle as CheckCircleIcon, + ChevronDown as ChevronDownIcon, + Clock as ClockIcon, + CreditCard as CreditCardIcon, + HelpCircle as HelpCircleIcon, + Info as InfoIcon, + Settings as SettingsIcon, + Trash2 as Trash2Icon, + X as XIcon, +} from 'react-feather' + +type SVGIcon = FunctionComponent> + +function icon(Icon: FeatherIcon | SVGIcon) { + return styled(Icon)<{ color?: Color }>` + clip-path: stroke-box; + height: 1em; + stroke: ${({ color = 'currentColor', theme }) => theme[color]}; + width: 1em; + ` +} + +export type Icon = ReturnType + +export const largeIconCss = css<{ iconSize: number }>` + display: flex; + + svg { + align-self: center; + height: ${({ iconSize }) => iconSize}em; + width: ${({ iconSize }) => iconSize}em; + } +` + +const LargeWrapper = styled.div<{ iconSize: number }>` + height: 1em; + ${largeIconCss} +` + +interface LargeIconProps { + icon: Icon + color?: Color + size?: number + className?: string +} + +export function LargeIcon({ icon: Icon, color, size = 1.2, className }: LargeIconProps) { + return ( + + + + ) +} + +export const AlertTriangle = icon(AlertTriangleIcon) +export const ArrowDown = icon(ArrowDownIcon) +export const ArrowRight = icon(ArrowRightIcon) +export const ArrowUp = icon(ArrowUpIcon) +export const CheckCircle = icon(CheckCircleIcon) +export const ChevronDown = icon(ChevronDownIcon) +export const Clock = icon(ClockIcon) +export const CreditCard = icon(CreditCardIcon) +export const HelpCircle = icon(HelpCircleIcon) +export const Info = icon(InfoIcon) +export const Settings = icon(SettingsIcon) +export const Trash2 = icon(Trash2Icon) +export const X = icon(XIcon) + +export const Check = styled(icon(CheckIcon))` + circle { + fill: ${({ theme }) => theme.active}; + stroke: none; + } +` + +export const Expando = styled(icon(ExpandoIcon))<{ open: boolean }>` + path { + transition: transform 0.25s ease-in-out; + will-change: transform; + + &:first-child { + transform: ${({ open }) => open && 'translateX(-25%)'}; + } + + &:last-child { + transform: ${({ open }) => open && 'translateX(25%)'}; + } + } +` + +export const Logo = styled(icon(LogoIcon))` + fill: ${({ theme }) => theme.secondary}; + stroke: none; +` + +const rotate = keyframes` + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +` + +export const Spinner = styled(icon(SpinnerIcon))<{ color?: Color }>` + animation: 2s ${rotate} linear infinite; + stroke: ${({ color = 'active', theme }) => theme[color]}; + stroke-linecap: round; + stroke-width: 2; +` diff --git a/src/lib/index.test.tsx b/src/lib/index.test.tsx deleted file mode 100644 index 56cd93c446..0000000000 --- a/src/lib/index.test.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import './' - -describe('lib', () => { - it('exists', () => { - expect(true).toBeTruthy() - }) -}) diff --git a/src/lib/index.tsx b/src/lib/index.tsx index 336ce12bb9..c39bf406f8 100644 --- a/src/lib/index.tsx +++ b/src/lib/index.tsx @@ -1 +1,12 @@ -export {} +import Swap from './components/Swap' +import Widget, { WidgetProps } from './components/Widget' + +type SwapWidgetProps = Omit + +export function SwapWidget(props: SwapWidgetProps) { + return ( + + + + ) +} diff --git a/src/lib/mocks.ts b/src/lib/mocks.ts new file mode 100644 index 0000000000..845197d6a1 --- /dev/null +++ b/src/lib/mocks.ts @@ -0,0 +1,33 @@ +export const USDC = { + name: 'USDCoin', + symbol: 'USDC', + chainId: 1, + decimals: 18, + address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', + logoURI: + 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png', +} +export const DAI = { + name: 'DaiStablecoin', + symbol: 'DAI', + chainId: 1, + decimals: 18, + address: '0x6B175474E89094C44Da98b954EedeAC495271d0F', + logoURI: 'https://gemini.com/images/currencies/icons/default/dai.svg', +} +export const ETH = { + name: 'Ether', + symbol: 'ETH', + chainId: 1, + decimals: 18, + address: 'ETHER', + logoURI: 'https://raw.githubusercontent.com/Uniswap/interface/main/src/assets/images/ethereum-logo.png', +} +export const UNI = { + name: 'Uniswap', + symbol: 'UNI', + chainId: 1, + decimals: 18, + address: '0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984', + logoURI: 'https://gemini.com/images/currencies/icons/default/uni.svg', +} diff --git a/src/lib/state/index.ts b/src/lib/state/index.ts new file mode 100644 index 0000000000..5e6995b23c --- /dev/null +++ b/src/lib/state/index.ts @@ -0,0 +1,26 @@ +import { createMulticall } from '@uniswap/redux-multicall' +import { atomWithStore } from 'jotai/redux' +import { atomWithDefault } from 'jotai/utils' +import { createStore } from 'redux' +import { Web3ReactHooks } from 'widgets-web3-react/core' +import { initializeConnector } from 'widgets-web3-react/core' +import { Connector } from 'widgets-web3-react/types' + +// TODO(zzmp): EmptyConnector singleton should come from 'widgets-web3-react/empty' +const EMPTY_CONNECTOR = initializeConnector( + (actions) => + new (class EmptyConnector extends Connector { + activate() { + void 0 + } + })(actions) +) + +export type Web3ReactState = [Connector, Web3ReactHooks] + +export const networkAtom = atomWithDefault(() => EMPTY_CONNECTOR) +export const injectedAtom = atomWithDefault(() => EMPTY_CONNECTOR) + +export const multicall = createMulticall() +const multicallStore = createStore(multicall.reducer) +export const multicallStoreAtom = atomWithStore(multicallStore) diff --git a/src/lib/theme/dynamic.tsx b/src/lib/theme/dynamic.tsx new file mode 100644 index 0000000000..fc832f55b4 --- /dev/null +++ b/src/lib/theme/dynamic.tsx @@ -0,0 +1,79 @@ +import { darken, lighten, opacify, transparentize } from 'polished' +import { readableColor } from 'polished' +import { ReactNode, useMemo } from 'react' +import { hex } from 'wcag-contrast' + +import { ThemedProvider, useTheme } from './styled' +import { Colors, ComputedTheme } from './theme' + +type DynamicColors = Pick + +const black = '#000000' +const white = '#FFFFFF' + +const light: DynamicColors = { + // surface + interactive: transparentize(1 - 0.54, black), + outline: transparentize(1 - 0.24, black), + + // text + primary: black, + secondary: transparentize(1 - 0.64, black), + onInteractive: white, +} + +const dark: DynamicColors = { + // surface + interactive: transparentize(1 - 0.48, white), + outline: transparentize(1 - 0.12, white), + + // text + primary: white, + secondary: transparentize(1 - 0.6, white), + onInteractive: black, +} + +export function getDynamicTheme(theme: ComputedTheme, color: string): ComputedTheme { + const colors = { light, dark }[readableColor(color, 'light', 'dark', false) as 'light' | 'dark'] + return { + ...theme, + ...colors, + module: color, + onHover: (color: string) => (color === colors.primary ? transparentize(0.4, colors.primary) : opacify(0.25, color)), + } +} + +function getAccessibleColor(theme: ComputedTheme, color: string) { + const dynamic = getDynamicTheme(theme, color) + let { primary } = dynamic + let AAscore = hex(color, primary) + const contrastify = hex(color, '#000') > hex(color, '#fff') ? darken : lighten + while (AAscore < 3) { + color = contrastify(0.005, color) + primary = getDynamicTheme(theme, color).primary + AAscore = hex(color, primary) + } + return color +} + +interface DynamicThemeProviderProps { + color?: string + children: ReactNode +} + +export function DynamicThemeProvider({ color, children }: DynamicThemeProviderProps) { + const theme = useTheme() + const value = useMemo(() => { + if (!color) { + return theme + } + + const accessibleColor = getAccessibleColor(theme, color) + return getDynamicTheme(theme, accessibleColor) + }, [theme, color]) + return ( + +
{children}
+
+ ) +} diff --git a/src/lib/theme/index.tsx b/src/lib/theme/index.tsx new file mode 100644 index 0000000000..2dad518de3 --- /dev/null +++ b/src/lib/theme/index.tsx @@ -0,0 +1,118 @@ +import 'lib/assets/fonts/index.css' + +import { mix, transparentize } from 'polished' +import { createContext, ReactNode, useContext, useMemo, useState } from 'react' + +import styled, { ThemedProvider } from './styled' +import { Colors, ComputedTheme, Theme } from './theme' + +export type { Color, Colors, Theme } from './theme' + +export default styled +export * from './dynamic' +export * from './layer' +export * from './styled' +export * as ThemedText from './type' + +export const lightTheme: Colors = { + // surface + accent: '#FF007A', + container: '#F7F8FA', + module: '#E2E3E9', + interactive: '#CED0D9', + outline: '#C3C5CB', + dialog: '#FFFFFF', + + // text + primary: '#000000', + secondary: '#565A69', + hint: '#888D9B', + onInteractive: '#000000', + + // state + active: '#2172E5', + success: '#27AE60', + warning: '#F3B71E', + error: '#FD4040', + + currentColor: 'currentColor', +} + +export const darkTheme: Colors = { + // surface + accent: '#2172E5', + container: '#191B1F', + module: '#2C2F36', + interactive: '#40444F', + outline: '#565A69', + dialog: '#000000', + + // text + primary: '#FFFFFF', + secondary: '#888D9B', + hint: '#6C7284', + onInteractive: '#FFFFFF', + + // state + active: '#2172E5', + success: '#27AE60', + warning: '#F3B71E', + error: '#FD4040', + + currentColor: 'currentColor', +} + +export const defaultTheme = { + borderRadius: 1, + fontFamily: '"Inter", sans-serif', + fontFamilyVariable: '"InterVariable", sans-serif', + fontFamilyCode: 'IBM Plex Mono', + tokenColorExtraction: true, + ...lightTheme, +} + +export function useSystemTheme() { + const prefersDark = window.matchMedia('(prefers-color-scheme: dark)') + const [systemTheme, setSystemTheme] = useState(prefersDark.matches ? darkTheme : lightTheme) + prefersDark.addEventListener('change', (e) => { + setSystemTheme(e.matches ? darkTheme : lightTheme) + }) + return systemTheme +} + +const ThemeContext = createContext(toComputedTheme(defaultTheme)) + +interface ThemeProviderProps { + theme?: Theme + children: ReactNode +} + +export function ThemeProvider({ theme, children }: ThemeProviderProps) { + const contextTheme = useContext(ThemeContext) + const value = useMemo(() => { + return toComputedTheme({ + ...contextTheme, + ...theme, + } as Required) + }, [contextTheme, theme]) + return ( + + {children} + + ) +} + +function toComputedTheme(theme: Required): ComputedTheme { + return { + ...theme, + borderRadius: clamp( + Number.isFinite(theme.borderRadius) ? (theme.borderRadius as number) : theme.borderRadius ? 1 : 0 + ), + onHover: (color: string) => + color === theme.primary ? transparentize(0.4, theme.primary) : mix(0.16, theme.primary, color), + } + + function clamp(value: number) { + return Math.min(Math.max(value, 0), 1) + } +} diff --git a/src/lib/theme/layer.ts b/src/lib/theme/layer.ts new file mode 100644 index 0000000000..28137bdd1b --- /dev/null +++ b/src/lib/theme/layer.ts @@ -0,0 +1,5 @@ +export enum Layer { + OVERLAY = 100, + DIALOG = 1000, + TOOLTIP = 2000, +} diff --git a/src/lib/theme/styled.ts b/src/lib/theme/styled.ts new file mode 100644 index 0000000000..fdcaec6c54 --- /dev/null +++ b/src/lib/theme/styled.ts @@ -0,0 +1,18 @@ +/* eslint-disable no-restricted-imports */ +import styled, { + css as styledCss, + keyframes as styledKeyframes, + ThemedBaseStyledInterface, + ThemedCssFunction, + ThemeProvider as StyledProvider, + ThemeProviderComponent, + useTheme as useStyled, +} from 'styled-components/macro' + +import { ComputedTheme } from './theme' + +export default styled as unknown as ThemedBaseStyledInterface +export const css = styledCss as unknown as ThemedCssFunction +export const keyframes = styledKeyframes +export const useTheme = useStyled as unknown as () => ComputedTheme +export const ThemedProvider = StyledProvider as unknown as ThemeProviderComponent diff --git a/src/lib/theme/theme.d.ts b/src/lib/theme/theme.d.ts new file mode 100644 index 0000000000..2feddc2022 --- /dev/null +++ b/src/lib/theme/theme.d.ts @@ -0,0 +1,40 @@ +export interface Colors { + // surface + accent: string + container: string + module: string + interactive: string + outline: string + dialog: string + + // text + primary: string + secondary: string + hint: string + onInteractive: string + + // state + active: string + success: string + warning: string + error: string + + currentColor: 'currentColor' +} + +export type Color = keyof Colors + +export interface Attributes { + borderRadius: boolean | number + fontFamily: string + fontFamilyVariable: string + fontFamilyCode: string + tokenColorExtraction: boolean +} + +export interface Theme extends Partial, Partial {} + +export interface ComputedTheme extends Omit, Colors { + borderRadius: number + onHover: (color: string) => string +} diff --git a/src/lib/theme/type.tsx b/src/lib/theme/type.tsx new file mode 100644 index 0000000000..6652935e6a --- /dev/null +++ b/src/lib/theme/type.tsx @@ -0,0 +1,91 @@ +import { Text, TextProps as TextPropsWithCss } from 'rebass' + +import styled, { useTheme } from './styled' +import { Color } from './theme' + +type TextProps = Omit & { color?: Color } + +const TextWrapper = styled(Text)<{ color?: Color }>` + color: ${({ color = 'currentColor', theme }) => theme[color as Color]}; +` + +const TransitionTextWrapper = styled(TextWrapper)` + transition: font-size 0.25s ease-out, line-height 0.25s ease-out; +` + +export function H1(props: TextProps) { + return +} + +export function H2(props: TextProps) { + return +} + +export function H3(props: TextProps) { + return +} + +export function Subhead1(props: TextProps) { + return +} + +export function Subhead2(props: TextProps) { + return +} + +export function Body1(props: TextProps) { + return +} + +export function Body2(props: TextProps) { + return +} + +export function Caption(props: TextProps) { + return +} + +export function Badge(props: TextProps) { + return +} + +export function ButtonLarge(props: TextProps) { + return +} + +export function ButtonMedium(props: TextProps) { + return +} + +export function ButtonSmall(props: TextProps) { + return +} + +export function TransitionButton(props: TextProps & { buttonSize: 'small' | 'medium' | 'large' }) { + const className = `button button-${props.buttonSize}` + const fontSize = { small: 14, medium: 16, large: 20 }[props.buttonSize] + const lineHeight = `${fontSize}px` + return ( + + ) +} + +export function Code(props: TextProps) { + const { fontFamilyCode } = useTheme() + return ( + + ) +} diff --git a/src/lib/types.d.ts b/src/lib/types.d.ts new file mode 100644 index 0000000000..b82ba5c5fb --- /dev/null +++ b/src/lib/types.d.ts @@ -0,0 +1,8 @@ +export interface Token { + name: string + symbol: string + chainId: number + decimals: number + address: string + logoURI: string +} diff --git a/src/lib/utils/atoms.ts b/src/lib/utils/atoms.ts new file mode 100644 index 0000000000..14f666b16f --- /dev/null +++ b/src/lib/utils/atoms.ts @@ -0,0 +1,77 @@ +/* eslint-disable @typescript-eslint/ban-types */ +import { Draft } from 'immer' +import { atom, WritableAtom } from 'jotai' +import { withImmer } from 'jotai/immer' + +/** + * Creates a derived atom whose value is the picked object property. + * By default, the setter acts as a primitive atom's, changing the original atom. + * A custom setter may also be passed, which uses an Immer Draft so that it may be mutated directly. + */ +export function pickAtom, Update>( + anAtom: WritableAtom, + key: Key, + setter: (draft: Draft[Key], update: Update) => Draft[Key] +): WritableAtom +export function pickAtom, Update extends Value[Key]>( + anAtom: WritableAtom, + key: Key, + setter?: (draft: Draft[Key], update: Update) => Draft[Key] +): WritableAtom +export function pickAtom, Update extends Value[Key]>( + anAtom: WritableAtom, + key: Key, + setter: (draft: Draft[Key], update: Update) => Draft[Key] = (draft, update) => + update as Draft[Key] +): WritableAtom { + return atom( + (get) => get(anAtom)[key], + (get, set, update: Update) => + set(withImmer(anAtom), (value) => { + const derived = setter(value[key], update) + value[key] = derived + }) + ) +} + +/** + * Typing for a customizable enum; see setCustomizable. + * This is not exported because an enum may not extend another interface. + */ +interface CustomizableEnum { + CUSTOM: -1 + DEFAULT: T +} + +/** + * Typing for a customizable enum; see setCustomizable. + * The first value is used, unless it is CUSTOM, in which case the second is used. + */ +export type Customizable = { value: T; custom?: number } + +/** Sets a customizable enum, validating the tuple and falling back to the default. */ +export function setCustomizable>(customizable: Enum) { + return (draft: Customizable, update: T | Customizable) => { + // normalize the update + if (typeof update === 'number') { + update = { value: update } + } + + draft.value = update.value + if (draft.value === customizable.CUSTOM) { + draft.custom = update.custom + + // prevent invalid state + if (draft.custom === undefined) { + draft.value = customizable.DEFAULT + } + } + + return draft + } +} + +/** Sets a togglable atom to invert its state at the next render. */ +export function setTogglable(draft: boolean) { + return !draft +} diff --git a/src/lib/utils/uriToHttp.test.ts b/src/lib/utils/uriToHttp.test.ts new file mode 100644 index 0000000000..2e922cf9fa --- /dev/null +++ b/src/lib/utils/uriToHttp.test.ts @@ -0,0 +1,28 @@ +import uriToHttp from './uriToHttp' + +describe('uriToHttp', () => { + it('returns .eth.link for ens names', () => { + expect(uriToHttp('t2crtokens.eth')).toEqual([]) + }) + it('returns https first for http', () => { + expect(uriToHttp('http://test.com')).toEqual(['https://test.com', 'http://test.com']) + }) + it('returns https for https', () => { + expect(uriToHttp('https://test.com')).toEqual(['https://test.com']) + }) + it('returns ipfs gateways for ipfs:// urls', () => { + expect(uriToHttp('ipfs://QmV8AfDE8GFSGQvt3vck8EwAzsPuNTmtP8VcQJE3qxRPaZ')).toEqual([ + 'https://cloudflare-ipfs.com/ipfs/QmV8AfDE8GFSGQvt3vck8EwAzsPuNTmtP8VcQJE3qxRPaZ/', + 'https://ipfs.io/ipfs/QmV8AfDE8GFSGQvt3vck8EwAzsPuNTmtP8VcQJE3qxRPaZ/', + ]) + }) + it('returns ipns gateways for ipns:// urls', () => { + expect(uriToHttp('ipns://app.uniswap.org')).toEqual([ + 'https://cloudflare-ipfs.com/ipns/app.uniswap.org/', + 'https://ipfs.io/ipns/app.uniswap.org/', + ]) + }) + it('returns empty array for invalid scheme', () => { + expect(uriToHttp('blah:test')).toEqual([]) + }) +}) diff --git a/src/lib/utils/uriToHttp.ts b/src/lib/utils/uriToHttp.ts new file mode 100644 index 0000000000..8d334b0f87 --- /dev/null +++ b/src/lib/utils/uriToHttp.ts @@ -0,0 +1,21 @@ +/** + * Given a URI that may be ipfs, ipns, http, or https protocol, return the fetch-able http(s) URLs for the same content + * @param uri to convert to fetch-able http url + */ +export default function uriToHttp(uri: string): string[] { + const protocol = uri.split(':')[0].toLowerCase() + switch (protocol) { + case 'https': + return [uri] + case 'http': + return ['https' + uri.substr(4), uri] + case 'ipfs': + const hash = uri.match(/^ipfs:(\/\/)?(.*)$/i)?.[2] + return [`https://cloudflare-ipfs.com/ipfs/${hash}/`, `https://ipfs.io/ipfs/${hash}/`] + case 'ipns': + const name = uri.match(/^ipns:(\/\/)?(.*)$/i)?.[2] + return [`https://cloudflare-ipfs.com/ipns/${name}/`, `https://ipfs.io/ipns/${name}/`] + default: + return [] + } +} diff --git a/src/locales/af-ZA.po b/src/locales/af-ZA.po deleted file mode 100644 index 95f936968d..0000000000 --- a/src/locales/af-ZA.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: af_ZA\n" -"Language-Team: Afrikaans\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: af\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Bekyk op Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(maak alles skoon)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(wysig)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Verwyder ontvanger" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / week" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Alle voorstelle" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Stemme" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0> Rekeninganalise en opgelope fooie <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Huidige prys: <1> <2 /> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> Wenk: As u poeltekens verwyder, verander u u posisie in onderliggende tekens teen die huidige koers, eweredig aan u deel van die poel. Opgelope fooie is ingesluit by die bedrae wat u ontvang." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Wenk: Kies 'n aksie en beskryf u voorstel vir die gemeenskap. Die voorstel kan nie na indiening gewysig word nie, en verifieer dus alle inligting voordat dit ingedien word. Die stemtydperk sal onmiddellik begin en vir 7 dae duur. Om 'n aangepaste handeling voor te stel, lees <1> die dokumente ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Wenk: Gebruik hierdie instrument om v2 poele te vind wat nie outomaties in die koppelvlak verskyn nie." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> Wenk: As u likiditeit byvoeg, sal u poeltekens ontvang wat u posisie verteenwoordig. Hierdie tekens verdien outomaties fooie wat eweredig is aan u deel van die poel en kan op enige tydstip afgelos word." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0> Ontsluit stem om voor te berei vir die volgende voorstel." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 Welkom by die Unicorn span :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "'N Minimum drempel van 0,25% van die totale UNI-aanbod is nodig om voorstelle in te dien" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Oor" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Aanvaar" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Rekening" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktief" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Voeg by" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Voeg <0/> en <1/> by Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Voeg afgevaardigde + by" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Voeg likiditeit by" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Voeg V2 Likiditeit by" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Voeg likiditeit by." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Voeg meer likiditeit by" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Voeg {0} by Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Voeg {0}-{1} likiditeit by" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Voeg {0}/{1} V3 likiditeit by" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0}bygevoeg" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adres het geen eis nie" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Teen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Laat migrasie van LP-teken toe" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Laat handel oor hoë prysimpak toe en slaan die bevestigingsskerm oor. Gebruik op eie risiko." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Laat die Uniswap-protokol toe om u {0} te gebruik" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Toegelaat" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Bedrag" - -#: src/hooks/useSwapCallback.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." -msgstr "'N Fout het voorgekom tydens die uitvoering van hierdie ruil. U moet dalk u glyverdraagsaamheid verhoog. As dit nie werk nie, kan daar 'n onversoenbaarheid wees met die teken wat u verhandel. Opmerking: fooi vir oordrag en herbasis-tokens is nie versoenbaar met Uniswap V3 nie." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Goedkeur" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Keur token goed" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Goedkeur {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Goedgekeur" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Goedkeur" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Goedkeur {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum brug" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum is in Beta en kan stilstand ondervind. Tydens stilstand verdien u pos geen fooie nie en kan u nie likiditeit verwyder nie. <0> Lees meer." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Is jy seker?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "As lid van die Uniswap-gemeenskap kan u daarop aanspraak maak dat UNI gebruik word vir stemming en beheer. <0/> <1/> <2> Lees meer oor UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Minstens {0} {1} en {2} {3} sal aan u beursie terugbetaal word weens die gekose prysklas." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Outomaties" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Beskikbaar vir deposito: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Die beste vir eksotiese pare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Die beste vir die meeste pare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Die beste vir stabiele pare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Beste vir baie stabiele pare." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Beste prys roete kos ~{formattedGasPriceString} in gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Adres geblokkeer" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Brug" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Deur likiditeit by te voeg, verdien u 0,3% van alle transaksies op hierdie paar in verhouding tot u deel van die poel. Fooie word by die poel gevoeg, word intyds toegeval en kan geëis word deur u likiditeit te onttrek." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Deur 'n beursie te koppel, stem jy in tot Uniswap Labs se <0>Diensbepalings en erken dat jy die Uniswap <1>Protokol Disclaimergelees en verstaan het." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Gekanselleer" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Verander" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafieke" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Gaan die netwerkstatus na" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Kyk na ons v3 LP-deurleidings- en migrasiegidse." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Eis" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Eis <0/> vir {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Eis UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Eis UNI-teken" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Eis UNI -beloning vir {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Eisgelde" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Eis u UNI-tekens op" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Geëis" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI geëis!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Opgeëis!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Eis" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Eis UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Eis {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Maak alles skoon" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Maak alles skoon" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Naby" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Gesluit" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Versamel" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Versamel as WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Vorder fooie in" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Versamel {0}/{1} fooie" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Versamel" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Versamel" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Vordering van fooie" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Die invorderingskoste sal tans beskikbare fooie vir u opneem." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Bevestig" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Bevestig die aanbod" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Bevestig die ruil" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Bevestig hierdie transaksie in u beursie" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Bevestig transaksie in beursie" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Verbind Wallet" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Verbind 'n beursie" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Koppel aan 'n beursie om swembaddens te vind" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Koppel aan 'n beursie om u V2-likiditeit te sien." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Koppel aan 'n beursie om u likiditeit te sien." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Gekoppel met {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Gekopieer" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopieer adres" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Skep Poel en Verskaf" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Skep 'n voorstel" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Skep 'n paar" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Skep 'n poel" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Skep 'n probleem op GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Skep poel en voeg {0}/{1} V3 likiditeit" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Skep poel." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Skep {0}/{1} V3 swembad" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Huidige prys" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Huidige {0} prys:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Donker tema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Verslaan" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegeer Stemme" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegeer stemreg na {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Afgevaardig na:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegering van stemme" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Deposito" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Depositobedrae" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Plaas UNI-V2 LP-tekens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Deponeer likiditeit" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Deponeer tokens na die {label} netwerk." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Deponeer u likiditeitsverskaffer-tekens om UNI, die Uniswap-protokolbestuursteken, te ontvang." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Gedeponeerde likiditeit:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Deponeer {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Deposito van likiditeit" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Beskrywing" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Gedetailleerd" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Besonderhede" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Ontkoppel" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Onenigheid" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Verwerp" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumente" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Sien u nie een van u v2-posisies nie? <0> Voer dit in." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Verdiende UNI-tekens verteenwoordig stemgeregtigde aandele in Uniswap-bestuur." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Wysig" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Doeltreffendheidsvergelyking" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Voer 'n persentasie in" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Voer 'n ontvanger in" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Voer 'n geldige glippersentasie in" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Voer 'n adres in om 'n UNI-eis te aktiveer. As die adres 'n UNI kan eis, sal dit na indiening aan hulle gestuur word." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Voer 'n bedrag in" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Voer geldige lysligging in" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Voer geldige tekenadres in" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Voer {0} bedrag in" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Fout" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Kon nie koppel nie" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Kon nie koppel nie. Probeer om die bladsy te verfris." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Kon nie lys invoer nie" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Skatting kan verskil as gevolg van jou beursie gas instellings" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Geskatte netwerkfooi" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Uitgevoer" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Deskundige modus" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Die kundige modus skakel die bevestiging van die transaksie uit en laat transaksies met 'n hoë glip toe wat dikwels slegte tariewe en verlore fondse tot gevolg het." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Verstreke" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Verken Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Kon nie netwerke van die Uniswap-koppelvlak verander nie. Om Uniswap op {0}te gebruik, moet jy die netwerk in jou beursie verander." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Fooi Tier" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Fooi-vlak" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Haal tans die beste prys …" - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Vir" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Klik op migreer vir elke poel hieronder om u likiditeit uit Uniswap V2 te verwyder en dit in Uniswap V3 te deponeer." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Van" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Van (hoogstens)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Volle omvang" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Full-range posisies kan minder fooie verdien as gekonsentreerde posisies. Kom meer te wete <0> hier ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Kry ondersteuning op Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Hulp Sentrum" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Steek weg" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Versteek geslote posisies" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Hoë prysimpak" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Hoe hierdie toepassing API's gebruik" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "ek verstaan" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "As u 'n teken uit hierdie lys koop, kan u dit dalk nie terug verkoop nie." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Invoer" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Invoerlys" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Invoer swembad" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Voer V2-swembad in" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Invoer op eie risiko" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Binne reikafstand" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Verhoog die likiditeit" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Aanvanklike pryse en swembadaandeel" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inisialiseer tans ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Inset word geskat. U sal hoogstens <0>{0} {1} anders gaan die transaksie terug." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Installeer Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Onvoldoende likiditeit vir hierdie handel." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Onvoldoende {0} balans" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Interface-instellings" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Ongeldige paar" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Ongeldige paar." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ongeldige prysinsette" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Ongeldige reeks gekies. Die minimum prys moet laer wees as die maksimum prys." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Ongeldige ontvanger" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Taal" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Leer" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Kom meer te wete oor die voorsiening van likiditeit" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Leer meer" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Reg en privaatheid" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Ligte tema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likiditeit" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likiditeitsdata is nie beskikbaar nie." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Belonings vir likiditeitsverskaffer" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likiditeitsverskaffers verdien 'n fooi van 0,3% op alle transaksies wat eweredig is aan hul deel van die poel. Fooie word by die poel gevoeg, intyds toegeval en kan geëis word deur u likiditeit te onttrek." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Lyste" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Gelaai" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Laai tans" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAKS" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Bestuur" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Bestuur likiditeit in die beloningspoel" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Bestuur tekenlyste" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Bestuur hierdie swembad." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maks" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maksimum prys" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maksimum prys" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maksimum:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksimum gestuur" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Spyskaart" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migreer" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migreer likiditeit na V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migreer V2 Likiditeit" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migreer u likiditeitsteken van Uniswap V2 na Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migreer {0}/{1} likiditeit na V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migreer" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Minimum prys" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimum prys" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum ontvang" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Ontbrekings ontbreek" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Meer" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Netwerkfooi" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Netwerkwaarskuwing" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Netwerkfooie oorskry 50% van die ruilbedrag!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nuwe posisie" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Geen V2-likiditeit gevind nie." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Geen aktiewe poele nie" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Geen data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Geen beskrywing." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Geen likiditeit gevind nie." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Geen poel gevind nie." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Geen voorstelle gevind nie." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Geen resultate gevind." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Nie geskep nie" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "AF" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "AAN" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "GEBRUIK SLEGS hierdie modus as u weet wat u doen." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Af" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Aan" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Sodra u tevrede is met die tarief, klik op die aanbod om dit te hersien." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Slegs stemgeregtigdes van UNI wat self gedelegeer is of na 'n ander adres voor blok {0} gedelegeer is." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Oeps! 'N Onbekende fout het voorgekom. Verfris die bladsy of besoek 'n ander blaaier of toestel." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimisme poort" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimisme is in Beta en kan stilstand ervaar. Optimisme verwag beplande stilstand om die netwerk in die nabye toekoms op te gradeer. Tydens stilstand sal jou posisie nie fooie verdien nie en jy sal nie likiditeit kan verwyder nie. <0>Lees meer." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistiese Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Buite bereik" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Die uitset word geskat. As die prys met meer as {0}% verander, sal u transaksie terugkeer." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Die uitset word geskat. U sal minstens <0>{0} {1} ontvang, anders gaan die transaksie terug." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Uitset sal na <0>{0} gestuur word" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Eienaar" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Deelnemende poele" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "In afwagting" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Bevestig dat u hierdie lys wil verwyder deur REMOVE in te tik" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Maak asseblief verbinding met Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Verbind asseblief die toepaslike Ethereum-netwerk." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Tik die woord \"{confirmWord}\" in om die kundige modus te aktiveer." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Veelhoekbrug" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Veelhoekskandering" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Poel" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Poel gevind!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Poeltarief" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Poeltarief" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Poelteken in die beloningspoel:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Gepoel {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Poele Oorsig" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Voorskou" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Prys" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Prysverskil:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Prysimpak" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Prysimpak te hoog" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Prys opgedateer" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Prysklas" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Prys:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Pryse en swembadaandeel" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Voorstel" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Voorstel ingedien" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Voorstel Titel" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Voorstelle" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Voorstelle wat deur lede van die gemeenskap ingedien word, sal hier verskyn." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Voorgestelde aksie" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Voorsteller" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokol vrywaring" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "In die ry staan" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tariewe" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Lees meer oor UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Lees meer oor Uniswap-bestuur" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Lees meer oor die voorsiening van likiditeit" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Lees meer oor onondersteunde bates" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Onlangse transaksies" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Ontvanger" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Verwyder" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Verwyder <0/> en <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Verwyder bedrag" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Verwyder die afgevaardigde" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Verwyder vloeibaarheid" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Verwyder lys" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Verwyder {0} {1} en {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Verwyder {0} {1} en{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Versoek kenmerke" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Keer terug" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Soek naam of plak adres" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Kies Koppel" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Kies 'n netwerk" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Kies 'n teken" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Kies 'n teken om u v2-likiditeit te vind." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Kies 'n aksie" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Geselekteerde reeks" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Self" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Self Afgevaardigde" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Stel prysklas in" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Stel beginprys" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Deel van die swembad" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Aandeel van die poel:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Wys Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Toon geslote posisies" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Eenvoudig" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Glipverdraagsaamheid" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Sommige bates is nie beskikbaar via hierdie koppelvlak nie, omdat dit moontlik nie goed werk met die slim kontrakte nie, of omdat ons om regsredes nie handel kan toelaat nie." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Iets het verkeerd geloop" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Stap 1. Kry UNI-V2 likiditeitstekens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Dien nuwe voorstel in" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Voorlegging indien" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Stemming indien" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Geslaag" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Sukses" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Voorsiening" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Verskaf {0} {1} en {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Ruil om" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Ruil <0/> vir presies <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Ruil in elk geval" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Ruil presies <0/> vir <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Ruil misluk: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Ruil {0} {1} vir {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Dankie dat u deel is van die Uniswap-gemeenskap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Die persentasiegeld wat u verdien." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Die ruil-invariant x * y = k is nie bevredig deur die ruil nie. Dit beteken gewoonlik dat een van die tekens wat u omruil, persoonlike gedrag by oordrag bevat." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Die toepassing haal blokkettingdata van The Graph se gasheerdiens af." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Die toepassing haal data in die ketting en bou kontrakoproepe met 'n Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Die toepassing haal die optimale handelsroete vanaf 'n Uniswap Labs-bediener." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Die toepassing teken anonieme gebruikstatistieke aan om mettertyd te verbeter." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Die toepassing versamel jou beursie-adres veilig en deel dit met TRM Labs Inc. vir risiko- en voldoeningsredes." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Die koste om hierdie transaksie te stuur is meer as die helfte van die waarde van die insetbedrag." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Die huidige vinnige gasbedrag vir die stuur van 'n transaksie op L1. Gasfooie word in Ethereum se inheemse geldeenheid Ether (ETH) betaal en in GWEI gedenomineer." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Die geskatte verskil tussen die USD-waardes van inset- en uitsetbedrae." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Die invoer-teken kan nie oorgedra word nie. Die invoer-teken kan 'n probleem hê." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Die markprys is buite u gespesifiseerde prysklas. Slegs deposito vir enkelbates." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Die mees onlangse bloknommer op hierdie netwerk. Pryse word op elke blok opgedateer." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Die uitvoer-teken kan nie oorgedra word nie. Daar kan 'n probleem wees met die uitvoer-teken." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Die uitvoer-teken kan nie oorgedra word nie. Daar is 'n probleem met die uitvoer-teken. Opmerking: fooi vir oordrag en herbasis-tekens is nie versoenbaar met Uniswap V3 nie." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Die prys van hierdie poel is buite u gekose reeks. U posisie verdien tans nie fooie nie." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Die prys van hierdie poel is binne u gekose reeks. U posisie verdien tans fooie." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Die verhouding tekens wat u byvoeg bepaal die prys van hierdie poel." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Die transaksie kon nie gestuur word nie omdat die sperdatum verstryk het. Kyk dat u sperdatum nie te laag is nie." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Daar is geen likiditeitsdata nie." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Hierdie toepassing gebruik die volgende derdeparty-API's:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Hierdie poel moet geïnisialiseer word voordat u likiditeit kan byvoeg. Kies 'n aanvangsprys vir die swembad om te initialiseer. Voer dan u likiditeitspryse en depositobedrag in. Gasfooie sal hoër wees as gewoonlik as gevolg van die initialiseringstransaksie." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Hierdie roete optimaliseer jou totale uitset deur gesplete roetes, veelvuldige hops en die gaskoste van elke stap in ag te neem." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Hierdie instrument sal u {0} likiditeit veilig na V3 migreer. Die proses is heeltemal vertroulik danksy die" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Hierdie transaksie sal weens die prysbeweging nie slaag nie. Probeer u glyverdraagsaamheid verhoog. Opmerking: fooi vir oordrag en herbasis-tekens is nie versoenbaar met Uniswap V3 nie." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Hierdie transaksie sal ook nie slaag nie as gevolg van prysbeweging of fooi by oordrag. Probeer u glyverdraagsaamheid verhoog." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Wenk: Pasgemaakte tekens word plaaslik in u blaaier geberg" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Aan" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Aan (ten minste)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token word nie ondersteun nie" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tekens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Totale deposito" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Totale deposito's" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Handelsroete" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Transaksie-instellings" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaksie ingedien" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaksie voltooi in" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Transaksiesperdatum" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaksie verwerp." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Oordragtoken" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Probeer weer" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Skakel kundigheidsmodus aan" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI het aangebreek" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI-tekens verteenwoordig stemgeregtigde aandele in Uniswap-bestuur. U kan self oor elke voorstel stem of u stemme aan 'n derde party delegeer." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Verbrand" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP-tekens word vereis. Nadat u likiditeit by die {0}-{1} poel gevoeg het, kan u u likiditeitsteken op hierdie bladsy insit." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Onopgeëiste UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Onopgeëiste fooie" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Onbepaald" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Onverwagte fout. Kon nie gas vir die ruil skat nie." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Onverwagte probleem met die skatting van die gas. Probeer asseblief weer." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Onttrek bestuur" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs se diensbepalings" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap beskikbaar in: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-bestuur is slegs beskikbaar op Laag 1. Skakel u netwerk oor na Ethereum Mainnet om voorstelle en stem te sien." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Onttrek likiditeitsontginning" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Onttrek migrasie kontrak↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Onbekende bron" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Onbekende fout{0}. Probeer u glyverdraagsaamheid verhoog. Opmerking: fooi vir oordrag en herbasis-tekens is nie versoenbaar met Uniswap V3 nie." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Ontsluit stemme" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Ontsluit stemming" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Ontsluit stemme" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Nie-ondersteunde bate" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Nie-ondersteunde bates" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Naamloos" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Maak oop" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Pak <0/> tot {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Delegasie op te dateer" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Lys van opdaterings" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Gebruik die Uniswap Labs API om vinniger kwotasies te kry." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Gebruiker" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 is nie beskikbaar op Laag 2. Skakel oor na Laag 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 likiditeit" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} prys:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Kyk na opgelope fooie en analise <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Kyk na lys" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Uitsig op Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Bekyk op Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Bekyk transaksie op Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Stem" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Stem teen" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Stem vir" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Stem teen voorstel {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Stem teen voorstel {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem teen voorstel {proposalKey} met rede \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Stem vir voorstel {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Stem vir voorstel {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem vir voorstel {proposalKey} met rede \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Stem om te onthou van voorstel {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Stem om te onthou van voorstel {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem om te onthou van voorstel {proposalKey} met rede \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Die stemming het geeïnding {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Die stemming eindig ongeveer {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Stemming begin ongeveer {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Wag op bevestiging" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Wallet-adres of ENS-naam" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Weeklikse belonings" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Welkom by Unicorn-span :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "As u eis sonder om te onttrek, bly u likiditeit in die mynpoel." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "As u onttrek, sal die kontrak outomaties namens u UNI eis!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "By u onttrekking word u UNI geëis en u likiditeit uit die mynpoel verwyder." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Onttrek" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Onttrek en eis" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Onttrek gedeponeerde likiditeit" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Onttrek {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 onttrek!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Draai toe" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Wikkel <0/> tot {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Verkeerde netwerk" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "U het reeds 'n aktiewe of hangende voorstel" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "U skep 'n poel" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "U is die eerste likiditeitsverskaffer vir hierdie Uniswap V3-poel. U likiditeit sal teen die huidige {0} prys migreer." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "U is die eerste likiditeitsverskaffer." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "U kan self oor elke voorstel stem of u stemme aan 'n derde party delegeer." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "U kan nou {0} verhandel" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "U het nie genoeg stemme om 'n voorstel in te dien nie" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "U het nog nie likiditeit in hierdie poel 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Jy kan oorweeg om te wag totdat die netwerkfooie daal om hierdie transaksie te voltooi." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "U moet 'n rekening koppel." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "U moet die Uniswap-slimkontrakte toestemming gee om u {0}te gebruik. U hoef dit slegs een keer per teken te doen." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "U moet {formattedProposalThreshold} stemme hê om 'n voorstel in te dien" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "U moet slegs likiditeit in Uniswap V3 deponeer teen 'n prys wat volgens u korrek is. <0 /> As die prys verkeerd lyk, kan u ruil om die prys te skuif, of wag tot iemand anders dit doen." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "U sal ook fooie wat u uit hierdie posisie verdien, invorder." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "U sal ontvang" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "U V2-likiditeit" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Jou aktiewe V3-likiditeitsposisies sal hier verskyn." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "U likiditeitsdeposito's" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "U poelaandeel:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "U posisie" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "U posisie het 0 likiditeit en verdien geen fooie nie." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "U posisie sal hier verskyn." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "U posisie sal 100% bestaan uit {0} teen hierdie prys" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "U posisie sal 100% wees teen hierdie prys {0}." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "U posisie sal nie fooie verdien of in transaksies gebruik word voordat die markprys binne u reeks beweeg nie." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "U posisies" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "U tarief" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "U totale poelteken:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "U transaksiekoste sal baie hoër wees, want dit bevat die gas om die poel te skep." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "U transaksie kan vooruitloop" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "U transaksie kan misluk" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "U transaksie gaan terug as dit langer as hierdie tydperk hangende is." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "U transaksie gaan terug as die prys met meer as hierdie persentasie ongunstig verander." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "U transaksies sal hier verskyn ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "U onopgeëiste UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "na gly" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "bevestig" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "vir {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "het sokkies emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "hier." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // of ipfs: // of ENS naam" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minute" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "via {0} tekenlys" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Invoer token} other {Voer tokens in}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Persoonlike tekens" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} gestort" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Fooie verdien:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} hangende" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / week" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP tekens beskikbaar" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Stemme" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tekens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Prys:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Bygevoeg deur gebruiker" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% fooi-vlak" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% swembad" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% kies" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Likiditeitsmynbou" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Tekens" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} tokens" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} teken brug" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Terug na swembaddens" - diff --git a/src/locales/ar-SA.po b/src/locales/ar-SA.po deleted file mode 100644 index 3884ae0ecf..0000000000 --- a/src/locales/ar-SA.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: ar_SA\n" -"Language-Team: Arabic\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: ar\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(عرض على Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(مسح الكل)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(تعديل)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- إزالة المستلم" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / أسبوع" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> جميع المقترحات" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> الأصوات" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>تحليلات الحساب والرسوم المتراكمة<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> السعر الحالي: <1> <2 /> <3>{0} لكل {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>تلميح: إزالة رموز المجموعة تحول مركزك مرة أخرى إلى الرموز الأساسية بالمعدل الحالي، بما يتناسب مع نصيبك من المجموعة. الرسوم المتراكمة مدرجة في المبالغ التي تتلقاها." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> نصيحة: حدد إجراء ووصف اقتراحك للمجتمع. لا يمكن تعديل العرض بعد التقديم ، لذا يرجى التحقق من جميع المعلومات قبل التقديم. ستبدأ فترة التصويت على الفور وتستمر لمدة 7 أيام. لاقتراح إجراء مخصص ، <1> اقرأ المستندات ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> نصيحة: استخدم هذه الأداة للبحث عن مجموعات v2 التي لا تظهر تلقائيًا في الواجهة." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>نصيحة: عندما تضيف السيولة، سوف تتلقى رموز المجموعة التي تمثل مركزك. هذه الرموز تحصل تلقائيًا على رسوم تتناسب مع نصيبك من المجموعة، ويمكن استبدالها في أي وقت." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>افتح التصويت للتحضير للاقتراح التالي." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 مرحبًا بكم في فريق:) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "مطلوب حد أدنى قدره 0.25٪ من إجمالي إمداد UNI لتقديم العروض" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "حول" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "قبول" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "حساب" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "نشط" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "إضافة" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "أضف <0 /> و <1 /> إلى Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "إضافة مندوب +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "إضافة سيولة" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "إضافة سيولة V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "إضافة سيولة." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "أضف المزيد من السيولة" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "إضافة {0} إلى Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "إضافة سيولة {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "إضافة سيولة {0}/{1} V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "تم إضافة {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "العنوان ليس لديه مطالبة متاحة" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "ضد" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "السماح بترحيل رمز LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "السماح بتداول تأثير الأسعار المرتفعة وتخطي شاشة التأكيد. استخدمه على مسؤوليتك الخاصة." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "السماح لبروتوكول Uniswap باستخدام {0} الخاص بك" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "مسموح" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "المبلغ" - -#: src/hooks/useSwapCallback.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." -msgstr "حدث خطأ أثناء محاولة تنفيذ هذا التبادل. قد تحتاج إلى زيادة تحملك للانزلاق. إذا لم يفلح ذلك ، فقد يكون هناك عدم توافق مع الرمز الذي تتداوله. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "الموافقة" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "الموافقة على رمز" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "الموافقة على {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "معتمد" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "الموافقة" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "الموافقة على {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "جسر Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum في الإصدار التجريبي وقد يواجه بعض التوقفات عن العمل. خلال فترة التوقف عن العمل ، لن يربح مركزك رسومًا ولن تتمكن من إزالة السيولة. <0> اقرأ المزيد." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "هل أنت متأكد؟" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "كعضو في مجتمع Uniswap ، يمكنك أن تدعي أن UNI تستخدم في التصويت والحكم. <0/><1/><2>اقرأ المزيد عن UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "سيتم استرداد {0} {1} و {2} {3} على الأقل إلى محفظتك بسبب نطاق السعر المحدد." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "تلقائي" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API جهاز التوجيه التلقائي" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "متاح للإيداع: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "التوازن: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "الأفضل للأزواج الغريبة." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "الأفضل لمعظم الأزواج." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "الأفضل للأزواج مستقرة." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "الأفضل للأزواج المستقرة جدًا." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "تكاليف مسار أفضل الأسعار ~{formattedGasPriceString} في الغاز." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "عنوان محظور" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "كوبري" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "من خلال إضافة السيولة ستكسب 0.3٪ من جميع المعاملات على هذا الزوج بما يتناسب مع نصيبك من المجموعة. تضاف الرسوم إلى المجموعة، تتراكم في الوقت الحقيقي ويمكن المطالبة بها بسحب السيولة الخاصة بك." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "من خلال ربط المحفظة ، فإنك توافق على شروط الخدمة <0>وتقر بأنك قد قرأت وفهمت إخلاء مسؤولية بروتوكول <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "ألغيت" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "تغيير" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "الرسوم البيانية" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "تحقق من حالة الشبكة" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "تحقق من أدلة التجول والترحيل الخاصة بـ v3 LP." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "مطالبة" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "مطالبة <0 /> مقابل {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "مطالبة UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "مطالبة برمز UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "اطلب مكافأة UNI مقابل {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "المطالبة بالرسوم" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "طالب برموز UNI الخاصة بك" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "مطالب" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "طالبَ بـ UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "ادعى!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "مطالبة" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "مطالبة بـ UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "المطالبة ب {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "مسح الكل" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "مسح الكل" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "إغلاق" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "مغلق" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "اجمع" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "اجمع كـ WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "تحصيل الرسوم" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "اجمع {0}/{1} رسوم" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "مجمّع" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "جمع" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "تحصيل الرسوم" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "سيقوم تحصيل الرسوم بسحب الرسوم المتاحة لك حاليًا." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "تأكيد" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "تأكيد الإمداد" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "تأكيد المبادلة" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "تأكيد هذه المعاملة في محفظتك" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "تأكيد المعاملة في المحفظة" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "توصيل المحفظة" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "توصيل محفظة" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "وصّل بمحفظة للعثور على المجموعات" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "وصّل بمحفظة لعرض سيولة V2 الخاصة بك." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "وصّل بمحفظة لعرض السيولة الخاصة بك." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "متصل مع {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "تم النسخ" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "نسخ العنوان" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "إنشاء مجموعة وإمدادات" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "إنشاء اقتراح" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "إنشاء مجموعة" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "إنشاء مجموعة" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "قم بإنشاء مشكلة على GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "إنشاء مجموعة وإضافة سيولة {0}/{1} V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "إنشاء مجموعة." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "خلق {0}/{1} تجمع V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "السعر الحالي" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "سعر {0} الحالي:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "مظهر داكن" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "هزم" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "أصوات التفويض" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "تفويض سلطة التصويت إلى {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "مفوض إلى:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "تصويت التفويض" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "الإيداع" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "مبالغ الإيداع" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "إيداع رموز UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "إيداع السيولة" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "إيداع الرموز في شبكة {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "قم بإيداع رموز موفر السيولة الخاصة بك لتلقي UNI، رمز بروتوكول Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "السيولة المودعة" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "تم ايداع {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "ايداع السيولة" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "الوصف" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "مفصل" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "التفاصيل" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "قطع الاتصال" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "تجاهل" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "الوثائق" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "لا ترى أحد مراكز v2 الخاصة بك؟ <0>قم باستيراده." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "تمثل رموز UNI التي تم الحصول عليها حصص التصويت في إدارة Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "يحرر" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "مقارنة الكفاءة" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "أدخل نسبة مئوية" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "أدخل المستلم" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "أدخل نسبة انزلاق صحيحة" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "أدخل عنوانًا لتشغيل مطالبة UNI. إذا كان العنوان لديه أي طلب UNI فإنه سيتم إرساله إليهم عند التقديم." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "أدخل مبلغ" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "أدخل موقع قائمة صالحة" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "أدخل عنوان رمز صالح" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "أدخل مبلغ {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "خطأ" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "خطأ في الاتصال" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "خطأ في الاتصال. حاول تحديث الصفحة." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "خطأ في استيراد قائمة" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "قد يختلف التقدير بسبب إعدادات الغاز في محفظتك" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "رسوم الشبكة المقدرة" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "إثيرسكان" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "أعدم" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "النتائج الموسعة من قوائم الرموز غير النشطة" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "الناتج المتوقع" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "وضع الخبراء" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "وضع الخبراء يلغي تأكيد سرعة المعاملات ويسمح بتداول صفحات الانزلاق المرتفع التي غالبًا ما تؤدي إلى معدلات رديئة وأموال مفقودة." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "منتهي الصلاحية" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "اكتشف تحليلات Uniswap." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "فشل تبديل الشبكات من واجهة Uniswap. من أجل استخدام Uniswap على {0}، يجب عليك تغيير الشبكة في محفظتك." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "مستوى الرسوم" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "فئة الرسوم" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "جارٍ الحصول على أفضل سعر ..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "لـ" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "لكل مجموعة موضحة أدناه، انقر فوق ترحيل لإزالة السيولة الخاصة بك من Uniswap V2 وإيداعها في Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "من" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "من (على الأكثر)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "مجموعة كاملة" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "قد تكسب المراكز الكاملة النطاق رسومًا أقل من المراكز المركزة. تعلم المزيد <0> هنا ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "احصل على الدعم على Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "مركز المساعدة" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "يخفي" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "إخفاء المراكز المغلقة" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "تأثير ارتفاع السعر" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "كيف يستخدم هذا التطبيق واجهات برمجة التطبيقات" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "أنا أفهم" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "إذا قمت بشراء الرمز المميز من هذه القائمة، قد لا تتمكن من بيعه مرة أخرى." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "استيراد" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "استيراد قائمة" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "استيراد مجموعة" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "استيراد مجموعة V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "استيراد على مسؤوليتك الخاصة" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "في النطاق" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "زيادة السيولة" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "الأسعار الأولية وحصة المجموعة" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "تهيئة..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "تم تقدير الإدخال. سوف تبيع على الأكثر <0>{0} {1} أو سوف تعود المعاملة." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "تثبيت Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "السيولة غير كافية لهذه التجارة." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "رصيد {0} غير كاف" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "إعدادات الواجهة" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "زوج غير صالح" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "زوج غير صالح." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "إدخال سعر غير صالح" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "النطاق المحدد غير صالح. يجب أن يكون الحد الأدنى للسعر أقل من الحد الأقصى للسعر." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "مستلم غير صالح" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "لغة" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "تعلم" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "تعرف على توفير السيولة" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "يتعلم أكثر" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "الشؤون القانونية والخصوصية" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "مظهر خفيف" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "السيولة" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "بيانات السيولة غير متوفرة." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "مكافآت موفر السيولة" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "يحصل مقدمو خدمات السيولة على رسم بنسبة 0.3٪ من جميع المهن يتناسب مع نصيبهم من المجموعة. تضاف الرسوم إلى المجموعة، تتراكم في الوقت الحقيقي ويمكن المطالبة بها بسحب السيولة الخاصة بك." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "القوائم" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "تحميل" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "جاري التحميل" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "الأعلى" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "إدارة" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "إدارة السيولة في مخزن المكافآت" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "إدارة قوائم الرمز المميز" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "إدارة هذه المجموعة." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "الحد الأقصى" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "الحد الأقصى للسعر" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "السعر الأقصى" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "الحد الأقصى:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "الحد الأقصى المرسل" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "قائمة الطعام" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "ترحيل" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "ترحيل السيولة إلى V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "ترحيل سيولة V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "نقل رموز السيولة الخاصة بك من Uniswap V2 إلى Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "تهاجر {0}/{1} السيولة إلى V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "الترحيل" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "الحد الأدنى للسعر" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "الحد الأدنى للسعر" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "دقيقة:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "تلقى الحد الأدنى" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "التبعيات المفقودة" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "المزيد" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "رسوم الشبكة" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "تحذير الشبكة" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "رسوم الشبكة تتجاوز 50٪ من مبلغ المبادلة!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "موضع جديد" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "لم يتم العثور على سيولة V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "لا توجد محموعات نشطة" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "لايوجد بيانات" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "بدون وصف." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "لم يتم العثور على سيولة." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "لم يتم العثور على مجموعة." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "لا توجد مقترحات." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "لا توجد نتائج." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "لم يتم إنشاؤه" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "إيقاف" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "على" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "فقط استخدم هذا الخيار مع ما تعلمونه من أمور." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "إيقاف" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "تشغيل" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "بعد أن تكون راضيًا عن السعر، انقر على الإمداد للمراجعة." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "أصوات UNI التي تم تفويضها بنفسك أو تفويضها إلى عنوان آخر قبل الكتلة {0} هي فقط المؤهلة للتصويت." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "عفواً! حدث خطأ غير معروف. يُرجى تحديث الصفحة، أو الزيارة من متصفح آخر أو جهاز آخر." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "بوابة التفاؤل" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "التفاؤل في مرحلة تجريبية وقد يواجه فترة توقف. يتوقع التفاؤل توقفًا مخططًا له لترقية الشبكة في المستقبل القريب. خلال فترة التوقف ، لن يربح مركزك رسومًا ولن تتمكن من إزالة السيولة. <0>اقرأ المزيد." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "متفائل Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "خارج النطاق" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "الناتج تقديري. إذا تغير السعر بأكثر من {0}٪ سوف تعود المعاملة الخاصة بك." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "الناتج تقديري. سوف تتلقى على الأقل <0>{0} {1} أو سوف تعود المعاملة." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "سيتم إرسال الناتج إلى <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "المالك" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "المجموعات المشاركة" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "قيد الانتظار" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "يرجى تأكيد رغبتك في إزالة هذه القائمة بكتابة REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "يرجى الاتصال بـ Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "الرجاء الاتصال بشبكة إيثيريوم المناسبة." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "الرجاء كتابة كلمة \"{confirmWord}\" لتمكين وضع الخبير." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "جسر بوليجون" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "بوليغونسكان" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "المجموعة" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "تم العثور على مجموعة!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "سعر المجموعة" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "سعر المجموعة" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "رموز المجموعة في مجموعة المكافآت:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "مجمّع {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "نظرة عامة على المجموعات" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "معاينة" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "السعر" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "فرق السعر:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "تأثير السعر" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "تأثير السعر مرتفع للغاية" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "تم تحديث السعر" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "نطاق السعر" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "السعر:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "الأسعار وحصة المجموعة" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "عرض" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "تم تقديم الاقتراح" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "عنوان الاقتراح" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "مقترحات" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "وسترد هنا المقترحات المقدمة من أعضاء المجتمع المحلي." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "الإجراء المقترح" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "المقترح" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "إخلاء مسؤولية البروتوكول" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "في قائمة الانتظار" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "الأسعار" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "اقرأ المزيد عن UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "اقرأ المزيد عن إدارة Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "اقرأ المزيد عن توفير السيولة" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "اقرأ المزيد عن الأصول غير المدعومة" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "المعاملات الأخيرة" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "متلقي" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "إزالة" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "قم بإزالة <0 /> و <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "إزالة المبلغ" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "إزالة التفويض" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "إزالة السيولة" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "إزالة القائمة" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "إزالة {0} {1} و {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "إزالة {0} {1} و{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "طلب الميزات" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "رجوع" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "البحث عن اسم أو لصق العنوان" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "حدد زوج" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "حدد شبكة" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "حدد الرمز" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "حدد رمزًا للعثور على سيولة v2 الخاصة بك." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "حدد إجراء" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "نطاق محدد" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "نفسه" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "تفويض ذاتي" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "تعيين نطاق السعر" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "تعيين سعر البدء" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "حصة من المجموعة" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "مشاركة المجموعة:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "عرض Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "إظهار المراكز المغلقة" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "بسيط" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "تحمل الانزلاق" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "بعض الأصول غير متوفرة من خلال هذه الواجهة لأنها قد لا تعمل بشكل جيد مع العقود الذكية أو نحن غير قادرين على السماح بالتداول لأسباب قانونية." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "حدث خطأ ما" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "الخطوة 1. احصل على رمز سيولة UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "إرسال اقتراح جديد" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "تقديم الاقتراح" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "تقديم التصويت" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "نجح" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "النجاح" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "الإمداد" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "إمداد {0} {1} و {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "مبادلة" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "استبدل <0 /> بـ <1 /> بالضبط" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "مبادلة على أي حال" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "استبدل بالضبط <0 /> بـ <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "فشل المبادلة: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "مبادلة {0} {1} مقابل {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "نشكرك على كونك جزءًا من مجتمع Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "النسبة التي ستكسبها في الرسوم." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "الثابت Uniswap x*y=k لم يكن راضيًا عن المبادلة. يعني هذا عادةً أن أحد الرموز التي تقوم بتبادلها يتضمن سلوكًا مخصصًا عند النقل." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "يجلب التطبيق بيانات blockchain من خدمة The Graph المستضافة." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "يجلب التطبيق البيانات على السلسلة وينشئ مكالمات تعاقدية باستخدام واجهة برمجة تطبيقات Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "يجلب التطبيق المسار التجاري الأمثل من خادم Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "يسجل التطبيق إحصاءات الاستخدام مجهولة المصدر من أجل التحسين بمرور الوقت." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "يجمع التطبيق عنوان محفظتك بأمان ويشاركه مع TRM Labs Inc. لأسباب تتعلق بالمخاطر والامتثال." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "تبلغ تكلفة إرسال هذه المعاملة أكثر من نصف قيمة مبلغ الإدخال." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "مقدار الغاز السريع الحالي لإرسال معاملة على L1. تُدفع رسوم الغاز بعملة Ethereum الأصلية ETH (ETH) والمُقومة بعملة GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "الفرق المقدر بين قيم المدخلات والمخرجات بالدولار الأمريكي." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "لا يمكن نقل رمز الإدخال. قد تكون هناك مشكلة في رمز الإدخال." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "سعر السوق خارج نطاق السعر المحدد الخاص بك. إيداع أصل واحد فقط." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "أحدث رقم كتلة على هذه الشبكة. يتم تحديث الأسعار في كل كتلة." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "لا يمكن نقل رمز الإخراج. قد تكون هناك مشكلة في رمز الإخراج." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "لا يمكن نقل رمز الإخراج. قد تكون هناك مشكلة في رمز الإخراج. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "سعر هذه المجموعة خارج النطاق المحدد الخاص بك. منصبك لا يحصل حاليًا على رسوم." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "سعر هذه المجموعة ضمن النطاق المحدد الخاص بك. منصبك يكسب رسومًا حاليًا." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "نسبة الرموز التي تضيفها سوف تحدد سعر هذه المجموعة." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "تعذر إرسال المعاملة لانتهاء الموعد المحدد. يرجى التحقق من أن الموعد النهائي لمعاملاتك ليس منخفضًا جدًا." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "لا توجد بيانات سيولة." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "يستخدم هذا التطبيق واجهات برمجة التطبيقات الخارجية التالية:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "يجب تهيئة هذا المستودع قبل أن تتمكن من إضافة السيولة. للتهيئة ، حدد سعر البداية للمجمع. ثم أدخل نطاق سعر السيولة ومبلغ الإيداع. ستكون رسوم الغاز أعلى من المعتاد بسبب معاملة التهيئة." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "يعمل هذا المسار على تحسين إنتاجك الإجمالي من خلال مراعاة المسارات المنقسمة والقفزات المتعددة وتكلفة الغاز لكل خطوة." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "هذا الرمز المميز غير مدعوم في تطبيق Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "هذه الأداة سوف تنقل سيولتك {0} إلى V3. العملية غير موثوق بها تمامًا بسبب" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "لن تنجح هذه الصفقة بسبب حركة السعر. حاول زيادة تحملك للانزلاق. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "لن تنجح هذه الصفقة إما بسبب حركة السعر أو بسبب رسوم التحويل. حاول زيادة تحملك للانزلاق." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "نصيحة: يتم تخزين الرموز المخصصة محليًا في المتصفح الخاص بك" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "إلى" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "إلى (على الأقل)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "رمز غير مدعوم" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "الرموز" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "الإجمالي المودَع" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "مجموع الودائع" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "طريق التجارة" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "إعدادات المعاملة" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "تم إرسال المعاملة" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "اكتملت المعاملة في" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "الموعد النهائي للمعاملة" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "الصفقة مرفوضة." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "رمز التحويل" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "حاول مرة أخرى" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "تشغيل وضع الخبير" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "وصل UNI" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "تمثل رموز UNI حصص التصويت في حوكمة Uniswap. يمكنك التصويت على كل اقتراح بنفسك أو تفويض أصواتك لطرف ثالث." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} محروق" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "مطلوب رمز UNI-V2 LP. بمجرد إضافة السيولة إلى مجموعة {0}-{1} يمكنك الحصول على رموز السيولة الخاصة بك على هذه الصفحة." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI غير مطالب به" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "الرسوم غير المطالب بها" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "غير محدد" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "خطأ غير متوقع. لا يمكن تقدير الغاز للمبادلة." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "مشكلة غير متوقعة في تقدير الغاز. حاول مرة اخرى." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "إدارة Uniswitp" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "شروط خدمة Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap متاح في: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "حوكمة Uniswap متاحة فقط في الطبقة 1. قم بتبديل شبكتك إلى Ethereum Mainnet لعرض الاقتراحات والتصويت." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "تعدين سيولة Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "عقد ترحيل Uniswap ↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "مصدر مجهول" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "خطأ غير معروف{0}. حاول زيادة تحملك للانزلاق. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "فتح الأصوات" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "فتح التصويت" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "فتح الأصوات" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "الأصول غير المدعومة" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "الأصول غير المدعومة" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "بدون عنوان" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "قم بفك التفاف <0/> إلى {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "تحديث التفويض" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "قائمة التحديث" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "استخدم Uniswap Labs API للحصول على عروض أسعار أسرع." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "المستخدم" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 غير متوفر في الطبقة 2. قم بالتبديل إلى الطبقة الأولى من Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "سيولة V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "سعر V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "عرض الرسوم المتراكمة والتحليلات <0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "عرض القائمة" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "عرض على Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "عرض على Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "عرض المعاملة على Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "التصويت" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "التصويت ضد" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "التصويت لـ" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "التصويت ضد الاقتراح {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "التصويت ضد الاقتراح {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "التصويت ضد الاقتراح {proposalKey} مع السبب \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "التصويت لصالح الاقتراح {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "التصويت على الاقتراح {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "التصويت على الاقتراح {proposalKey} مع السبب \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "التصويت على الامتناع عن التصويت {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "التصويت للامتناع عن التصويت على الاقتراح {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "التصويت على الامتناع عن التصويت على الاقتراح {proposalKey} مع السبب \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "انتهى التصويت {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "التصويت ينتهي تقريبًا {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "يبدأ التصويت تقريبًا {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "في انتظار التأكيد" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "عنوان المحفظة أو اسم ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "المكافآت الأسبوعية" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "مرحبًا بكم في فريق Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "عندما تقوم بالمطالبة دون سحب السيولة الخاصة بك تبقى في مجموعة التعدين." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "عند الانسحاب، سوف يطالب العقد تلقائيًا بـ UNI نيابة عنك!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "عند الانسحاب، تتم المطالبة بـ UNI الخاص بك وإزالة السيولة الخاصة بك من مجموعة التعدين." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "سحب" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "السحب والمطالبة" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "سحب السيولة المودعة" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "سحب {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "سحب UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "التفاف" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "لف من <0/> إلى {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "شبكة خاطئة" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "لديك بالفعل اقتراح نشط أو معلق" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "أنت تقوم بإنشاء مجموعة" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "أنت أول موفر للسيولة لمجموعة Uniswap V3 هذا. ستنتقل السيولة الخاصة بك بسعر {0} الحالي." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "أنت أول موفر للسيولة." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "يمكنك إما أن تصوت على كل اقتراح بنفسك أو أن تفوض تصويتك إلى طرف ثالث." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "يمكنك الآن التداول {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "ليس لديك ما يكفي من الأصوات لتقديم اقتراح" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "ربما تكون قد فقدت اتصالك بالشبكة." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "قد تفكر في الانتظار حتى تنخفض رسوم الشبكة لإكمال هذه المعاملة." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "يجب عليك توصيل حساب." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "يجب عليك منح العقود الذكية لـ Uniswap الإذن لاستخدام {0}الخاص بك. يجب عليك القيام بذلك مرة واحدة فقط لكل رمز." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "يجب أن يكون لديك {formattedProposalThreshold} أصوات لتقديم اقتراح" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "يجب عليك إيداع السيولة فقط في Uniswap V3 بسعر تعتقد أنه صحيح. <0/>إذا بدا السعر غير صحيح، يمكنك إما مقايضة لتحريك السعر أو الانتظار حتى يقوم شخص آخر بذلك." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "سوف تحصل أيضا على الرسوم المكتسبة من هذه الوظيفة." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "سوف تستقبل" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "سيولة V2 الخاصة بك" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "ستظهر مراكز سيولة V3 النشطة الخاصة بك هنا." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "ودائع السيولة الخاصة بك" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "مشاركة المجموعة الخاصة بك:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "مركزك" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "مركزك لديه سيولة صفر، ولا يحصل على رسوم." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "سيظهر موقعك هنا." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "مركزك سيكون 100% مؤلفاً من {0} بهذا السعر" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "مركزك سيكون 100% {0} بهذا السعر." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "مركزك لن يكسب رسوماً أو يستخدم في التداول حتى ينتقل سعر السوق إلى نطاقك." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "مراكزك" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "معدلاتك" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "مجموع رموز المجموعة الخاصة بك:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "ستكون تكلفة معاملتك أعلى بكثير، حيث أنها تشمل الوقود لإنشاء المجموعة." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "قد تكون المعاملة الخاصة بك واجهة" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "قد تفشل معاملتك" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "سيتم إرجاع المعاملة الخاصة بك إذا كانت معلقة لأكثر من هذه الفترة الزمنية." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "سيتم عودة معاملتك إذا تغير السعر بشكل غير مؤات بأكثر من هذه النسبة." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "المعاملات الخاصة بك ستظهر هنا..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "UNI الخاص بك بدون مطالبة" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "بعد الانزلاق السعري" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "تأكيد" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "لـ {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "لديه رمز تعبيري جوارب" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "هنا." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // أو ipfs: // أو اسم ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "دقائق" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "عبر {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "عبر قائمة الرموز {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {استيراد رمز} other {استيراد رموز}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> لكل <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} رموز مخصصة" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} مودعة" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} رسوم مكتسبة:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} معلق" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / أسبوع" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} رموز UNI-V2 LP متاحة" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} أصوات" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} لكل {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} رموز" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} السعر:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • أضيفت من قبل المستخدم" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}٪ فئة الرسوم" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}٪ تجمع" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}٪ حدد" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} تعدين السيولة" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} رموز LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} توكينز" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} جسر رمزي" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} لكل {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← العودة إلى نظرة عامة على المجموعات" - diff --git a/src/locales/ca-ES.po b/src/locales/ca-ES.po deleted file mode 100644 index f810c07ee8..0000000000 --- a/src/locales/ca-ES.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: ca_ES\n" -"Language-Team: Catalan\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: ca\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Veure a Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(esborra-ho tot)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(edita)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Elimina el destinatari" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / setmana" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Totes les propostes" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Vots" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Anàlisi del compte i comissions acumulades <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Preu actual: <1> <2 /> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Consell: L’eliminació de les fitxes de grup converteix la vostra posició en fitxes subjacents al ritme actual, proporcional a la vostra quota de grup. Les comissions acumulades estan incloses en els imports que rebeu." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Consell: Seleccioneu una acció i descriviu la vostra proposta per a la comunitat. La proposta no es pot modificar després de l’enviament, així que comproveu tota la informació abans d’enviar-la. El període de votació començarà immediatament i durarà 7 dies. Per proposar una acció personalitzada, <1> llegiu els documents ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Consell: Utilitzeu aquesta eina per trobar grups de v2 que no apareixen automàticament a la interfície." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Consell: Quan afegiu liquiditat, rebreu fitxes de grup que representin la vostra posició. Aquestes fitxes guanyen automàticament quotes proporcionals a la vostra quota de fons i es poden bescanviar en qualsevol moment." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Desbloqueja la votació per preparar la propera proposta." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Benvingut a l'equip Unicorn :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Per presentar les propostes es requereix un llindar mínim del 0,25% del subministrament total d’UNI" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Sobre" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Accepta" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Compte" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Actiu" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Afegeix" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Afegiu <0 /> i <1 /> a Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Afegeix delegat +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Afegiu liquiditat" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Afegiu liquiditat V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Afegiu liquiditat." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Afegiu més liquiditat" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Afegiu {0} a Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Afegir {0}-{1} liquiditat" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Afegir {0}/{1} liquiditat V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Afegit {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "L'adreça no té cap reclamació disponible" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "En contra" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Permet la migració de token LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Permet operacions amb alt impacte en els preus i ometre la pantalla de confirmació. Utilitzeu al vostre propi risc." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Permetre que el protocol Uniswap utilitzi el vostre {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Es permet" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Import" - -#: src/hooks/useSwapCallback.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." -msgstr "S'ha produït un error en intentar executar aquest intercanvi. És possible que hàgiu d'augmentar la tolerància a la relliscada. Si això no funciona, és possible que hi hagi una incompatibilitat amb el testimoni que esteu negociant. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Aprovar" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Aprova el testimoni" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Aprova {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Aprovat" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Aprovant" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "S’aprova {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscà" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Pont Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "L’àrbitre és en versió beta i pot experimentar temps d’inactivitat. Durant el temps d'inactivitat, la vostra posició no generarà comissions i no podreu eliminar la liquiditat. <0> Llegiu-ne més." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "N'esteu segurs?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Com a membre de la comunitat Uniswap, podeu reclamar que UNI s'utilitzi per votar i governar. <0/> <1/> <2> Llegiu més sobre UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Com a mínim {0} {1} i {2} {3} seran reemborsats a la cartera a causa de l'interval de preus seleccionat." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automàtic" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponible per ingressar: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Balanç: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "El millor per a parells exòtics." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "El millor per a la majoria de parells." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "El millor per a parells estables." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "El millor per a parelles molt estables." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "La ruta al millor preu costa ~{formattedGasPriceString} en gasolina." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Adreça bloquejada" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Pont" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Si afegiu liquiditat, guanyareu el 0,3% de totes les operacions d’aquest parell proporcional a la vostra quota de grup. Les comissions s’afegeixen al grup, s’acumulen en temps real i es poden reclamar retirant la vostra liquiditat." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "En connectar una cartera, acceptes les Condicions del servei <0> i reconeixes que has llegit i entén l'exempció <1>responsabilitat del protocol d'." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Cancel·lat" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Canvi" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Gràfics" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Comproveu l'estat de la xarxa" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Consulteu les nostres guies de migració i tutorial v3 LP." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Reclamació" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Reclameu <0 /> per {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Reclamació UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Reclama la fitxa UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Reclameu la recompensa UNI per {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Taxes de reclamació" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Reclameu les vostres fitxes UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Reclamat" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Reclamat UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Reclamat!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Reclamant" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Reclamant UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Reclamant {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Esborra-ho tot" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Esborra-ho tot" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Tanca" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Tancat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Cobra" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Cobra com a WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Cobra les taxes" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Recollir {0}/{1} honoraris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Cobrat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Cobrant" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Cobrament de taxes" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Les taxes de cobrament us retiraran les taxes disponibles actualment." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Confirmeu" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Confirmeu el subministrament" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Confirmeu l'intercanvi" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Confirmeu aquesta transacció a la vostra cartera" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Confirmeu la transacció a la cartera" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Connect Wallet" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Connecteu una cartera" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Connecteu-vos a una cartera per trobar piscines" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Connecteu-vos a una cartera per veure la vostra liquiditat V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Connecteu-vos a una cartera per veure la vostra liquiditat." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Connectat amb {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copiat" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copia l'adreça" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Crea grup i subministrament" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Crea una proposta" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Crea un parell" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Crea un grup" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Creeu un problema a GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Crea fons i afegeix {0}/{1} liquiditat V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Crea un grup." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Crear {0}/{1} piscina V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Preu actual" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Preu actual {0}" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema fosc" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Derrotat" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Vots delegats" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegar el poder de vot a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegat a:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegar vots" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Dipòsit" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Quantitats de dipòsit" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Dipositeu fitxes LP UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Dipòsit de liquiditat" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Diposita fitxes a la xarxa {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Dipositeu les vostres fitxes de proveïdor de liquiditat per rebre UNI, la fitxa de governança del protocol Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Liquiditat dipositada:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Dipositat {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Dipòsit de liquiditat" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Descripció" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detallada" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detalls" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Desconnecta" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discòrdia" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Destitueix" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documents" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "No veieu cap de les vostres posicions v2? <0> Importeu-la." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Les fitxes UNI obtingudes representen accions de vot en la governança Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Edita" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Comparació de l’eficiència" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Introduïu un percentatge" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Introduïu un destinatari" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Introduïu un percentatge de lliscament vàlid" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Introduïu una adreça per activar una reclamació UNI. Si l'adreça té alguna UNI que es pugui reclamar, se'ls enviarà en l'enviament." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Introduïu un import" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Introduïu la ubicació vàlida de la llista" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Introduïu una adreça de fitxa vàlida" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Introduïu {0} import" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Error" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Error de connexió" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Error de connexió. Proveu d'actualitzar la pàgina." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Error en importar la llista" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "L'estimació pot variar a causa de la configuració de gas de la cartera" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Tarifa estimada de la xarxa" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Executat" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Mode expert" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "El mode expert desactiva la sol·licitud de confirmació de la transacció i permet operacions amb altes relliscades que sovint resulten en males taxes i en la pèrdua de fons." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Caducat" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Exploreu Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "No s'ha pogut canviar de xarxa des de la interfície Uniswap. Per utilitzar Uniswap a {0}, heu de canviar la xarxa de la vostra cartera." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Nivell de tarifa" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Nivell de tarifa" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Buscant el millor preu..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Per a" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Per a cada grup que es mostra a continuació, feu clic a Migra per eliminar la liquiditat d'Uniswap V2 i dipositar-la a Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Des de" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "De (com a màxim)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Gamma completa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Les posicions de rang complet poden guanyar menys comissions que les posicions concentrades. Obteniu més informació <0> aquí ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Obteniu assistència a Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centre d'ajuda" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Amaga" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Amaga les posicions tancades" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Alt impacte en els preus" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Com aquesta aplicació utilitza les API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Entenc" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Si adquiriu un testimoni d’aquesta llista, és possible que no el pugueu tornar a vendre." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importar" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importa la llista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importa el grup" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importa l'agrupació V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importa al vostre propi risc" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Dins del rang" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Augmenta la liquiditat" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Preus inicials i quota de grup" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "S'està inicialitzant..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "S’estima l’entrada. Vindràs com a màxim <0>{0} {1} o la transacció es revertirà." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Instal·leu Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Liquiditat insuficient per a aquest comerç." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insuficient" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Configuració de la interfície" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Parella no vàlida" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Parella no vàlida." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Entrada de preu no vàlida" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "L'interval no és vàlid. El preu mínim ha de ser inferior al preu màxim." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Destinatari no vàlid" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Llenguatge" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Aprendre" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Obteniu informació sobre com proporcionar liquiditat" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Aprèn més" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Legal i Privacitat" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema de la llum" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquiditat" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "No hi ha dades de liquiditat disponibles." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Recompenses del proveïdor de liquiditat" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Els proveïdors de liquiditat guanyen una comissió del 0,3% en tots els negocis proporcional a la seva quota de grup. Les comissions s’afegeixen al fons, s’acumulen en temps real i es poden reclamar retirant la vostra liquiditat." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Llistes" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Carregat" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "S'està carregant" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gestiona" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gestioneu la liquiditat al grup de recompenses" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Gestiona les llistes de fitxes" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Gestioneu aquest fons." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Màx" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Preu màxim" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Preu màxim" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Màx.:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Màxim enviat" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menú" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrar" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migreu la liquiditat a la V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrar la liquiditat V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migreu les vostres fitxes de liquiditat des d'Uniswap V2 a Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrate {0}/{1} liquiditat a V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrant" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Preu mínim" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Preu mínim" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Mínim rebut" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Falten dependències" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Més" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Tarifa de xarxa" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Advertiment de xarxa" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Les tarifes de la xarxa superen el 50% de l'import de l'intercanvi!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nova posició" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "No s'ha trobat cap liquiditat V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "No hi ha cap grup actiu" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "No hi ha informació" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Sense descripció." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "No s'ha trobat cap liquiditat." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "No s'ha trobat cap grup." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "No s'ha trobat cap proposta." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Sense resultats." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "No creat" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "DESACTIVAT" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ACTIVAT" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ÚTILITZEU AQUEST MODE NOMÉS SI SABEU EL QUE FEREU." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Desactivat" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Encès" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Quan estigueu satisfet amb la tarifa, feu clic a Subministrament per revisar-la." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Només es poden votar els vots UNI que s’autodelegaven o delegaven a una altra direcció abans del bloc {0}." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Vaja! S'ha produït un error desconegut. Actualitzeu la pàgina o visiteu-la des d’un altre navegador o dispositiu." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "L'optimisme està en versió beta i pot experimentar temps d'inactivitat. L'optimisme espera un temps d'inactivitat previst per actualitzar la xarxa en un futur proper. Durant el temps d'inactivitat, la vostra posició no guanyarà comissions i no podreu eliminar liquiditat. <0>Llegeix més." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan optimista" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Fora de rang" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "S’estima la producció. Si el preu canvia més del {0}%, la vostra transacció es revertirà." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "S’estima la producció. Rebrà com a mínim <0>{0} {1} o la transacció es revertirà." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "La sortida s’enviarà a <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Propietari" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Grups participants" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Pendents" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Confirmeu que voleu eliminar aquesta llista escrivint ELIMINA" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Connecteu-vos a la capa 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Connecteu-vos a la xarxa Ethereum adequada." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Escriviu la paraula \"{confirmWord}\" per habilitar el mode expert." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Pont del polígon" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Grup" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Grup trobat!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tarifa de grup" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tarifa de grup" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Fitxes de grup al grup de recompenses:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Agrupat {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Visió general dels grups" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Vista prèvia" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Preu" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Diferència de preu:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impacte en els preus" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "L’impacte en el preu és massa alt" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Preu actualitzat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Gamma de preus" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Preu:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Preus i quota de grup" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Proposta enviada" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Títol de la proposta" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propostes" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Les propostes enviades pels membres de la comunitat apareixeran aquí." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Acció proposada" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Proponent" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Exempció de responsabilitat del protocol" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "En cua" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tarifes" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Llegiu més sobre UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Llegiu més sobre la governança Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Obteniu més informació sobre com proporcionar liquiditat" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Obteniu més informació sobre els recursos no compatibles" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Transaccions recents" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Destinatari" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Elimina" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Traieu <0 /> i <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Elimina la quantitat" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Elimina delegat" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Elimina la liquiditat" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Elimina la llista" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Eliminació de {0} {1} i {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Eliminació de {0} {1} i{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Sol·licitud de característiques" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Torna" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Cerqueu el nom o enganxeu l'adreça" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Seleccioneu Parella" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Seleccioneu una xarxa" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Seleccioneu una fitxa" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Seleccioneu una fitxa per trobar la vostra liquiditat v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Seleccioneu una acció" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Interval seleccionat" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Auto" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Autodelegat" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Estableix l'interval de preus" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Estableix el preu inicial" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Quota de grup" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Quota de grup:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Mostra Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Mostra posicions tancades" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Senzill" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolerància al lliscament" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Alguns recursos no estan disponibles a través d’aquesta interfície perquè és possible que no funcionin bé amb els contractes intel·ligents o no podem permetre la negociació per motius legals." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Alguna cosa ha anat malament" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Pas 1. Obteniu fitxes de liquiditat UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Envieu una nova proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Enviament de la proposta" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Enviament de vot" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Ha tingut èxit" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Èxit" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Subministrament" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Subministrant {0} {1} i {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Intercanvi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Canvieu <0 /> per <1 /> exactament" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Intercanviar de totes maneres" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Canvieu exactament <0 /> per <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Ha fallat l'intercanvi: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Intercanvi de {0} {1} per {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Gràcies per formar part de la comunitat Uniswap <0 />" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "El% que obtindreu en honoraris." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "L'invariant Uniswap x * y = k no va quedar satisfet per l'intercanvi. Normalment, això significa que un de les fitxes que canvieu incorpora un comportament personalitzat en la transferència." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "L'aplicació obté dades de blockchain del servei allotjat de The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "L'aplicació obté dades en cadena i crea trucades de contracte amb una API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "L'aplicació obté la ruta comercial òptima des d'un servidor d'Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "L'aplicació registra estadístiques d'ús anònimes per tal de millorar amb el temps." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "L'aplicació recopila de manera segura l'adreça de la cartera i la comparteix amb TRM Labs Inc. per motius de risc i compliment." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "El cost d'enviar aquesta transacció és més de la meitat del valor de l'import d'entrada." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "La quantitat actual de gas ràpid per enviar una transacció a L1. Les tarifes del gas es paguen en la moneda nativa d'Ethereum, Ether (ETH) i estan denominades en GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "La diferència estimada entre els valors en USD dels imports d'entrada i sortida." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "La fitxa d’entrada no es pot transferir. Pot haver-hi un problema amb la fitxa d’entrada." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "El preu de mercat està fora de l’interval de preus especificat. Només dipòsit d'un actiu únic." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "El número de bloc més recent d'aquesta xarxa. Actualització de preus a cada bloc." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "La fitxa de sortida no es pot transferir. Pot haver-hi un problema amb la fitxa de sortida." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "El testimoni de sortida no es pot transferir. Pot haver-hi un problema amb el testimoni de sortida. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "El preu d'aquest grup està fora de l'interval seleccionat. Actualment, la vostra posició no cobra comissions." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "El preu d'aquest grup està dins de l'interval seleccionat. Actualment, la vostra posició està cobrant comissions." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "La proporció de fitxes que afegiu fixarà el preu d’aquest grup." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "No s'ha pogut enviar la transacció perquè s'ha acabat el termini. Comproveu que el termini de transacció no sigui massa baix." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "No hi ha dades de liquiditat." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Aquesta aplicació utilitza les següents API de tercers:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Aquest grup s’ha d’inicialitzar abans d’afegir liquiditat. Per inicialitzar, seleccioneu un preu inicial per a la piscina. A continuació, introduïu l'interval de preus de liquiditat i l'import del dipòsit. Les comissions de gas seran superiors a l'habitual a causa de la transacció d'inicialització." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Aquesta ruta optimitza la producció total tenint en compte les rutes dividides, els salts múltiples i el cost del gas de cada pas." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Aquesta eina migrarà de manera segura la vostra {0} a V3. El procés és completament desconfiat gràcies a" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Aquesta transacció no tindrà èxit a causa del moviment dels preus. Proveu d'augmentar la tolerància al lliscament. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Aquesta transacció no tindrà èxit a causa del moviment de preus o de la comissió de transferència. Proveu d'augmentar la tolerància al lliscament." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Consell: les fitxes personalitzades s’emmagatzemen localment al navegador" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Per a" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "A (com a mínim)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "El testimoni no és compatible" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Fitxes" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total dipositat" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Dipòsits totals" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Ruta del comerç" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Configuració de transaccions" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transacció enviada" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transacció finalitzada el" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Termini de transacció" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "S'ha rebutjat la transacció." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Transferir el testimoni" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Torna-ho a provar" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Activeu el mode expert" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "Ha arribat UNI" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Les fitxesUNI representen accions de vot en el govern Uniswap. Podeu votar vosaltres cada proposta o delegar els vostres vots a un tercer." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Cremat" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Calen tokens LP UNI-V2. Un cop hàgiu afegit liquiditat a l' {0}-{1} , podeu apostar per les vostres fitxes de liquiditat en aquesta pàgina." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI no reclamada" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Tarifes no reclamades" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Sense determinar" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Error inesperat. No s'ha pogut estimar el gas per a l'intercanvi." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema inesperat en estimar el gas. Siusplau torna-ho a provar." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Governança Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Condicions del servei d'Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponible a: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "La governança Uniswap només està disponible a la capa 1. Canvieu la vostra xarxa a Ethereum Mainnet per veure les propostes i votar." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Mineria de liquiditat Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Contracte de migració Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Font desconeguda" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Error desconegut{0}. Proveu d'augmentar la tolerància al lliscament. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Desbloqueja vots" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Desbloqueja les votacions" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Desbloqueig de vots" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Recurs no admès" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Actius no admesos" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Sense títol" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Desembolicar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Desembolica de <0/> a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Actualitza la delegació" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Actualitza la llista" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Utilitzeu l'API d'Uniswap Labs per obtenir pressupostos més ràpids." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Usuari" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 no està disponible a la capa 2. Canvia a Ethereum de la capa 1." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Liquiditat V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Preu:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Consulteu els honoraris i les taxes acumulades <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Veure llista" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Veure a Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Veure a Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Veure la transacció a Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Vota" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Vota en contra" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Vota per" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Vota contra la proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Vota contra la proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vota contra la proposta {proposalKey} amb el motiu \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Vota la proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Vota la proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Voteu la proposta {proposalKey} amb el motiu \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Voteu per abstenir-vos de la proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Voteu per abstenir-vos de la proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Voteu l'abstenció de la proposta {proposalKey} amb el motiu \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "La votació ha finalitzat {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "La votació finalitza aproximadament {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "La votació comença aproximadament a {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Esperant la confirmació" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Adreça de cartera o nom ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Recompenses setmanals" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Benvingut a l'equip Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Quan reclameu sense retirar la vostra liquiditat, es manté al grup miner." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Quan es retiri, el contracte reclamarà automàticament UNI en nom vostre." - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Quan es retira, es reclama la seva UNI i s’elimina la seva liquiditat del grup miner." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Retirar" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Retirar i reclamar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Retirar la liquiditat dipositada" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Retirant {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Va retirar UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Embolicar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Embolcalla de <0/> a {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Xarxa incorrecta" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Ja teniu una proposta activa o pendent" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Esteu creant un grup" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Sou el primer proveïdor de liquiditat d’aquest grup Uniswap V3. La vostra liquiditat migrarà al preu {0}" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Sou el primer proveïdor de liquiditat." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Podeu votar vosaltres cada proposta o delegar els vostres vots a un tercer." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Ara podeu canviar {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "No teniu prou vots per enviar una proposta" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Encara no teniu liquiditat en aquest grup." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Us recomanem que espereu fins que baixin les tarifes de la xarxa per completar aquesta transacció." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Heu de connectar un compte." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Heu de donar permís als contractes intel·ligents Uniswap per utilitzar el vostre {0}. Només heu de fer-ho una vegada per fitxa." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Heu de tenir {formattedProposalThreshold} vots per enviar una proposta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Només heu de dipositar liquiditat a Uniswap V3 a un preu que creieu correcte. <0/> Si el preu sembla incorrecte, podeu canviar el preu o esperar que algú ho faci." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "També cobrarà els honoraris obtinguts per aquesta posició." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Rebreu" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "La vostra liquiditat V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Les vostres posicions de liquiditat V3 actives apareixeran aquí." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Els vostres dipòsits de liquiditat" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "La vostra quota compartida:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "La vostra posició" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "La vostra posició té 0 liquiditat i no cobra comissions." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "La vostra posició apareixerà aquí." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "La vostra posició serà 100% composta per {0} a aquest preu" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "La vostra posició serà del 100% {0} a aquest preu." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "La vostra posició no guanyarà comissions ni s’utilitzarà en operacions fins que el preu de mercat no passi al vostre rang." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Les vostres posicions" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "La vostra tarifa" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "El vostre total de fitxes de grup:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "El cost de la vostra transacció serà molt més elevat, ja que inclou el gas per crear la piscina." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "La vostra transacció pot ser inicial" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "La vostra transacció pot fallar" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "La vostra transacció es revertirà si està pendent durant més d’aquest període de temps." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "La vostra transacció es revertirà si el preu canvia desfavorablement en més d’aquest percentatge." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Les vostres transaccions apareixeran aquí..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "La vostra UNI no reclamada" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "després del lliscament" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "confirmar" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "per a {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "té emoji de mitjons" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "aquí." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // o ipfs: // o nom ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuts" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "mitjançant {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "mitjançant la llista de tokens {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importa el testimoni.} other {Importeu fitxes.}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Fitxes personalitzades" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Dipositat" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Comissions guanyades:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Pendent" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / setmana" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} fitxes UNI-V2 LP disponibles" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} vVots" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} fitxes" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Preu:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Afegit per l'usuari" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Nivell de quota del {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% piscina" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "Selecció del {0}" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Mineria de liquiditat" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Tokens" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} fitxes" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} pont de fitxes" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Torna a la descripció general dels grups" - diff --git a/src/locales/cs-CZ.po b/src/locales/cs-CZ.po deleted file mode 100644 index 8c9ca82435..0000000000 --- a/src/locales/cs-CZ.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: cs_CZ\n" -"Language-Team: Czech\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: cs\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Zobrazit v Průzkumníkovi)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(vyprázdnit vše)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(upravit)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Odebrat příjemce" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / týden" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Všechny návrhy" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> hlasů" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Analýza účtu a naběhlé poplatky<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Aktuální cena: <1> <2 /> <3>{0} za {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Tip: Odstranění žetonů fondu převede Vaši pozici zpět na základní žetony při aktuální sazbě, úměrně Vašemu podílu na fondu. Do částek, které obdržíte, jsou zahrnuty naběhlé poplatky." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Tip: Vyberte akci a popište svůj návrh pro komunitu. Po odeslání nelze nabídku upravit, proto prosím před odesláním ověřte všechny informace. Hlasovací období začne okamžitě a bude trvat 7 dní. Chcete-li navrhnout vlastní akci, přečtěte si <1> dokumenty ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Tip: Pomocí tohoto nástroje můžete najít fondy v2, které se v rozhraní nezobrazí automaticky." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Tip: Když přidáte likviditu, obdržíte žetony fondu reprezentující Vaši pozici. Tyto žetony automaticky vynášejí poplatky úměrně Vašemu podílu na fondu a kdykoli je lze vykoupit." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Odblokujte hlasování, abyste se mohli připravit na další návrh." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Vítejte v týmu Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "K podání návrhů je nutná minimální hranice 0,25% z celkové nabídky UNI" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "O aplikaci" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Přijmout" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Účet" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktivní" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Přidat" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Přidejte <0/> a <1/> do Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Přidat delegáta +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Přidat likviditu" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Přidat likviditu V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Přidat likviditu." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Přidejte více likvidity" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Přidat {0} do metamasky <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Přidat likviditu {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Přidat likviditu V3 {0}/{1}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Přidáno {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adresa nemá žádný dostupný nárok" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Proti" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Povolit migraci žetonů LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Povolit obchody s vysokým dopadem na cenu a přeskočit obrazovku s potvrzením. Používejte na vlastní nebezpečí." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Povolit protokolu Uniswap používat váš {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Povoleno" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Částka" - -#: src/hooks/useSwapCallback.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." -msgstr "Při pokusu o provedení tohoto swapu došlo k chybě. Možná budete muset zvýšit toleranci skluzu. Pokud to nefunguje, může dojít k nekompatibilitě s tokenem, s nímž obchodujete. Poznámka: Poplatky za tokeny za převody a rebase nejsou kompatibilní s Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Schválit" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Schválit token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Schválit {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Schváleno" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Schvalování" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Schvalování {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum Bridge" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum je ve verzi beta a může dojít k prostojům. Během odstávky nebude vaše pozice vydělávat poplatky a nebudete moci odstranit likviditu. <0> Přečtěte si více." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Jste si jisti?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Jako člen komunity Uniswap si můžete nárokovat UNI k použití při hlasování a správě věcí veřejných.<0/><1/><2>Přečtěte si více o UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Alespoň {0} {1} a {2} {3} budou kvůli vybranému cenovému rozpětí vráceny do Vaší peněženky." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automaticky" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "K dispozici k uložení: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Zůstatek: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Nejlepší pro exotické páry." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Nejlepší pro většinu párů." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Nejlepší pro stabilní páry." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Nejlepší pro velmi stabilní páry." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Nejlepší cena trasy stojí ~{formattedGasPriceString} v plynu." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Blokovaná adresa" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Most" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Přidáním likvidity získáte 0,3 % všech obchodů na tomto páru úměrně k vašemu podílu na fondu. K fondu budou přičítány poplatky, nabíhají v reálném čase a lze si je nárokovat výběrem likvidity." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Připojením peněženky souhlasíte s <0>podmínkami služby a potvrzujete, že jste si přečetli a rozumíte prohlášení o vyloučení odpovědnosti za protokol <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Zrušeno" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Změnit" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafy" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Zkontrolujte stav sítě" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Podívejte se na naše průvodce v3 LP a migrační průvodce." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Nárokovat" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Získejte <0/> za {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Nárokovat si UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Nárokujte si žeton UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Získejte odměnu UNI za {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Poplatky za nárokování" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Nárokujte si své žetony UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Nárokováno" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Nárokováno UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Nárokováno!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Nárokování" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Nárokování UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Nárokování {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Vymazat vše" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Vymazat vše" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Zavřít" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Zavřeno" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Sbírat" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Sbírat jako WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Pobírat poplatky" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Sbírejte {0}/{1} poplatky" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Vybráno" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Vybírání" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Vybírání poplatků" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Výběr poplatků Vám vybere aktuálně dostupné poplatky." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Potvrdit" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Potvrdit zásobu" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Potvrdit výměnu" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Potvrďte tuto transakci ve své peněžence" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Potvrďte transakci v peněžence" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Připojit peněženku" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Připojit peněženku" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Chcete-li vyhledat fondy, připojte se k peněžence" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Chcete-li si zobrazit svou likviditu V2, připojte se k peněžence." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Chcete-li si zobrazit svou likviditu, připojte se k peněžence." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Propojeno s {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Zkopírováno" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Zkopírovat adresu" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Vytvořit fond a zásobu" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Vytvořit návrh" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Vytvořit pár" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Vytvořit fond" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Vytvořte problém na GitHubu" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Vytvořit fond a přidat likviditu V3 {0}/{1}" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Vytvořit fond." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Vytvoření {0}/{1} V3 bazén" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Aktuální cena" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Aktuální {0} cena:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tmavé téma" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Poražený" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegovat hlasy" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegujte hlasovací právo na {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegováno (komu):" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegování hlasů" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Vklad" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Vložit částky" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Uložit žetony UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Uložit likviditu" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Vložte tokeny do sítě {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Uložte své žetony poskytovatele likvidity, abyste dostali UNI, žeton správy protokolu Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Uložená likvidita:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Uloženo {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Probíhá ukládání likvidity" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Popis" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Podrobně" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Podrobnosti" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Odpojit" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Zamítnout" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumenty" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Nevidíte některou ze svých pozic v2? <0>Importujte ji." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Získané žetony UNI představují hlasovací podíly ve správě Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Upravit" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Porovnání efektivity" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Zadejte procento" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Zadejte příjemce" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Zadejte platné procento skluzu" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Chcete-li spustit nárokování UNI, zadejte adresu. Jestliže bude mít adresa nějaké nárokovatelné UNI, bude jim po odeslání posláno." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Zadejte částku" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Zadejte platnou polohu seznamu" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Zadejte platnou adresu žetonu" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Zadejte částku {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Chyba" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Chyba připojení" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Chyba připojení. Zkuste obnovit stránku." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Chyba importu seznamu" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Odhad se může lišit v závislosti na nastavení vaší peněženky" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Odhadovaný poplatek za síť" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Popraven" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Expertní režim" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Režim Expert vypne výzvu k potvrzení transakce a umožní obchody s velkým skluzem, které často vedou ke špatným kurzům a ztrátě finančních prostředků." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Vypršela" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Prozkoumejte Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Nepodařilo se přepnout sítě z rozhraní Uniswap. Abyste mohli používat Uniswap na {0}, musíte změnit síť ve své peněžence." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Úroveň poplatku" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Úroveň poplatku" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Načítání nejlepší ceny..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Pro" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Pro každý níže zobrazený fond klikněte na tlačítko migrovat, abyste mohli odstranit svou likviditu z Uniswap V2 a uložit ji do Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Od" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Od (nanejvýš)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Plný rozsah" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Pozice v celém rozsahu mohou vydělávat méně poplatků než koncentrované pozice. Více informací <0> zde ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Získejte podporu o Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centrum nápovědy" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Skrýt" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Skrýt zavřené pozice" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Vysoký dopad na cenu" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Jak tato aplikace používá rozhraní API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Rozumím" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Jestliže zakoupíte žeton z tohoto seznamu, možná ho nebudete moci zase prodat." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importovat" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importovat seznam" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importovat fond" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importovat fond V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importovat na vlastní riziko" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "V rozsahu" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Zvýšit likviditu" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Počáteční ceny a podíl na fondu" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inicializace..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Vstup je odhadnutý. Prodáte nejvýše <0>{0} {1} nebo se transakce vrátí." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Nainstalovat Metamasku" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Nedostatek likvidity pro tento obchod." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Nedostatečný zůstatek {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Nastavení rozhraní" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Neplatný pár" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Neplatný pár." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Neplatné zadání ceny" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Vybrán neplatný rozsah. Minimální cena musí být nižší než maximální cena." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Neplatný příjemce" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Jazyk" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Učit se" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Zjistěte více o poskytování likvidity" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Zjistěte více" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Právní otázky a soukromí" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Lehké téma" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likvidita" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Údaje o likviditě nejsou k dispozici." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Odměny poskytovatele likvidity" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Poskytovatelé likvidity získají poplatek 0,3 % ze všech obchodů úměrně svému podílu na fondu. K fondu budou přičítány poplatky, nabíhají v reálném čase a lze si je nárokovat výběrem likvidity." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Seznamy" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Načteno" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Načítání" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Spravovat" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Spravovat likviditu ve fondu odměn" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Spravovat seznamy žetonů" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Spravovat tento fond." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max." - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maximální cena" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maximální cena" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maximálně:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximum odeslané" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Jídelní lístek" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrovat" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrovat likviditu na V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrovat likviditu V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrujte své žetony likvidity z Uniswap V2 do Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrace {0}/{1} likvidity až V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrace" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Minimální cena" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimální cena" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Minimum:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum přijato" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Chybějící závislosti" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Více" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Síťový poplatek" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Varování sítě" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Síťové poplatky přesahují 50 % swapové částky!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nová pozice" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Nebyla nalezena likvidita V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Žádné aktivní fondy" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Žádná data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Bez popisu." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Nebyla nalezena žádná likvidita." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Nebyl nalezen žádný fond." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nebyly nalezeny žádné návrhy." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nebyly nalezeny žádné výsledky." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Není vytvořeno" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "VYPNUTO" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ZAPNUTO" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "TENTO REŽIM POUŽIJTE JEN TEHDY, JESTLIŽE VÍTE, CO DĚLÁTE." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Vypnuto" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Zapnuto" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Až budete spokojeni se sazbou, klikněte na zásobu pro kontrolu." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Způsobilé k hlasování jsou jen hlasy UNI, které byly delegovány sobě nebo delegovány na jinou adresu před blokem {0}." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Jejda! Došlo k neznámé chybě. Obnovte prosím stránku nebo ji navštivte z jiného prohlížeče nebo zařízení." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Brána optimismu" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimismus je v beta verzi a může dojít k výpadkům. Optimism očekává, že plánované odstávky upgradují síť v blízké budoucnosti. Během výpadku nebude vaše pozice vydělávat poplatky a nebudete moci odstranit likviditu. <0>Přečtěte si více." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistický Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Mimo rozsah" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Výstup je odhadnutý. Jestliže se cena změní o více než {0} %, Vaše transakce bude vzata zpět." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Výstup je odhadnutý. Obdržíte alespoň <0>{0} {1}, nebo bude transakce vzata zpět." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Výstup bude odeslán na <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Vlastník" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Zúčastněné fondy" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "čekající" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Potvrďte, že chcete tento seznam odstranit, zadáním ODSTRANIT" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Připojte se k Ethereu vrstvy 1" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Připojte se prosím k příslušné síti Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Pro povolení expertního režimu zadejte slovo \"{confirmWord}\"." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygonový most" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Fond" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Fond nalezen!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Sazba fondu" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Sazba fondu" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Žetony fondu ve fondu odměn:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Sestaveno do fondu {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Přehled fondů" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Náhled" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Cena" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Rozdíl v ceně:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Cenový dopad" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Příliš vysoký dopad ceny" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Cena byla aktualizována" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Cenové rozpětí" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Cena:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Ceny a podíl na trhu" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Návrh" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Návrh předložen" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Název návrhu" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Návrhy" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Zde se budou zobrazovat návrhy předkládané členy komunity." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Navrhovaná akce" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Navrhovatel" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Zřeknutí se odpovědnosti za protokol" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Ve frontě" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Sazby" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Přečtěte si více o UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Přečtěte si více o správě Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Přečtěte si více o poskytování likvidity" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Přečtěte si více o nepodporovaných aktivech" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Nedávné transakce" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Příjemce" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Odstranit" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Odstraňte <0/> a <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Odstranit částku" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Odstranit delegáta" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Odstranit likviditu" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Odstranit seznam" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Odstraňování {0} {1} a {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Odebírání {0} {1} a{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Vyžádejte si funkce" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Návrat" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Vyhledejte název nebo vložte adresu" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Vyberte možnost Párovat" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Vyberte síť" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Vyberte žeton" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Chcete-li najít svou likviditu v2, vyberte žeton." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Vyberte akci" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Vybraný rozsah" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Sám" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Sobě delegovat" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Nastavit cenové rozmezí" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Nastavit počáteční cenu" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Podíl na fondu" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Podíl na fondu:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Zobrazit Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Zobrazit uzavřené pozice" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Jednoduché" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolerance skluzu" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Některá aktiva nejsou přes toto rozhraní dostupná, protože nemusí dobře fungovat s chytrými smlouvami nebo z právních důvodů nejsme schopni povolit obchodování." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Něco je špatně" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Krok 1. Získejte žetony likvidity UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Odeslat nový návrh" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Podání návrhu" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Odesílání hlasů" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Uspěl" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Úspěch" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Zásoba" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Dodávání {0} {1} a {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Prohodit" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Vyměňte <0/> za přesně <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Přesto prohodit" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Vyměňte přesně <0/> za <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Výměna se nezdařila: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Výměna {0} {1} za {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Děkujeme, že jste součástí komunity Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Procento, které získáte na poplatcích." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Konstanta Uniswap x*y=k nebyla swapem splněna. To obvykle znamená, že jeden z žetonů, které prohazujete, zahrnuje vlastní chování při přenosu." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Aplikace načítá data blockchainu z hostované služby The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Aplikace načítá data v řetězci a vytváří smluvní volání pomocí Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Aplikace načte optimální obchodní cestu ze serveru Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Aplikace zaznamenává anonymizované statistiky používání, aby se postupem času zlepšovala." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Aplikace bezpečně shromažďuje adresu vaší peněženky a sdílí ji s TRM Labs Inc. z důvodu rizika a dodržování předpisů." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Náklady na odeslání této transakce jsou více než polovina hodnoty vstupní částky." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Aktuální rychlé množství plynu pro odeslání transakce na L1. Poplatky za plyn jsou hrazeny v nativní měně Etherea (ETH) a denominovány v GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Odhadovaný rozdíl mezi hodnotami vstupů a výstupů v USD." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Vstupní žeton nelze přenést. Možná je se vstupním žetonem nějaký problém." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Tržní cena je mimo Vámi stanovené cenové rozmezí. Pouze vklad na jedno aktivum." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Poslední číslo bloku v této síti. Ceny se aktualizují na každém bloku." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Výstupní žeton nelze přenést. Možná je s výstupním žetonem nějaký problém." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Výstupní žeton nelze přenést. Může dojít k problému s výstupním žetonem. Poznámka: Poplatky za žetony za převody a rebase nejsou kompatibilní s Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Cena tohoto fondu je mimo Vámi vybrané rozmezí. Vaše pozice v současné době nevynáší poplatky." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Cena tohoto fondu je ve Vámi vybraném rozsahu. Vaše pozice nyní vynáší poplatky." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Cenu tohoto fondu stanoví poměr žetonů, které přidáte." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Transakci nebylo možno odeslat, protože uplynula lhůta. Zkontrolujte, zda není Vaše lhůta pro transakce příliš krátká." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Neexistují žádné údaje o likviditě." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Tato aplikace používá následující rozhraní API třetích stran:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Tento fond musí být inicializován, než budete moci přidat likviditu. Chcete-li inicializovat, vyberte počáteční cenu fondu. Poté zadejte rozsah cen likvidity a částku vkladu. Poplatky za plyn budou kvůli inicializační transakci vyšší než obvykle." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Tato trasa optimalizuje váš celkový výkon zohledněním rozdělených tras, více skoků a nákladů na plyn v každém kroku." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Tento token není podporován v aplikaci Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Tento nástroj bezpečně migruje vaši {0} likviditu do V3. Proces je zcela bez důvěry, a to díky" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Tato transakce nebude úspěšná z důvodu cenového pohybu. Zkuste zvýšit toleranci skluzu. Poznámka: Poplatky za žetony za převody a rebase nejsou kompatibilní s Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Tato transakce nebude úspěšná buďto z důvodu pohybu ceny, nebo z důvodu poplatku za převod. Zkuste zvýšit svou toleranci skluzu." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tip: Vlastní žetony jsou uloženy lokálně ve Vašem prohlížeči" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Do" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Do (alespoň)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token není podporován" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Žetony" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Celkem uloženo" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Vklady celkem" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Obchodní cesta" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Nastavení transakcí" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transakce odeslána" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transakce dokončena v" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Lhůta pro transakce" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transakce zamítnuta." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Přenosový token" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Zkusit znovu" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Zapnout režim Expert" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI dorazila" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Žetony UNI představují hlasovací podíly ve správě Uniswap. O každém návrhu můžete buďto hlasovat sami, nebo můžete delegovat své hlasy na nějakou třetí stranu." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} vypáleno" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Žetony UNI-V2 LP jsou povinné. Až přidáte likviditu do fondu {0}-{1}, můžete na této stránce uložit své žetony likvidity." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Nenárokované UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Nenárokované poplatky" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Neurčeno" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Neočekávaná chyba. Plyn pro výměnu se nepodařilo odhadnout." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Neočekávaný problém s odhadem plynu. Prosím zkuste to znovu." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Správa Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Podmínky služby Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap k dispozici za: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap governance je k dispozici pouze na vrstvě 1. Přepněte svou síť na síť Ethereum Mainnet a zobrazte návrhy a hlasování." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Těžba likvidity Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Migrační kontrakt Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Neznámý zdroj" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Neznámá chyba{0}. Zkuste zvýšit toleranci skluzu. Poznámka: Poplatky za žetony za převody a rebase nejsou kompatibilní s Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Odblokovat hlasy" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Odblokovat hlasování" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Odblokování hlasů" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Nepodporované aktivum" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Nepodporovaná aktiva" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Nepojmenovaná" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Rozbalit" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Rozbalte <0/> až {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Aktualizovat delegaci" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Aktualizovat seznam" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Pomocí rozhraní Uniswap Labs API získáte rychlejší nabídky." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Uživatel" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 není k dispozici na vrstvě 2. Přepněte na vrstvu 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Likvidita V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} cena:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Zobrazit naběhlé poplatky a analýzy<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Zobrazit seznam" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Pohled na Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Zobrazit v Průzkumníku" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Zobrazit transakci v Průzkumníku" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Hlasovat" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Hlasovat proti" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Hlasovat pro" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Hlasovat proti návrhu {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Hlasovat proti návrhu {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Hlasovat proti návrhu {proposalKey} s důvodem „{0}“" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Hlasovat pro návrh {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Hlasujte pro návrh {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Hlasujte pro návrh {proposalKey} s důvodem „{0}“" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Hlasujte, abyste se zdrželi hlasování o návrhu {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Hlasujte, abyste se zdrželi hlasování o návrhu {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Hlasujte, abyste se zdrželi hlasování o návrhu {proposalKey} s důvodem „{0}“" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Hlasování skončilo {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Hlasování končí přibližně v {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Hlasování začíná přibližně od {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Čeká se na potvrzení" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Adresa peněženky nebo název ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Týdenní odměny" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Vítejte v týmu Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Když budete nárokovat, aniž byste vybírali, vaše likvidita zůstává v těžebním fondu." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Když budete vybírat, smlouva bude automaticky nárokovat UNI ve váš prospěch!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Když budete vybírat, vaše UNI budou nárokovány a vaše likvidita bude odstraněna z těžebního fondu." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Vybrat" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Vybrat a nárokovat" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Vybrat uloženou likviditu" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Výběr {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 vybráno!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Zalomit" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Zabalit <0/> až {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Nesprávná síť" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Již máte aktivní nebo nevyřízenou nabídku" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Vytváříte fond" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Jste prvním poskytovatelem likvidity pro tento fond Uniswap V3. Vaše likvidita bude migrovat za aktuální cenu {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Jste prvním poskytovatelem likvidity." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Buď můžete o každém návrhu hlasovat sami, nebo můžete své hlasy delegovat na nějakou třetí stranu." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Nyní můžete obchodovat {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Nemáte dostatek hlasů k odeslání návrhu" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "V tomto fondu zatím nemáte likviditu." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Pro dokončení této transakce můžete zvážit vyčkávání, dokud síťové poplatky neklesnou." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Musíte připojit nějaký účet." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Musíte chytrým smlouvám Uniswap udělit oprávnění používat Vaše {0}. Toto musíte udělat pouze jednou pro každý žeton." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "K podání nabídky musíte mít {formattedProposalThreshold}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Likviditu byste měli do Uniswap V3 vložit pouze za cenu, o které si myslíte, že je správná. <0/>Jestliže Vám cena připadá nesprávná, můžete buď provést swap k přesunutí ceny, nebo počkat, až to udělá někdo jiný." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Budete také pobírat poplatky získané z této pozice." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Obdržíte" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Vaše likvidita V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Zde se zobrazí vaše aktivní pozice likvidity V3." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Vaše vklady likvidity" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Váš podíl na fondu:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Vaše pozice" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Vaše pozice má likviditu 0 a nevynáší poplatky." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Zde se zobrazí vaše pozice." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Vaše pozice bude stoprocentně složena z {0} při této ceně" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Vaše pozice bude 100% {0} za tuto cenu." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Vaše pozice nebude vynášet poplatky ani nebude použita v obchodech, dokud se tržní cena nepřesune do vašeho rozmezí." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Vaše pozice" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Váš kurz" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Celkový počet Vašich žetonů fondu:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Náklady na Vaši transakci náklady budou mnohem vyšší, protože budou zahrnovat benzín k vytvoření fondu." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Vaše transakce může být frontrun" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Vaše transakce může selhat" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Jestliže bude Vaše transakce nevyřízená déle než po toto časové období, bude vzata zpět." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Jestliže se cena nepříznivě změní o více, než o tuto procentní hodnotu, Vaše transakce bude vzata zpět." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Tady se budou zobrazovat vaše transakce..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Vaše nenárokované UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "po uklouznutí" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "potvrdit" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "pro {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "má emoji na ponožkách" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "tady." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// nebo ipfs:// nebo název ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuty" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "přes {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "prostřednictvím seznamu žetonů {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importovat žeton} other {Importovat žetony}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> za <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} vlastních žetonů" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} uloženo" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Získané poplatky:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} nevyřízených" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / týden" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} dostupných žetonů UNI-V2 LP" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} hlasů" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} za {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} žetonů" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} cena:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Přidáno uživatelem" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0} %" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Úroveň poplatku {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}%." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% vyberte" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "Těžba likvidity {0}-{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "LP NFT {0}/{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "Žetony LP {0}/{1} " - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} žetonů" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token bridge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} na {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Zpět na přehled fondů" - diff --git a/src/locales/da-DK.po b/src/locales/da-DK.po deleted file mode 100644 index c380de2835..0000000000 --- a/src/locales/da-DK.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: da_DK\n" -"Language-Team: Danish\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: da\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Vis på Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(ryd alle)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(rediger)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Fjern modtager" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / uge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Alle Forslag" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Stemmer" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Kontoanalyser og påløbne gebyrer<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Aktuel pris: <1> <2 /> <3>{0} pr. {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Tip: Fjernelse af puljetokens konverterer din position tilbage til underliggende tokens med den aktuelle sats, proportionalt med din andel af puljen. Påløbne gebyrer er inkluderet i de beløb, du modtager." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Tip: Vælg en handling, og beskriv dit forslag til samfundet. Forslaget kan ikke ændres efter indsendelse, så vær venlig at kontrollere alle oplysninger, inden de indsendes. Afstemningsperioden begynder straks og varer i 7 dage. Hvis du vil foreslå en brugerdefineret handling, skal du <1> læse dokumenterne ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Tip: Brug dette værktøj til at finde v2-puljer, der ikke automatisk vises i grænsefladen." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Tip: Når du tilføjer likviditet, vil du modtage puljetokens, som repræsenterer din position. Disse tokens optjener automatisk gebyrer, der er proportionale med din andel af puljen, og kan indløses til enhver tid." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Lås op for at stemmefor at forberede det næste forslag." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Velkommen til team Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "En minimumstærskel på 0,25% af den samlede UNI-forsyning kræves for at indsende forslag" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Om" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Accepter" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Konto" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktiv" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Tilføj" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Tilføj <0/> og <1/> til Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Tilføj delegeret +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Tilføj likviditet" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Tilføj V2-likviditet" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Tilføj likviditet." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Tilføj mere likviditet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Tilføj {0} til Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Tilføj {0}-{1} likviditet" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Tilføj {0}/{1} V3 likviditet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Tilføjet {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adresse har ingen tilgængelig krav" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Imod" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Tillad overførsel af LP-token" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Tillad høj pris påvirkning handler og springer over bekræftelsesskærmen. Brug på egen risiko." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Tillad Uniswap-protokollen at bruge din {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Tilladt" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Beløb" - -#: src/hooks/useSwapCallback.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." -msgstr "Der opstod en fejl under forsøg på at udføre denne swap. Det kan være nødvendigt at øge din glidningstolerance. Hvis det ikke virker, kan der være en uforenelighed med det token, du handler. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Godkend" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Godkend token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Godkend {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Godkendt" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Godkender" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Godkender {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum Bridge" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum er i Beta og kan opleve nedetid. I nedetid tjener din position ikke gebyrer, og du vil ikke være i stand til at fjerne likviditet. <0> Læs mere." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Som medlem af Uniswap-fællesskabet kan du kræve, at UNI skal bruges til afstemning og styring.<0/><1/><2>Læs mere om UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Mindst {0} {1} og {2} {3} vil blive refunderet til din tegnebog på grund af valgte prisklasse." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automatisk" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Tilgængelig for depositum: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Bedst for eksotiske par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Bedst for de fleste par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Bedst for stabile par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Bedst til meget stabile par." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Bedste pris rute koster ~{formattedGasPriceString} i gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Blokeret adresse" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Bro" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Ved at tilføje likviditet optjener du 0,3 % af alle handler på dette par proportionalt med din andel af puljen. Gebyrer tilføjes til puljen, tilfalder i realtid og kan hævdes ved at trække din likviditet tilbage." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Ved at tilslutte en tegnebog accepterer du Uniswap Labs' <0>Servicevilkår og anerkender, at du har læst og forstået Uniswap <1>Protocol Disclaimer." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Annulleret" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Skift" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Diagrammer" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Kontroller netværksstatus" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Tjek vores v3 LP-gennemgang og migrationsguider." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Gør krav på" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Gør krav på <0/> for {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Gør krav på UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Gør krav på UNI-token" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Gør krav på UNI -belønning for {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Gør krav på gebyrer" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Gør krav på dine UNI-tokens" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Gjort krav på" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Gjort krav på UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Påstod!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Gør krav" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Gør krav på UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Gør krav på {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Ryd alle" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Ryd alle" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Luk" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Lukket" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Indsaml" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Indsaml som WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Indsaml gebyrer" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Indsaml {0}/{1} gebyrer" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Indsamlet" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Indsamler" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Indsamler gebyrer" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Indsamling af gebyrer vil hæve aktuelt tilgængelige gebyrer for dig." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Bekræft" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Bekræft levering" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Bekræft skift" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Bekræft denne transaktion i din tegnebog" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Bekræft transaktion i tegnebogen" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Forbind tegnebog" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Forbind en tegnebog" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Opret forbindelse til en tegnebog for at finde puljer" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Opret forbindelse til en tegnebog for at se din V2-likviditet." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Opret forbindelse til en tegnebog for at se din likviditet." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Forbundet med {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopieret" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopiér adresse" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Opret pulje og forsyning" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Opret forslag" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Opret et par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Opret en pulje" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Opret et problem på GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Opret pulje, og tilføj {0}/{1} V3-likviditet" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Opret pulje." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Opret {0}/{1} V3 pool" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Nuværende pris" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Nuværende {0}-pris:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Mørkt tema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Besejret" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Uddelegér stemmer" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegere stemmeret til {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegeret til:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Uddelegerer stemmer" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Indbetaling" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Indbetalingsbeløb" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Indbetal UNI-V2 LP-tokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Indbetalingslikviditet" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Indbetal tokens til {label} netværket." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Indsæt dine likviditetsudbyder-tokens for at modtage UNI, Uniswap-protokolstyringstokenet." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Indbetalt likviditet:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Indbetalt {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Indbetalingslikviditet" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Beskrivelse" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detaljeret" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detaljer" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Afbryd" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Uenighed" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Afvis" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumenter" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Kan du ikke se en af dine v2-positioner? <0>Importér den." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Optjente UNI-tokens repræsenterer stemmeaktier i Uniswap governance." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Redigere" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Effektivitetssammenligning" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Indtast en procent" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Indtast en modtager" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Indtast en gyldig glideprocent" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Indtast en adresse for at udløse et UNI-krav. Hvis adressen har nogen UNI, der kan gøres krav på, vil den blive sendt til dem ved indsendelse." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Indtast et beløb" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Indtast gyldig listeplacering" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Indtast gyldig tokenadresse" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Indtast {0} beløb" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Fejl" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Fejl ved tilslutning" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Der opstod en fejl. Prøv at opdatere siden." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Fejl ved import af liste" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Estimatet kan variere på grund af dine pengepung-gasindstillinger" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Estimeret netværksgebyr" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Henrettet" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Ekspert tilstand" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Eksperttilstand slukker for bekræft transaktion-prompten og tillader høj slippage-handler, der ofte resulterer i dårlige satser og tabte midler." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Udløbet" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Udforsk Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Kunne ikke skifte netværk fra Uniswap-grænsefladen. For at bruge Uniswap på {0}skal du ændre netværket i din tegnebog." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Gebyrniveau" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Gebyrniveau" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Får den bedste pris..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Til" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "For hver pulje vist nedenfor skal du klikke på migrer for at fjerne din likviditet fra Uniswap V2 og indsætte den i Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Fra" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Fra (mest)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Hele udvalget" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Fuldtidsstillinger kan tjene mindre gebyrer end koncentrerede positioner. Lær mere <0> her ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Få support på Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Hjælpecenter" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Skjule" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Skjul lukkede positioner" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Høj prispåvirkning" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Hvordan denne app bruger API'er" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Jeg har forstået" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Hvis du køber et token fra denne liste, kan du muligvis ikke sælge det tilbage." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importér" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importeringsliste" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importeringspulje" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importer V2-pulje" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importer på egen risiko" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Indenfor intervallet" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Forøg likviditet" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Oprindelige priser og puljeaktie" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Initialiserer..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Input er estimeret. Du vil sælge ved højst <0>{0} {1} ellers vil transaktionen vende tilbage." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Installer Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Utilstrækkelig likviditet til denne handel." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Utilstrækkelig {0} saldo" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Grænsefladeindstillinger" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Ugyldigt par" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Ugyldigt par." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ugyldig prisinput" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Ugyldigt interval valgt. Minimumspris skal være lavere end den maksimale pris." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Ugyldig modtager" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Sprog" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Lær" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Lær om levering af likviditet" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Lær mere" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Juridisk og privatliv" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Let tema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likviditet" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likviditetsdata ikke tilgængelige." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Likviditetsudbyderbelønninger" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likviditetsudbydere optjener et gebyr på 0,3 % på alle handler i forhold til deres andel af puljen. Gebyrer tilføjes til puljen, tilfalder i realtid og kan kræves ved at trække din likviditet tilbage." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Lister" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Indlæst" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Indlæser" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAKS" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Administrer" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Administrer likviditet i belønningspuljen" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Administrer token-lister" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Administrer denne pulje." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maks." - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maks. pris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maks. pris" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maks:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksimum sendt" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrér" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrer likviditet til V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrer V2-likviditet" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrer dine likviditetstokens fra Uniswap V2 til Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrer {0}/{1} likviditet til V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrerer" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Min. pris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Min. pris" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum modtaget" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Manglende afhængigheder" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mere" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Netværksgebyr" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Netværksadvarsel" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Netværksgebyrer overstiger 50 % af byttebeløbet!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Ny position" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Ingen V2-likviditet fundet." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Ingen aktive puljer" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Ingen data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Ingen beskrivelse." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Ingen likviditet fundet." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Ingen pulje fundet." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Ingen forslag fundet." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Ingen resultater fundet." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Ikke oprettet" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "FRA" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "TIL" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "KUN BRUG DENNE TILSTAND, HVIS DU VED, HVAD DU LAVER." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Fra" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Til" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Når du er tilfreds med satsen, skal du klikke på forsyning for at gennemgå." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Kun UNI-stemmer, der blev selvdelegeret eller delegeret til en anden adresse før blok {0}, er berettiget til at stemme." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ups! Der opstod en ukendt fejl. Opdater siden, eller besøg fra en anden browser eller enhed." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimisme Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimisme er i Beta og kan opleve nedetid. Optimism forventer planlagt nedetid for at opgradere netværket i den nærmeste fremtid. Under nedetid vil din position ikke tjene gebyrer, og du vil ikke være i stand til at fjerne likviditet. <0>Læs mere." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistisk Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Ikke inden for rækkevidde" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Output er et estimat. Hvis prisen ændrer sig mere end {0} %, bliver din transaktion tilbageført." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Output er anslået. Du vil modtage mindst <0>{0} {1} ellers bliver din transaktion tilbageført." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Output vil blive sendt til <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Ejer" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Deltagende puljer" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Verserende" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Bekræft, at du vil fjerne denne liste ved at skrive REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Opret forbindelse til Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Opret forbindelse til det relevante Ethereum-netværk." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Skriv ordet \"{confirmWord}\" for at aktivere eksperttilstand." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygon bro" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscanning" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pulje" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pulje fundet!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Puljesats" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Puljesats" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Puljetokens i belønningspuljen:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Pulje {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Puljeoversigt" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Eksempel" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Pris" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Prisforskel:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Prispåvirkning" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Prispåvirkning for høj" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Pris opdateret" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Prisinterval" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Pris:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Priser og puljeandel" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Forslag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Forslag indsendt" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Forslagets titel" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Forslag" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Forslag indsendt af medlemmer af fællesskabet vil blive vist her." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Foreslået handling" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Forslagsstiller" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokol Ansvarsfraskrivelse" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "I kø" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Satser" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Læs mere om UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Læs mere om Uniswap governance" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Læs mere om at tilføre likviditet" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Læs mere om ikke-understøttede aktiver" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Seneste transaktioner" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Modtager" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Fjern" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Fjern <0/> og <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Fjern beløb" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Fjern delegeret" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Fjern likviditet" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Fjern liste" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Fjerner {0} {1} og {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Fjernelse af {0} {1} og{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Anmod om funktioner" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Retur" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Søg navn eller indsæt adresse" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Vælg Par" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Vælg et netværk" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Vælg et token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Vælg et token for at finde din v2-likviditet." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Vælg en handling" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Valgt område" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Selv" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Selvuddelegering" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Indstil prisinterval" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Indstil startpris" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Andel i pulje" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Andel i pulje:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Vis Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Vis lukkede positioner" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Simpel" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Glidningstolerance" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Nogle aktiver er ikke tilgængelige via denne grænseflade, fordi de måske ikke fungerer godt med de smarte kontrakter, eller vi er ikke i stand til at tillade handel af juridiske årsager." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Noget gik galt" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Trin 1. Få UNI-V2 Likviditetstokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Send nyt forslag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Indsender forslag" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Indsend Stemme" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Lykkedes" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Succes" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Forsyning" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Forsyning {0} {1} og {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Byt" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Skift <0/> for nøjagtigt <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Ombyt alligevel" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Skift nøjagtigt <0/> for <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Skift mislykkedes: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Byt {0} {1} til {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Tak, fordi du er en del af Uniswap-gruppen <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Den%, du tjener i gebyrer." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap-invarianten x * y = k var ikke tilfreds med byttet. Dette betyder normalt, at et af de tokens, du bytter, indeholder brugerdefineret adfærd ved overførsel." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Appen henter blockchain-data fra The Graphs hostede tjeneste." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Appen henter on-chain data og konstruerer kontraktopkald med en Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Appen henter den optimale handelsrute fra en Uniswap Labs-server." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Appen logger anonymiseret brugsstatistik for at forbedre sig over tid." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Appen indsamler sikkert din tegnebogsadresse og deler den med TRM Labs Inc. af risiko- og overholdelsesårsager." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Omkostningerne ved at sende denne transaktion er mere end halvdelen af værdien af det indtastede beløb." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Det aktuelle hurtiggasbeløb for at sende en transaktion på L1. Gasgebyrer betales i Ethereums oprindelige valuta Ether (ETH) og denomineret i GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Den estimerede forskel mellem USD-værdierne for input- og outputbeløb." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Input-token kan ikke overføres. Der kan være et problem med input-token." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Markedsprisen ligger uden for din angivne prisklasse. Kun enkeltindskud." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Det seneste bloknummer på dette netværk. Priserne opdateres på hver blok." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Output-token kan ikke overføres. Der kan være et problem med output-token." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Output-token kan ikke overføres. Der kan være et problem med output-token. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Prisen på denne pulje ligger uden for dit valgte område. Din position tjener ikke i øjeblikket gebyrer." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Prisen på denne pulje ligger inden for dit valgte interval. Din position tjener i øjeblikket gebyrer." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Forholdet mellem tokens du tilføjer, vil sætte prisen på denne pulje." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Transaktionen kunne ikke sendes, fordi fristen er udløbet. Kontroller, at din transaktionsfrist ikke er for lav." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Der er ingen likviditetsdata." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Denne app bruger følgende tredjeparts API'er:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Denne pulje skal initialiseres, før du kan tilføje likviditet. For at initialisere skal du vælge en startpris for puljen. Indtast derefter dit likviditetsprisklasse og indbetalingsbeløb. Gasafgifter vil være højere end normalt på grund af initialiseringstransaktionen." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Denne rute optimerer dit samlede output ved at overveje opdelte ruter, flere hop og gasomkostningerne for hvert trin." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Dette token understøttes ikke i Uniswap Labs-appen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Dette værktøj vil sikkert overføre din {0}-likviditet til V3. Processen er helt troværdig takket være" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Denne transaktion lykkes ikke på grund af prisbevægelse. Prøv at øge din glidningstolerance. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Denne transaktion lykkes ikke på grund af prisbevægelse eller gebyr ved overførsel. Prøv at øge din glidningstolerance." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tip: Brugerdefinerede tokens gemmes lokalt i din browser" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Til" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Til (mindst)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token understøttes ikke" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "I alt deponeret" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Indlån i alt" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Handelsrute" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Transaktionsindstillinger" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaktion indsendt" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaktion gennemført i" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Frist for transaktion" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaktionen blev afvist." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Overførselstoken" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Prøv igen" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Slå Eksperttilstand til" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI er ankommet" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI-tokens repræsenterer stemmeandele i Uniswap governance. Du kan selv stemme om hvert forslag eller uddelegere dine stemmer til en tredjepart." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} brændt" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP-tokens er påkrævet. Når du har tilføjet likviditet til {0}-{1} puljen, kan du satse dine likviditettokens på denne side." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI, der ikke er gjort krav på" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Gebyrer, der ikke er gjort krav på" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Ubestemt" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Uforventet fejl. Kunne ikke estimere gas til byttet." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Uventet problem med estimering af gassen. Prøv igen." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap Governance" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs' servicevilkår" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap tilgængelig i: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-styring er kun tilgængelig i lag 1. Skift dit netværk til Ethereum Mainnet for at se forslag og afstemning." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uiswap likviditetsmining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap migrationskontrakt↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Ukendt kilde" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ukendt fejl{0}. Prøv at øge din glidetolerance. Bemærk: gebyr ved overførsel og rebase -tokens er inkompatibelt med Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Lås op for stemmer" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Oplås afstemning" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Låse op for stemmer" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Ikke-understøttet aktiv" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Ikke-understøttede aktiver" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Unavngivet" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Pak ud" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Pak <0/> til {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Opdater delegation" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Opdater liste" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Brug Uniswap Labs API til at få hurtigere tilbud." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Bruger" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 er ikke tilgængelig på lag 2. Skift til lag 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2-likviditet" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0}-pris:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Se påløbne gebyrer og analyser<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Vis liste" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Se på Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Vis i Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Se transaktion i Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Stem" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Stem imod" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Stem på" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Stem imod forslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Stem imod forslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem imod forslag {proposalKey} med begrundelsen \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Stem på forslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Stem på forslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem på forslag {proposalKey} med begrundelsen \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Stem for at undlade at stemme om forslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Stem for at undlade at stemme om forslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem for at afstå fra forslag {proposalKey} med begrundelse \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Afstemning sluttede {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Afstemning slutter ca. {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Afstemningen starter cirka {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Afventer bekræftelse" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Wallet Address eller ENS-navn" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Ugentlige belønninger" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Velkommen til team Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Når du gør krav uden at trække dig tilbage, forbliver din likviditet i miningpuljen." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Når du hæver, vil kontrakten automatisk gøre krav på UNI på dine vegne!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Når du hæver, gøres der krav på din UNI, og din likviditet fjernes fra miningpuljen." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Hævning" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Udbetal & gør krav på" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Udbetal indskudt likviditet" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Udbetal {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Hæv UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Ombryd" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Ombryd <0/> til {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Forkert netværk" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Du har allerede et aktivt eller afventende forslag" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Du opretter en pulje" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Du er den første likviditetsudbyder til denne Uniswap V3-pulje. Din likviditet vil migrere til den aktuelle {0}-pris." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Du er den første likviditetsudbyder." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Du kan enten selv stemme om hvert enkelt forslag eller uddelegere dine stemmer til en tredjepart." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Du kan nu handle {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Du har ikke nok stemmer til at indsende et forslag" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Du har ikke likviditet i denne pulje endnu." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Du kan overveje at vente, indtil netværksgebyrerne falder, for at gennemføre denne transaktion." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Du skal forbinde en konto." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Du skal give Uniswap smart contracts tilladelse til at bruge din {0}. Du behøver kun at gøre dette én gang pr. token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Du skal have {formattedProposalThreshold} stemmer for at indsende et forslag" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Du bør kun indbetale likviditet til Uniswap V3 til en pris, du mener er korrekt. <0/>Hvis prisen synes forkert, kan du enten lave et bytte for at flytte prisen eller vente på, at en anden gør det." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Du vil også indsamle gebyrer optjent fra denne position." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Du vil modtage" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Din V2-likviditet" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Dine aktive V3-likviditetspositioner vises her." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Dine likviditetsindskud" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Din puljedeling:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Din position" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Din stilling har 0 likviditet, og tjener ikke gebyrer." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Din position vises her." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Din position vil være 100 % sammensat af {0} til denne pris" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Din position vil være 100 % {0} til denne pris." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Din position vil ikke optjene gebyrer eller blive brugt i handler, før markedsprisen bevæger sig ind i dit interval." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Dine positioner" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Din sats" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Dine samlede puljetokener:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Dine transaktionsomkostninger vil være meget højere, da det omfatter gas til at skabe puljen." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Din transaktion kan være frontrun" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Din transaktion kan mislykkes" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Din transaktion tilbageføres, hvis den afventer i mere end denne periode." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Din transaktion vil blive tilbageført, hvis prisen ændres ugunstigt med mere end denne procentdel." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Dine transaktioner vises her..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Din ikke-krævede UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "efter glidning" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "bekræft" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "for {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "har sokker-emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "her." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // eller ipfs: // eller ENS-navn" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minutter" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "via {0} token-liste" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importer token} other {Importer tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Brugerdefinerede tokens" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Indbetalt" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Gebyrer tjent:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Afventer" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / uge" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP-tokens tilgængelige" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Stemmer" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} pr. {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Pris:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Tilføjet af bruger" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0} %" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% gebyrniveau" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% pulje" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% vælg" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Likviditetsmining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP-tokens" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} poletter" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token bridge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider} %" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} pr. {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Tilbage til puljeoversigt" - diff --git a/src/locales/de-DE.po b/src/locales/de-DE.po deleted file mode 100644 index 673240217e..0000000000 --- a/src/locales/de-DE.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: de_DE\n" -"Language-Team: German\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: de\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Im Explorer anzeigen)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(alles löschen)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(bearbeiten)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Empfänger entfernen" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / Woche" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Alle Vorschläge" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Stimmen" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Kontoanalyse und eingenommene Gebühren<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Aktueller Preis:<1><2/> <3>{0} pro {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Tipp: Durch das Entfernen von Pool-Token wird Ihre Position zum aktuellen Kurs proportional zu Ihrem Anteil am Pool in die zugrunde liegenden Token umgewandelt. Eingenommene Gebühren sind in den Beträgen enthalten, die Sie erhalten." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Tipp: Wählen Sie eine Aktion aus und beschreiben Sie Ihren Antrag für die Community. Der Antrag kann nach der Einreichung nicht mehr geändert werden. Überprüfen Sie daher alle Informationen vor dem Einreichen. Die Abstimmungsperiode beginnt sofort und dauert 7 Tage. Um eine benutzerdefinierte Aktion vorzuschlagen, <1>lesen Sie die Dokumentation." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Tipp: Verwenden Sie dieses Tool, um v2-Pools zu finden, die nicht automatisch in der Benutzeroberfläche angezeigt werden." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Tipp: Wenn Sie Liquidität hinzufügen, erhalten Sie Pool-Token, die Ihre Position repräsentieren. Diese Token verdienen automatisch im Verhältnis zu Ihrem Anteil am Pool, und können jederzeit eingelöst werden." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Abstimmen freischalten um bereit zu sein für den nächsten Vorschlag." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Willkommen im Team Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Für das Einreichen von Anträgen ist eine Mindestschwelle von 0,25% des gesamten UNI-Angebots erforderlich" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Über" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Akzeptieren" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Konto" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktiv" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Hinzufügen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "<0/> und <1/> zu Uniswap V2 hinzufügen" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Delegierung hinzufügen +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Liquidität hinzufügen" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "V2 Liquidität hinzufügen" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Liquidität hinzufügen." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Mehr Liquidität hinzufügen" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "{0} zu Metamask hinzufügen <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "{0}-{1} Liquidität hinzufügen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "{0}/{1} V3 Liquidität hinzufügen" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0} hinzugefügt" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adresse hat keinen gültigen Anspruch" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Gegen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "LP-Token Migration erlauben" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Erlaube hohe Preisauswirkungen und überspringe den Bestätigungsbildschirm. Auf eigene Gefahr." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Erlaube dem Uniswap Protokoll, {0} zu verwenden" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Erlaubt" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Betrag" - -#: src/hooks/useSwapCallback.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." -msgstr "Beim Versuch, diesen Swap auszuführen, ist ein Fehler aufgetreten. Möglicherweise müssen Sie Ihre Schlupftoleranz erhöhen. Wenn dies nicht funktioniert, liegt möglicherweise eine Inkompatibilität mit dem Token vor, den Sie handeln. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Bestätigen" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Token genehmigen" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "{0} freischalten" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Bestätigt" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Bestätige" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Schalte {0} frei" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum-Brücke" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum befindet sich in der Beta-Phase und es kann zu Ausfallzeiten kommen. Während der Ausfallzeit werden für Ihre Position keine Gebühren erhoben und Sie können keine Liquidität entfernen. <0>Weiterlesen." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Sind Sie sicher?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Als Mitglied der Uniswap-Community können Sie UNI beantragen, dass für Abstimmungen verwendet wird.<0/><1/><2>Lesen Sie mehr über UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Mindestens {0} {1} und {2} {3} werden aufgrund des gewählten Preisbereichs in Ihre Wallet zurückerstattet." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Autom." - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto-Router-API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Zur Einlage verfügbar: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Guthaben: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Ideal für exotische Paare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Am besten für die meisten Paare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Am besten für stabile Paare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Am besten für sehr stabile Paare." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Die günstigste Route kostet ~{formattedGasPriceString} in Gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Gesperrte Adresse" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Brücke" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Durch das Hinzufügen von Liquidität verdienen Sie 0,3% aller Transaktionen an diesem Paar, proportional zu Ihrem Anteil am Pool. Diese Gebühren werden dem Pool zugerechnet, fallen in Echtzeit an und können durch Entfernen Ihrer Liquidität geltend gemacht werden." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Durch das Verbinden einer Brieftasche stimmen Sie den <0>Nutzungsbedingungen von und bestätigen, dass Sie den Haftungsausschluss für das Protokoll von <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Abgesagt" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Ändern" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Charts" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Netzwerkstatus prüfen" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Schauen Sie sich unsere v3 LP Einführung und die Hilfe zur Liquiditätsmigration an." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Einfordern" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Anspruch auf <0/> für {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "UNI einfordern" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "UNI Token einfordern" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Fordern Sie die UNI-Belohnung für {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Gebühren einfordern" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Fordern Sie Ihre UNI-Token ein" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Eingefordert" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI erhalten!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Behauptet!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Fordere ein" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Beziehe UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Fordere {0} UNI ein" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Alles löschen" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Alles löschen" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Schließen" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Geschlossen" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Beziehen" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Als WETH beziehen" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Gebühren beziehen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Sammle {0}/{1} Gebühren" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Eingezogen" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Ziehe ein" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Ziehe Gebühren ein" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Gebühren einziehen wird für Sie derzeit verfügbare Gebühren beziehen." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Bestätigen" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Angebot bestätigen" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Tausch bestätigen" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Diese Transaktion in Ihrer Wallet bestätigen" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Transaktion in Wallet bestätigen" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Wallet verbinden" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Eine Wallet verbinden" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Mit einer Wallet verbinden, um Pools zu finden" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Verbinden Sie sich mit einer Wallet, um Ihre V2-Liquidität anzuzeigen." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Verbinden Sie sich mit einer Wallet, um Ihre Liquidität anzuzeigen." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Verbunden mit {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopiert" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Adresse kopieren" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Pool erstellen & versorgen" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Vorschlag erstellen" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Paar erstellen" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Pool erstellen" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Ein Ticket auf GitHub eröffnen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Pool erstellen und {0}/{1} V3 Liquidität hinzufügen" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Pool erstellen." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "{0}/{1} V3-Pool erstellen" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Aktueller Preis" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Aktueller {0}-Preis:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Dunkles Design" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Verloren" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Abstimmungen delegieren" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Stimmrecht auf {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegiert an:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegiere Stimmrecht" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Einzahlung" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Betrag deponieren" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "UNI-V2 LP Token einzahlen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Liquidität einzahlen" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Hinterlegen Sie Token im {label} Netzwerk." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Deponieren Sie Ihre Liquiditäts-Provider Token um UNI zu erhalten, den Uniswap-Protokoll-Governance-Token." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Deponierte Liquidität:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "{0} UNI-V2 deponiert" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Liquidität einzahlen" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Beschreibung" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detailliert" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Details" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Verbindung trennen" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Verwerfen" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumentation" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Sie sehen eine Ihrer v2-Positionen nicht? <0>Importiere sie." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Erhaltene UNI-Token stellen Stimmbeteiligungen an der Uniswap-Governance dar." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Bearbeiten" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Effizienzvergleich" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Prozentsatz eingeben" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Empfänger eingeben" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Geben Sie einen gültigen Schlupf-Prozentsatz ein" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Geben Sie eine Adresse ein, um UNI einzufordern. Wenn die Adresse Anspruch auf UNI hat, wird es bei der Ausführung an sie gesendet." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Betrag eingeben" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Gültigen Listenort eingeben" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Gültige Token-Adresse eingeben" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "{0} Betrag eingeben" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Fehler" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Verbindungsfehler" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Verbindungsfehler. Versuchen Sie die Seite neu zu laden." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Fehler beim Import der Liste" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Schätzung kann aufgrund Ihrer Wallet-Gaseinstellungen abweichen" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Geschätzte Netzwerkgebühr" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Ausgeführt" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Expertenmodus" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Der Expertenmodus schaltet die Transaktions-Bestätigung aus und ermöglicht Transaktionen mit viel Schlupf, was zu schlechten Kursen und verlorenem Geld führen kann." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Verfallen" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Entdecken Sie Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Netzwerkwechsel über die Uniswap-Schnittstelle fehlgeschlagen. Um Uniswap auf {0}, müssen Sie das Netzwerk in Ihrem Wallet ändern." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Gebührenstufe" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Gebührenstufe" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Bester Preis geholt..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Dafür" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Klicken Sie für jeden unten angezeigten Pool auf migrieren, um Ihre Liquidität aus Uniswap V2 zu entfernen und in Uniswap V3 zu deponieren." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Von" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Von (höchstens)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Gesamter Bereich" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Positionen über den gesamten Bereich können weniger Gebühren einbringen als konzentrierte Positionen. Erfahren Sie mehr <0>hier." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Holen Sie sich Unterstützung bei Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Hilfezentrum" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Ausblenden" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Geschlossene Positionen ausblenden" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Hoher Preiseinfluss" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Wie diese App APIs verwendet" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Einverstanden" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Wenn Sie Token aus dieser Liste kaufen, können Sie sie möglicherweise nicht zurückverkaufen." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importieren" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Liste importieren" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Pool importieren" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "V2-Pool importieren" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importieren auf eigene Gefahr" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Im Bereich" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Liquidität erhöhen" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Anfangspreis und Poolanteil" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Wird initialisiert ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Eingabe wird geschätzt. Sie werden höchstens <0>{0} {1} verkaufen, andernfalls wird die Transaktion rückgängig gemacht." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Metamask installieren" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Unzureichende Liquidität für diesen Handel." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Unzureichendes {0} Guthaben" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Einstellungen der Benutzeroberfläche" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Ungültiges Paar" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Ungültiges Paar." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ungültige Preisangabe" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Ungültiger Bereich ausgewählt. Der Mindestpreis muss kleiner als der Maximalpreis sein." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Ungültiger Empfänger" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Sprache" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Lernen" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Erfahren Sie mehr über die Bereitstellung von Liquidität" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Mehr erfahren" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Rechtliches & Datenschutz" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Helles Design" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquidität" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Liquiditätsdaten nicht verfügbar." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Liquiditätsanbieter-Belohnungen" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Liquiditätsgeber verdienen eine 0,3%ige Gebühr für jeden Tausch im Verhältnis zu ihrem Anteil am Pool. Die Gebühren werden dem Pool zugerechnet, fallen in Echtzeit an und können durch Entfernen der Liquidität in Anspruch genommen werden." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listen" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Geladen" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Lädt" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Verwalten" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Liquidität im Belohnungspool verwalten" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Tokenlisten verwalten" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Diesen Pool verwalten." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max." - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Max. Preis" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Max. Preis" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Max.:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximum gesendet" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menü" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrieren" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Liquidität nach V3 migrieren" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "V2-Liquidität migrieren" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrieren Sie Ihre Liquiditäts-Token von Uniswap V2 nach Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrieren Sie {0}/{1} Liquidität zu V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrieren" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Min. Preis" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Min. Preis" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min.:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum erhalten" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Fehlende Abhängigkeiten" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mehr" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Netzwerkgebühr" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Netzwerkwarnung" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Netzwerkgebühren übersteigen 50% des Swap-Betrags!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Neue Position" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Keine V2-Liquidität gefunden." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Keine aktiven Pools" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Keine Daten" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Keine Beschreibung." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Keine Liquidität gefunden." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Keinen Pool gefunden." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Keine Vorschläge gefunden." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Keine Ergebnisse gefunden." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Nicht erstellt" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "AUS" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "EIN" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "VERWENDEN SIE DIESEN MODUS NUR, WENN SIE WISSEN, WAS SIE TUN." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Aus" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Ein" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Sobald Sie mit dem Preis zufrieden sind, klicken Sie auf Bereitstellen zum Überprüfen." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Nur UNI-Stimmen, die vor Block {0} an die eigene oder eine fremde Adresse delegiert wurden, sind zur Abstimmung berechtigt." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie uns von einem anderen Browser oder Gerät." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimismus befindet sich in der Betaphase und kann zu Ausfallzeiten führen. Optimismus erwartet geplante Ausfallzeiten, um das Netzwerk in naher Zukunft zu aktualisieren. Während der Ausfallzeit werden für Ihre Position keine Gebühren erhoben und Sie können keine Liquidität entfernen. <0>Lesen Sie mehr." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimism Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Nicht im Bereich" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Ausgabemenge geschätzt. Wenn sich der Preis um mehr als {0}% ändert, wird Ihre Transaktion rückgängig gemacht." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Ausgabemenge geschätzt. Sie erhalten mindestens <0>{0} {1} oder die Transaktion wird rückgängig gemacht." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Ausgabe wird an <0>{0} gesendet" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Besitzer" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Teilnehmende Pools" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Ausstehend" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Bitte bestätigen Sie, dass Sie diese Liste entfernen möchten, indem Sie ENTFERNEN eingeben" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Bitte verbinden Sie sich mit Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Bitte verbinden Sie sich mit dem entsprechenden Ethereum-Netzwerk." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Bitte geben Sie das Wort \"{confirmWord}\" ein, um den Experten-Modus zu aktivieren." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygonbrücke" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool gefunden!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Pool Rate" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Pool Rate" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Pool-Token im Belohnungspool:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "{0} gepoolt:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Pool-Übersicht" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Vorschau" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Preis" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Preisunterschied:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Preiseinfluss" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Preiseinfluss zu hoch" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Preis aktualisiert" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Preisbereich" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Preis:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Preise und Pool-Anteil" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Vorschlag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Vorschlag eingereicht" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Titel des Vorschlags" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Vorschläge" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Vorschläge von Community-Mitgliedern werden hier erscheinen." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Vorgeschlagene Aktion" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Antragsteller" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokoll-Haftungsausschluss" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "In Warteschlange" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Preise" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Erfahre mehr über UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Erfahren Sie mehr über Uniswap Governance" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Erfahre mehr über Liquiditäts-Bereitstellung" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Erfahre mehr über nicht unterstützte Token" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Letzte Transaktionen" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Empfänger" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Entfernen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "<0/> und <1/> entfernen" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Betrag entfernen" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Delegierung entfernen" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Liquidität entfernen" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Liste entfernen" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Entferne {0} {1} und {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Entfernen {0} {1} und{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Funktionen anfordern" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Zurück" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Name suchen oder Adresse einfügen" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Paar auswählen" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Wählen Sie ein Netzwerk" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Token auswählen" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Wählen Sie einen Token aus, um Ihre v2-Liquidität zu finden." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Wählen Sie eine Aktion" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Ausgewählter Bereich" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Selbst" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Selbstdelegierung" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Preisbereich festlegen" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Startpreis festlegen" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Anteil am Pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Anteil am Pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Portis anzeigen" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Geschlossene Positionen anzeigen" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Einfach" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Schlupftoleranz" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Einige Assets sind über diese Benutzeroberfläche nicht verfügbar, da sie möglicherweise nicht gut mit den Smart Contracts funktionieren oder wir den Handel aus rechtlichen Gründen nicht zulassen können." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Etwas ist schief gelaufen" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Schritt 1. Holen Sie sich UNI-V2-Liquiditätstoken" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Neues Angebot einreichen" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Angebot einreichen" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Stimmabgabe wird eingereicht" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Erfolgreich" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Erfolg" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Bereitstellen" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Biete {0} {1} und {2} {3} an" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Tauschen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Tausche <0/> gegen genau <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Trotzdem tauschen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Tausche genau <0/> gegen <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Tausch fehlgeschlagen: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Tausche {0} {1} gegen {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Danke, dass du Teil der Uniswap-Community bist <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Der Prozentsatz, den Sie an Gebühren verdienen." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Die Uniswap-Invariante x*y=k wurde durch den Tausch nicht erfüllt. Dies bedeutet normalerweise, dass einer der Token, die Sie austauschen, ein benutzerdefiniertes Verhalten bei der Übertragung enthält." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Die App ruft Blockchain-Daten vom gehosteten Dienst von The Graph ab." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Die App ruft On-Chain-Daten ab und erstellt Vertragsaufrufe mit einer Infura-API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Die App ruft die optimale Handelsroute von einem Uniswap Labs-Server ab." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Die App protokolliert anonymisierte Nutzungsstatistiken, um sie im Laufe der Zeit zu verbessern." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Die App sammelt sicher Ihre Wallet-Adresse und teilt sie aus Risiko- und Compliance-Gründen mit TRM Labs Inc." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Die Kosten für das Senden dieser Transaktion betragen mehr als die Hälfte des Wertes des eingegebenen Betrags." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Der aktuelle Fast-Gas-Betrag zum Senden einer Transaktion auf L1. Die Gasgebühren werden in Ethereums Heimatwährung Ether (ETH) bezahlt und lauten auf GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Die geschätzte Differenz zwischen den USD-Werten der Input- und Outputmengen." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Der eingegebene Token kann nicht übertragen werden. Möglicherweise liegt ein Problem mit dem Token vor." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Der Marktpreis liegt außerhalb der angegebenen Preisklasse. Nur einseitige Liquiditätsgabe möglich." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Die neueste Blocknummer in diesem Netzwerk. Die Preise werden für jeden Block aktualisiert." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Der Ausgabe-Token kann nicht übertragen werden. Möglicherweise liegt ein Problem mit dem Token vor." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Das Ausgabetoken kann nicht übertragen werden. Möglicherweise liegt ein Problem mit dem Ausgabetoken vor. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Der Preis für diesen Pool liegt außerhalb des gewählten Bereichs. Ihre Position verdient derzeit keine Gebühren." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Der Preis für diesen Pool liegt innerhalb des gewählten Bereichs. Ihre Position verdient derzeit Gebühren." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Das Verhältnis der von Ihnen hinzugefügten Token legt den Preis für diesen Pool fest." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Die Transaktion konnte nicht gesendet werden, da die Frist abgelaufen ist. Bitte überprüfen Sie, ob Ihre Transaktionsfrist nicht zu niedrig ist." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Keine Liquiditätsdaten vorhanden." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Diese App verwendet die folgenden Drittanbieter-APIs:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Dieser Pool muss initialisiert werden, bevor Sie Liquidität hinzufügen können. Wählen Sie zum Initialisieren einen Startpreis für den Pool aus. Geben Sie dann Ihre Liquiditätspreisspanne und den Einzahlungsbetrag ein. Die Gasgebühren werden aufgrund der Initialisierungstransaktion höher als üblich sein." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Diese Route optimiert Ihre Gesamtleistung, indem sie Split-Routen, mehrere Hops und die Benzinkosten jedes Schritts berücksichtigt." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Dieses Tool wird Ihre {0}-Liquidität sicher auf V3 migrieren. Der Prozess ist dank des" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Diese Transaktion wird aufgrund von Preisbewegungen nicht erfolgreich sein. Versuchen Sie, Ihre Schlupftoleranz zu erhöhen. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Diese Transaktion wird nicht erfolgreich sein, entweder aufgrund von Preisbewegungen oder aufgrund von Gebühr-bei-Transfer. Versuchen Sie, Ihre Schlupftoleranz zu erhöhen." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tipp: Benutzerdefinierte Token werden lokal in Ihrem Browser gespeichert" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Nach" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Nach (mindestens)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token nicht unterstützt" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Token" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Gesamt deponiert" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Gesamteinlagen" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Handelsroute" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Transaktionseinstellungen" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaktion gesendet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaktion abgeschlossen in" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Transaktionsfrist" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaktion abgelehnt." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token übertragen" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Erneut versuchen" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Experten-Modus aktivieren" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI ist eingetroffen" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI-Token stellen Stimmbeteiligung an der Uniswap Governance dar. Sie können über jeden Vorschlag selbst abstimmen oder Ihre Stimmen an Dritte delegieren." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} verbrannt" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP-Token sind erforderlich. Sobald Sie dem Pool von {0}-{1} Liquidität hinzugefügt haben, können Sie Ihre Liquiditäts-Token auf dieser Seite \"staken\"." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Noch nicht bezogene UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Noch nicht bezogene Gebühren" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Unbestimmt" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Unerwarteter Fehler. Gas für den Tausch konnte nicht geschätzt werden." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Unerwartetes Problem bei der Schätzung des Gases. Bitte versuche es erneut." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap Governance" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Nutzungsbedingungen von Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap verfügbar in: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-Governance ist nur auf Layer 1 verfügbar. Schalten Sie Ihr Netzwerk auf Ethereum Mainnet um, um Anträge und Abstimmungen anzuzeigen." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap Liquiditätsförderung" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap Migrations-contract↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Unbekannte Quelle" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Unbekannter Fehler{0}. Versuchen Sie, Ihre Schlupftoleranz zu erhöhen. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Abstimmungen freischalten" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Abstimmung freischalten" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Stimmen werden freigeschalten" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Nicht unterstütztes Asset" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Nicht unterstützte Assets" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Ohne Titel" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Auspacken <0/> bis {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Delegation aktualisieren" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Liste aktualisieren" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Verwenden Sie die Uniswap Labs-API, um schnellere Angebote zu erhalten." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Benutzer" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 ist auf Layer 2 nicht verfügbar. Wechseln Sie zu Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2-Liquidität" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Preis:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Eingenommene Gebühren und Analysen anzeigen<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Liste anzeigen" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Auf Etherscan ansehen" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Im Explorer anzeigen" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Transaktion im Explorer anzeigen" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Abstimmung" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Dagegen stimmen" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Dafür stimmen" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Stimme gegen Antrag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Gegen Vorschlag stimmen {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Stimme gegen Vorschlag {proposalKey} mit Begründung \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Für Vorschlag {proposalId} stimmen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Stimme für Vorschlag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Stimme für Vorschlag {proposalKey} mit Grund \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Stimme für Enthaltung bei Vorschlag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Stimme für Enthaltung bei Vorschlag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Stimmen Sie für die Enthaltung bei Vorschlag {proposalKey} mit der Begründung „{0}“" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Abstimmung beendet {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Die Abstimmung endet ungefähr {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Die Abstimmung beginnt ungefähr {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Warte auf Bestätigung" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Wallet-Adresse oder ENS-Name" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Wöchentliche Belohnungen" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Willkommen bei Team Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Wenn Sie Einfordern ohne die Liquidität abzuheben, bleibt Ihre Liquidität im Förder-Pool." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Wenn Sie Abheben wird der contract \"automagisch\" UNI für Sie einziehen!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Wenn Sie abheben, wird Ihr UNI eingefordert und Ihre Liquidität aus dem Förder-Pool entfernt." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Abheben" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Abheben & Einfordern" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Deponierte Liquidität abheben" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Hebe {0} UNI-V2 ab" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 abgehoben!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Wrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Wrap <0/> bis {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Falsches Netzwerk" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Sie haben bereits ein aktives oder ausstehendes Angebot" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Sie erstellen einen Pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Sie sind der erste Liquiditätsgeber für diesen Uniswap V3 Pool. Ihre Liquidität wird zum aktuellen {0}-Preis migriert." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Sie sind der erste Liquiditätsanbieter." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Sie können entweder über jeden Vorschlag selbst abstimmen oder Ihre Stimme an Dritte delegieren." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Du kannst jetzt {0} handeln" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Ihr Stimmrecht reicht nicht aus, um einen Vorschlag einzureichen" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Sie haben noch keine Liquidität in diesem Pool." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Sie können in Erwägung ziehen, zu warten, bis die Netzwerkgebühren gesunken sind, um diese Transaktion abzuschließen." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Sie müssen ein Konto verbinden." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Sie müssen den Uniswap Smart Contracts die Erlaubnis erteilen, Ihre {0} zu verwenden. Sie müssen dies nur einmal pro Token tun." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Sie müssen {formattedProposalThreshold} Stimmen haben, um einen Vorschlag einzureichen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Sie sollten nur Liquidität in Uniswap V3 zu einem Preis einzahlen, den Sie für richtig halten. <0/>Wenn der Preis falsch erscheint, können Sie entweder durch einen Tausch den Preis verändern oder warten bis jemand anderes dies tut." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Sie werden auch die Gebühren einziehen, die diese Position eingenommen hat." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Sie werden erhalten" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Ihre V2-Liquidität" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Hier werden Ihre aktiven V3-Liquiditätspositionen angezeigt." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Ihre Liquiditätspositionen" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Ihr Poolanteil:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Deine Position" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Ihre Position hat 0 Liquidität und verdient keine Gebühren." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Ihre Position wird hier angezeigt." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Ihre Position wird zu 100% aus {0} bestehen bei diesem Preis" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Ihre Position wird bei diesem Preis 100% {0} sein." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Ihre Position wird keine Gebühren verdienen oder in Geschäften genutzt werden, bis sich der Marktpreis in Ihren Bereich bewegt." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Ihre Positionen" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Dein Kurs" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Ihre gesamten Liquiditätsgeber-Token:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Ihre Transaktionskosten werden wesentlich höher sein, da sie das Gas beinhalten, um den Pool zu erstellen." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Ihre Transaktion könnte anfällig für \"Frontrunning\" sein" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Ihre Transaktion könnte fehlschlagen" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Ihre Transaktion wird rückgängig gemacht, wenn sie für mehr als diesen Zeitraum aussteht." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Ihre Transaktion wird rückgängig gemacht, wenn sich der Preis ungünstig um mehr als diesen Prozentsatz ändert." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Ihre Transaktionen werden hier erscheinen..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Deine noch nicht bezogenen UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "nach dem rutschen" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "bestätigen" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "für {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "hat \"socks\" Emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "Hier." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // oder ipfs: // oder ENS-Name" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "Minuten" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "über {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "über {0} Token-Liste" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Token importieren} other {Token importieren}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/>/<1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Benutzerdefinierte Token" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} deponiert" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} erhaltene Gebühren:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Ausstehend" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / Woche" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP Token verfügbar" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Stimmen" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} pro {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} Token" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Preis:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Vom Benutzer hinzugefügt" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% Gebührenstufe" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% Becken" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% auswählen" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Liquiditätsförderung" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP-Token" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} Token" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} Token-Brücke" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} pro {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Zurück zur Pool-Übersicht" - diff --git a/src/locales/el-GR.po b/src/locales/el-GR.po deleted file mode 100644 index 80112447b8..0000000000 --- a/src/locales/el-GR.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: el_GR\n" -"Language-Team: Greek\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: el\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Προβολή στον Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(καθαρισμός όλων)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(επεξεργασία)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Αφαίρεση παραλήπτη" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / εβδομάδα" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Όλες Οι Προτάσεις" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Ψήφοι" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Αναλυτικά λογαριασμού και δεδουλευμένα τέλη<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Τρέχουσα τιμή: <1> <2 /> <3>{0} ανά {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Συμβουλή: Η αφαίρεση μάρκας από τη δεξαμενή οπισθοχωρεί την θέση σας σε υποκείμενες μάρκες στη τρέχουσα τιμή, αναλογικά με το μερίδιό σας στην δεξαμενή. Τα δεδουλευμένα τέλη περιλαμβάνονται στα ποσά που λαμβάνετε." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Συμβουλή: Επιλέξτε μια ενέργεια και περιγράψτε την πρότασή σας για την κοινότητα. Η πρόταση δεν μπορεί να τροποποιηθεί μετά την υποβολή, επομένως επαληθεύστε όλες τις πληροφορίες πριν από την υποβολή. Η περίοδος ψηφοφορίας θα ξεκινήσει αμέσως και θα διαρκέσει 7 ημέρες. Για να προτείνετε μια προσαρμοσμένη ενέργεια, <1> διαβάστε τα έγγραφα ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Συμβουλή: Χρησιμοποιήστε αυτό το εργαλείο για να βρείτε δεξαμενές της v2 που δεν εμφανίζονται αυτόματα στη διεπαφή." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Συμβουλή: Όταν προσθέσετε ρευστότητα, θα λάβετε μάρκες δεξαμενής που αντιπροσωπεύουν τη θέση σας. Αυτές οι μάρκες κερδίζουν αυτόματα τέλη ανάλογα με το μερίδιό σας στην πισίνα, και μπορούν να εξαργυρωθούν ανά πάσα στιγμή." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Ξεκλειδώστε τη ψηφοφορία για να προετοιμαστείτε για την επόμενη πρόταση." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Καλώς ήρθατε στην ομάδα Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Απαιτείται ελάχιστο όριο 0,25% της συνολικής προσφοράς UNI για την υποβολή προτάσεων" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Σχετικά με εμάς" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Αποδοχή" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Λογαριασμός" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Ενεργός" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Προσθήκη" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Προσθέστε <0/> και <1/> στο Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Προσθήκη εκπροσώπου +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Προσθήκη Ρευστότητας" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Προσθήκη Ρευστότητας V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Προσθήκη ρευστότητας." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Προσθέστε περισσότερη ρευστότητα" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Προσθήκη {0} στο Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Προσθήκη {0}-{1} ρευστότητας" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Προσθήκη {0}/{1} V3 ρευστότητας" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Προστέθηκε {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Η διεύθυνση δεν έχει διαθέσιμη διεκδίκηση" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Εναντίον" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Επιτρέψτε τη μεταφορά μάρκας παρόχου ρευστότητας (LP)" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Επιτρέψτε τις διαπραγματεύσεις υψηλής επίδρασης τιμών και παραλείψτε την οθόνη επιβεβαίωσης. Χρησιμοποιήστε τη με δική σας ευθύνη." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Επιτρέψτε στο πρωτόκολλο Uniswap να χρησιμοποιήσει το {0} σας" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Επιτρέπεται" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Ποσό" - -#: src/hooks/useSwapCallback.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." -msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια εκτέλεσης αυτής της ανταλλαγής. Ίσως χρειαστεί να αυξήσετε την ανοχή ολίσθησης. Εάν αυτό δεν λειτουργεί, μπορεί να υπάρχει ασυμβατότητα με το διακριτικό που διαπραγματεύεστε. Σημείωση: τα τέλη μεταφοράς και επαναφοράς δεν είναι συμβατά με το Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Έγκριση" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Έγκριση κουπονιού" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Έγκριση {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Εγκρίθηκε" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Έγκριση" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Έγκριση {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Αρβισκανός" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Γέφυρα Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Το Arbitrum βρίσκεται σε Beta και ενδέχεται να αντιμετωπίσει διακοπές λειτουργίας. Κατά τη διάρκεια του χρόνου διακοπής, η θέση σας δεν θα κερδίσει τέλη και δεν θα μπορείτε να αφαιρέσετε τη ρευστότητα. <0> Διαβάστε περισσότερα." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Σίγουρα;" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Ως μέλος της κοινότητας Uniswap μπορείτε να διεκδικήσετε το UNI για να χρησιμοποιηθεί για ψηφοφορία και διακυβέρνηση.<0/><1/><2>Διαβάστε περισσότερα για UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Τουλάχιστον {0} {1} και {2} {3} θα επιστραφούν στο πορτοφόλι σας λόγω του επιλεγμένου εύρους τιμών." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Αυτόματο" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Διαθέσιμο για κατάθεση: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Υπόλοιπο: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Καλύτερο για εξωτικά ζεύγη." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Καλύτερο για τα περισσότερα ζεύγη." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Καλύτερο για σταθερά ζεύγη." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Καλύτερο για πολύ σταθερά ζευγάρια." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Η καλύτερη τιμή διαδρομής κοστίζει ~{formattedGasPriceString} σε φυσικό αέριο." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Αποκλεισμένη διεύθυνση" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Γέφυρα" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Προσθέτοντας ρευστότητα θα κερδίσετε το 0,3% όλων των συναλλαγών σε αυτό το ζεύγος αναλογικά με το μερίδιό σας στη δεξαμενή. Οι χρεώσεις προστίθενται στη ψηφοφορία, συσσωρεύονται σε πραγματικό χρόνο και μπορούν να ζητηθούν μέσω της ανάληψη σας ρευστότητας." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Συνδέοντας ένα πορτοφόλι, συμφωνείτε με τους Όρους Παροχής Υπηρεσιών <0> και αναγνωρίζετε ότι έχετε διαβάσει και κατανοήσει τη Δήλωση Αποποίησης ευθυνών Πρωτοκόλλου <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Ακυρώθηκε" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Αλλαγή" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Διαγράμματα" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Ελέγξτε την κατάσταση του δικτύου" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Ρίξτε μια ματιά στους οδηγούς μας συνέχειας και μεταφοράς παρόχων ρευστότητας (LP) της v3." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Διεκδίκηση" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Αξίωση <0/> για {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Διεκδικήστε UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Διεκδίκηση μάρκας UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Διεκδικήστε ανταμοιβή UNI για {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Διεκδικήστε χρεώσεις" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Διεκδικήστε τις μάρκες σας UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Διεκδικήθηκε" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI διεκδικήθηκε!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Διεκδικήθηκε!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Διεκδίκηση" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Γίνεται Διεκδίκηση UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Γίνεται Διεκδίκηση {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Εκκαθάριση Όλων" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Εκκαθάριση όλων" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Κλείσιμο" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Κλειστό" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Συλλογή" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Συλλέξτε ως WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Συλλέξτε χρεώσεις" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Συλλέξτε {0}/{1} τέλη" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Συλλέχθηκαν" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Συλλογή" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Γίνεται συλλογή χρεώσεων" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Η συλλογή χρεώσεων θα αποσύρει τις τρέχουσες διαθέσιμες χρεώσεις για εσάς." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Επιβεβαίωση" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Επιβεβαίωση Παροχής" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Επιβεβαίωση ανταλλαγής" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Επιβεβαιώστε αυτή τη συναλλαγή στο πορτοφόλι σας" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Επιβεβαίωση συναλλαγής στο πορτοφόλι" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Σύνδεση Πορτοφολιού" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Συνδέστε ένα πορτοφόλι" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Συνδεθείτε σε ένα πορτοφόλι για να βρείτε δεξαμενές" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Συνδεθείτε σε ένα πορτοφόλι για να δείτε τη ρευστότητα στη V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Συνδεθείτε σε ένα πορτοφόλι για να δείτε την ρευστότητά σας." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Συνδέθηκε με {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Αντιγράφηκε" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Αντιγραφή Διεύθυνσης" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Δημιουργία Ψηφοφορίας & Παροχής" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Δημιουργία πρότασης" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Δημιουργία ζεύγους" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Δημιουργία δεξαμενής" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Δημιουργήστε ένα ζήτημα στο GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Δημιουργήστε δεξαμενή και προσθέστε {0}/{1} V3 ρευστότητα" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Δημιουργία δεξαμενής." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Δημιουργία {0}/{1} πισίνα V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Τρέχουσα τιμή" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Τρέχουσα τιμή {0}:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Σκούρο θέμα" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Νίκησε" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Ανάθεση Ψήφων" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Εκχωρήστε την εξουσία ψήφου στο {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Ανατέθηκε σε:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Γίνεται ανάθεση ψήφων" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Κατάθεση" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Ποσά Κατάθεσης" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Κατάθεση μάρκας UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Κατάθεση ρευστότητας" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Καταθέστε διακριτικά στο δίκτυο {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Καταθέστε τα διακριτικά του παρόχου ρευστότητας για να λάβετε UNI, το διακριτικό διακυβέρνησης πρωτοκόλλου Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Ρευστότητα που κατατέθηκε:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Κατατέθηκε {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Γίνεται κατάθεση ρευστότητας" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Περιγραφή" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Λεπτομερής" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Λεπτομέρειες" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Αποσύνδεση" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Απόρριψη" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Έγγραφα" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Δεν βλέπετε μία από τις θέσεις σας στο v2; <0> Εισαγάγετε τη." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Κερδισμένες μάρκες του UNI αντιπροσωπεύουν μερίδια ψήφου στη διακυβέρνηση Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Επεξεργασία" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Σύγκριση αποδοτικότητας" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Εισαγωγή ποσοστού" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Εισαγάγετε έναν παραλήπτη" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Εισάγετε ένα έγκυρο ποσοστό διαφοράς κόστους συναλλαγής" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Εισάγετε μια διεύθυνση για να εκκινήσετε μια διεκδίκηση UNI. Εάν η διεύθυνση έχει οποιοδήποτε UNI που μπορεί να διεκδικηθεί, αυτό θα αποσταλεί σε αυτούς κατά την υποβολή." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Εισάγετε ένα ποσό" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Εισάγετε έγκυρη λίστα τοποθεσιών" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Εισάγετε μια διεύθυνση έγκυρης μάρκας" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Εισαγάγετε {0} ποσό" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Σφάλμα" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Σφάλμα σύνδεσης" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Σφάλμα σύνδεσης. Προσπαθήστε ξανά ανανεώνοντας τη σελίδα." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Σφάλμα εισαγωγής λίστας" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Η εκτίμηση μπορεί να διαφέρει λόγω των ρυθμίσεων αερίου του πορτοφολιού σας" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Εκτιμώμενο τέλος δικτύου" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Εκτελέστηκε" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "Εκτεταμένα αποτελέσματα από ανενεργές Λίστες Μάρκας" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "Αναμενόμενη έξοδος" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Λειτουργία ειδικού" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Η λειτουργία εμπειρογνωμόνων απενεργοποιεί την ειδοποίηση επιβεβαίωσης της συναλλαγής και επιτρέπει την υψηλή διαφορά κόστους συναλλαγών που συχνά οδηγεί σε κακές τιμές και χαμένα κεφάλαια." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "έχει λήξει" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Εξερευνήστε το Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Αποτυχία εναλλαγής δικτύων από τη διεπαφή Uniswap. Για να χρησιμοποιήσετε το Uniswap στο {0}, πρέπει να αλλάξετε το δίκτυο στο πορτοφόλι σας." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Βαθμίδα Χρέωσης" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Επίπεδο χρεώσεων" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Λήψη της καλύτερης τιμής..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Για" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Για κάθε δεξαμενή που φαίνεται παρακάτω, κάντε κλικ στην επιλογή μεταφορά για να αφαιρέσετε τη ρευστότητά σας από Uniswap V2 και να την καταθέσετε στο Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Από" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Από (το μέγιστο)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Πλήρες εύρος" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Οι θέσεις πλήρους εμβέλειας μπορεί να κερδίζουν λιγότερα τέλη από τις συγκεντρωμένες θέσεις. Μάθετε περισσότερα <0> εδώ ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Βρείτε υποστήριξη για τη Διαφωνία" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Κέντρο βοηθείας" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Κρύβω" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Απόκρυψη κλειστών θέσεων" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Υψηλή Επίδραση Τιμών" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Πώς αυτή η εφαρμογή χρησιμοποιεί API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Κατανοώ" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Αν αγοράσετε μία μάρκα από αυτή τη λίστα, μπορεί να μην μπορείτε να την πουλήσετε πίσω." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Εισαγωγή" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Εισαγωγή Λίστας" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Εισαγωγή Δεξαμενής" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Εισαγωγή Δεξαμενής της V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Εισαγωγή με δική σας ευθύνη" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Εντός εύρους" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Αύξηση Ρευστότητας" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Αρχικές τιμές και μερίδιο δεξαμενής" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Έναρξη..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Η τιμή που εισάγετε εκτιμήθηκε. Θα πουλήσετε το πολύ <0>{0} {1} ή η συναλλαγή θα υπαναχωρήσει." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Εγκατάσταση Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Ανεπαρκής ρευστότητα για αυτή τη διαπραγμάτευση." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Ανεπαρκές υπόλοιπο {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Ρυθμίσεις Διεπαφής" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Μη έγκυρο ζεύγος" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Μη έγκυρο ζεύγος." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Μη έγκυρη εισαγωγή τιμής" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Επιλέχθηκε μη έγκυρο εύρος. Η ελάχιστη τιμή πρέπει να είναι χαμηλότερη από τη μέγιστη τιμή." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Μη έγκυρος παραλήπτης" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Γλώσσα" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Μάθετε" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Μάθετε σχετικά με την παροχή ρευστότητας" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Μάθε περισσότερα" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Νομική και Απόρρητο" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Ελαφρύ θέμα" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Ρευστότητα" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα ρευστότητας." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Επιβραβεύσεις παρόχου ρευστότητας" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Οι πάροχοι ρευστότητας κερδίζουν μια χρέωση της τάξεως του 0,3% σε όλες τις συναλλαγές ανάλογα με το μερίδιο τους στη δεξαμενή. Οι χρεώσεις προστίθενται στην ψηφοφορία, συσσωρεύονται σε πραγματικό χρόνο και μπορούν να ζητηθούν μέσω της ανάληψης σας ρευστότητας." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Λίστες" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Φορτώθηκε" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Φόρτωση" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "ΜΕΓΙΣΤΗ" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Διαχείριση" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Διαχείριση ρευστότητας στην Δεξαμενή Επιβραβεύσεων" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Διαχείριση Λίστας μάρκας" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Διαχείριση αυτής της δεξαμενής." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Μέγιστο" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Μέγιστη Τιμή" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Μέγιστη τιμή" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Μέγιστο:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Απεστάλη το μέγιστο" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Μενού" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Μετεγκατάσταση" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Μεταφορά ρευστότητας σε V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Μεταφορά Ρευστότητας V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Μεταφορά της δίκης μάρκας ρευστότητας σας από Uniswap V2 σε Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Μετεγκατάσταση {0}/{1} ρευστότητας στο V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Γίνεται μεταφορά" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Ελάχιστη Τιμή" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Ελάχιστη τιμή" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Ελάχιστο:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Ελάχιστο λαμβανόμενο" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Λείπουν εξαρτήσεις" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Περισσότερα" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Τέλος δικτύου" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Προειδοποίηση δικτύου" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Οι χρεώσεις δικτύου υπερβαίνουν το 50% του ποσού ανταλλαγής!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Νέα Θέση" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Δεν βρέθηκε ρευστότητα V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Δεν υπάρχει ενεργή δεξαμενή" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Χωρίς δεδομένα" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Χωρίς περιγραφή." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Δεν βρέθηκε ρευστότητα." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Δεν βρέθηκε δεξαμενή." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Δεν βρέθηκαν προτάσεις." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Δεν βρέθηκαν αποτελέσματα." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Δεν δημιουργήθηκε" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "ΚΛΕΙΣΤΟ" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ΑΝΟΙΚΤΟ" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ΧΡΗΣΙΜΟΠΟΙΗΣΤΕ ΑΥΤΟ ΤΟΝ ΤΡΟΠΟ ΜΟΝΟ ΕΑΝ ΓΝΩΡΙΖΕΤΕ ΤΙ ΚΑΝΕΤΕ." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Μακριά από" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Ανοικτο" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Μόλις είστε ευχαριστημένοι με τη τιμή κάντε κλικ στο παροχή για επανεξέταση." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Μόνο οι ψήφοι UNI που ανατέθηκαν αυτοπροσώπως ή ανατέθηκαν σε άλλη διεύθυνση πριν από το κλείσιμο {0} έχουν δικαίωμα ψήφου." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ωχ! Προέκυψε ένα άγνωστο σφάλμα. Παρακαλώ ανανεώστε τη σελίδα ή επισκεφθείτε από άλλο πρόγραμμα περιήγησης ή συσκευή." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Πύλη αισιοδοξίας" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Η αισιοδοξία βρίσκεται σε Beta και μπορεί να αντιμετωπίσει διακοπές λειτουργίας. Ο Optimism αναμένει ότι οι προγραμματισμένες διακοπές λειτουργίας θα αναβαθμίσουν το δίκτυο στο εγγύς μέλλον. Κατά τη διάρκεια της διακοπής λειτουργίας, η θέση σας δεν θα κερδίζει χρεώσεις και δεν θα μπορείτε να αφαιρέσετε ρευστότητα. <0>Διαβάστε περισσότερα." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Αισιόδοξη Ethercan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Εκτός εύρους" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Το αποτέλεσμα εκτιμήθηκε. Αν η τιμή αλλάξει παραπάνω από {0}% η συναλλαγή σας θα υπαναχωρήσει." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Το αποτέλεσμα εκτιμήθηκε. Θα λάβετε τουλάχιστον <0>{0} {1} ή η συναλλαγή θα υπαναχωρήσει." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Το αποτέλεσμα θα σταλεί στο <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Ιδιοκτήτης" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Συμμετέχουσες δεξαμενές" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "εκκρεμής" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Επιβεβαιώστε ότι θέλετε να καταργήσετε αυτήν τη λίστα πληκτρολογώντας REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Συνδεθείτε στο Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Συνδεθείτε στο κατάλληλο δίκτυο του Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Παρακαλώ πληκτρολογήστε τη λέξη \"{confirmWord}\" για να ενεργοποιήσετε τη λειτουργία εμπειρογνωμόνων." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Γέφυρα Πολυγώνου" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Πολυγωνική σάρωση" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Δεξαμενή" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Βρέθηκε Δεξαμενή!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Τιμή Δεξαμενής" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Τιμή δεξαμενής" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Μάρκες ψηφοφορίας στη δεξαμενή επιβραβεύσεων:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Συγκεντρώθηκε(αν) {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Επισκόπηση Δεξαμενών" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Προεπισκόπηση" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Τιμή" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Διαφορά Τιμής:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Επιδράσεις τιμής" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Πολύ υψηλή επίδραση σε τιμή" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Η Τιμή Ενημερώθηκε" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Εύρος τιμών" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Τιμή:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Τιμές και μερίδιο στη δεξαμενή" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Πρόταση" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Υποβλήθηκε πρόταση" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Τίτλος πρότασης" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Προτάσεις" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Προτάσεις που υποβάλλονται από τα μέλη της κοινότητας θα εμφανίζονται εδώ." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Προτεινόμενη δράση" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Άτομο που κάνει προτάσεις" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Αποποίηση ευθυνών πρωτοκόλλου" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Σε ουρά" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Τιμές" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Διαβάστε περισσότερα για UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Διαβάστε περισσότερα για τη διακυβέρνηση Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Διαβάστε περισσότερα σχετικά με την παροχή ρευστότητας" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Διαβάστε περισσότερα για τα μη υποστηριζόμενα περιουσιακά στοιχεία" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Πρόσφατες Συναλλαγές" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Παραλήπτης" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Αφαίρεση" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Κατάργηση <0/> και <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Αφαίρεση Ποσού" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Αφαίρεση Αντιπροσώπου" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Αφαίρεση Ρευστότητας" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Αφαίρεση λίστας" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Αφαίρεση των {0} {1} και {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Αφαίρεση {0} {1} και{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Χαρακτηριστικά αιτήματος" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Επιστροφή" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Αναζήτηση ονόματος ή επικόλλησης διεύθυνσης" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Επιλέξτε Ζεύγος" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Επιλέξτε ένα δίκτυο" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Επιλέξτε μία μάρκα" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Επιλέξτε μια μάρκα για να βρείτε τη ρευστότητά σας στη v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Επιλέξτε μια ενέργεια" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Επιλεγμένο Εύρος" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Αυτοπροσώπως" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Ανάθεση στον εαυτό μου" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Ορισμός Εύρους Τιμών" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Ορισμός Τιμής Εκκίνησης" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Μερίδιο από τη Δεξαμενή" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Μερίδιο από τη Δεξαμενή:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Εμφάνιση Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Εμφάνιση κλειστών θέσεων" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Απλό" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Ανοχή ολίσθησης" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Ορισμένα περιουσιακά στοιχεία δεν είναι διαθέσιμα μέσω αυτής της διεπαφής, επειδή μπορεί να μην λειτουργούν καλά με τις έξυπνες συμβάσεις ή δεν είμαστε σε θέση να επιτρέψουμε τη διαπραγμάτευση για νομικούς λόγους." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Κάτι πήγε στραβά" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Βήμα 1. Πάρτε τα διακριτικά ρευστότητας UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Υποβολή νέας πρότασης" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Υποβολή πρότασης" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Γίνεται υποβολή ψήφου" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Επιτεύχθηκε" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Επιτυχία" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Παροχή" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Γίνεται παροχή {0} {1} και {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Ανταλλαγή" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Αντικαταστήστε <0/> με ακριβώς <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Ανταλλάξτε ούτως ή άλλως" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Αντικαταστήστε ακριβώς <0/> με <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Η ανταλλαγή απέτυχε: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Ανταλλαγή {0} {1} για {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Σας ευχαριστούμε που συμμετείχατε στην κοινότητα Uniswap <0 />" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Το% που θα κερδίσετε σε προμήθειες." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Το αμετάβλητο Uniswap x * y = k δεν ικανοποιήθηκε από την ανταλλαγή. Αυτό συνήθως σημαίνει ότι μία από τις μάρκες που ανταλλάσσετε περιλαμβάνει προσαρμοσμένη συμπεριφορά κατά τη μεταφορά." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Η εφαρμογή ανακτά δεδομένα blockchain από την φιλοξενούμενη υπηρεσία του The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Η εφαρμογή ανακτά δεδομένα στην αλυσίδα και δημιουργεί κλήσεις συμβολαίου με ένα Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Η εφαρμογή ανακτά τη βέλτιστη εμπορική διαδρομή από έναν διακομιστή Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Η εφαρμογή καταγράφει ανώνυμα στατιστικά στοιχεία χρήσης για να βελτιώνεται με την πάροδο του χρόνου." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Η εφαρμογή συλλέγει με ασφάλεια τη διεύθυνση του πορτοφολιού σας και τη μοιράζεται με την TRM Labs Inc. για λόγους κινδύνου και συμμόρφωσης." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Το κόστος αποστολής αυτής της συναλλαγής είναι περισσότερο από το μισό της αξίας του ποσού εισόδου." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Το τρέχον γρήγορο ποσό αερίου για την αποστολή συναλλαγής στο L1. Τα τέλη φυσικού αερίου καταβάλλονται στο εγγενές νόμισμα Ethereum (ETH) και εκφράζονται σε GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Η εκτιμώμενη διαφορά μεταξύ των τιμών σε USD των ποσών εισροών και εκροών." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Δεν είναι δυνατή η μεταφορά της μάρκας εισαγωγής. Ενδέχεται να υπάρχει πρόβλημα με τη μάρκα εισαγωγής." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Η αγοραία τιμή είναι εκτός του εύρους τιμών που καθορίσατε. Καταθέσεις ενός μόνου περιουσιακού στοιχείου μόνο." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Ο πιο πρόσφατος αριθμός αποκλεισμού σε αυτό το δίκτυο. Οι τιμές ενημερώνονται για κάθε μπλοκ." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Η μάρκα αποτελέσματος δεν μπορεί να μεταφερθεί. Ενδέχεται να υπάρχει ένα ζήτημα με τη μάρκα αποτελέσματος." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Δεν είναι δυνατή η μεταφορά της μάρκας αποτελέσματος. Ενδέχεται να υπάρχει πρόβλημα με τη μάρκα αποτελέσματος. Σημείωση: οι χρεώσεις μεταφοράς και οι μάρκες rebase δεν είναι συμβατές με το Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Η τιμή αυτής της δεξαμενής είναι εκτός του επιλεγμένου εύρους. Η θέση σας δεν κερδίζει επί του παρόντος χρεώσεις." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Η τιμή αυτής της δεξαμενής είναι εντός του επιλεγμένου εύρους. Η θέση σας κερδίζει επί του παρόντος χρεώσεις." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Η αναλογία των διακριτικών που προσθέτετε θα ορίσει την τιμή αυτής της δεξαμενής." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Δεν ήταν δυνατή η αποστολή της συναλλαγής επειδή έχει παρέλθει η προθεσμία. Βεβαιωθείτε ότι η προθεσμία συναλλαγής σας δεν είναι πολύ μικρή." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Δεν υπάρχουν δεδομένα ρευστότητας." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Αυτή η εφαρμογή χρησιμοποιεί τα ακόλουθα API τρίτων:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Αυτή η ομάδα πρέπει να προετοιμαστεί για να μπορέσετε να προσθέσετε ρευστότητα. Για να ξεκινήσετε, επιλέξτε μια τιμή εκκίνησης για την ομάδα. Στη συνέχεια, εισαγάγετε το εύρος τιμών ρευστότητας και το ποσό κατάθεσης. Τα τέλη φυσικού αερίου θα είναι υψηλότερα από το συνηθισμένο λόγω της αρχικής συναλλαγής." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Αυτή η διαδρομή βελτιστοποιεί τη συνολική σας απόδοση λαμβάνοντας υπόψη τις διαχωρισμένες διαδρομές, τα πολλαπλά άλματα και το κόστος φυσικού αερίου κάθε βήματος." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Αυτό το διακριτικό δεν υποστηρίζεται στην εφαρμογή Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Αυτό το εργαλείο θα μεταφέρει με ασφάλεια τη ρευστότητα {0} σας στο V3. Η διαδικασία αυτή διακρίνεται από έλλειψη εμπιστοσύνης μεταξύ των μερών χάρη στο" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Αυτή η συναλλαγή δεν θα πετύχει λόγω της μεταβολής των τιμών. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης. Σημείωση: οι χρεώσεις μεταφοράς και οι μάρκες rebase δεν είναι συμβατές με το Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Αυτή η συναλλαγή δεν θα πετύχει είτε λόγω της κίνησης των τιμών είτε της χρέωσης κατά τη μεταφορά. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Συμβουλή: Οι προσαρμοσμένες μάρκες αποθηκεύονται τοπικά στο πρόγραμμα περιήγησης σας" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "'Ως" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Έως (από το ελάχιστο)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Το διακριτικό δεν υποστηρίζεται" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Μάρκες" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Σύνολο που κατατέθηκε" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Συνολικές καταθέσεις" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Εμπορική οδός" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Ρυθμίσεις Συναλλαγής" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Συναλλαγή Υποβλήθηκε" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Η συναλλαγή ολοκληρώθηκε στις" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Προθεσμία συναλλαγής" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Η συναλλαγή απορρίφθηκε." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Μεταφορά κουπονιού" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Δοκιμάστε Ξανά" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Ενεργοποίηση Λειτουργίας Εμπειρογνωμόνων" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "Το UNI έφτασε" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Οι μάρκες UNI αντιπροσωπεύουν μετοχές με ψήφους στη διακυβέρνηση Uniswap. Μπορείτε να ψηφίσετε μόνοι σας για κάθε πρόταση ή να αναθέσετε τις ψήφους σας σε ένα τρίτο μέρος." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} \"Κάηκαν\"" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Απαιτούνται μάρκες UNI-V2 παρόχου ρευστότητας (LP). Μόλις έχετε προσθέσει ρευστότητα στη {0}-{1} δεξαμενή μπορείτε να ποντάρετε τις μάρκες ρευστότητας σας σε αυτή τη σελίδα." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Αζήτητο UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Αζήτητες χρεώσεις" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Αναποφάσιστος" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Απρόσμενο σφάλμα. Δεν ήταν δυνατή η εκτίμηση αερίου για την ανταλλαγή." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Μη αναμενόμενο πρόβλημα με την εκτίμηση του αερίου. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap Διακυβέρνηση" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Όροι Παροχής Υπηρεσιών της Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Το Uniswap διατίθεται σε: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Η διαχείριση Uniswap είναι διαθέσιμη μόνο στο Layer 1. Αλλάξτε το δίκτυό σας στο Ethereum Mainnet για να δείτε Προτάσεις και Ψηφοφορία." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Εξόρυξη ρευστότητας Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Σύμβαση μετεγκατάστασης Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Άγνωστη πηγή" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Άγνωστο σφάλμα{0}. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης Σημείωση: οι χρεώσεις μεταφοράς και οι rebase μάρκες δεν είναι συμβατές με το Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Ξεκλείδωμα Ψήφων" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Ξεκλείδωμα Ψηφοφορίας" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Ξεκλείδωμα Ψήφων" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Μη Υποστηριζόμενο Περιουσιακό Στοιχείο" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Μη Υποστηριζόμενα Περιουσιακά Στοιχεία" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Χωρίς τίτλο" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Αποκαλύπτω" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Ξετυλίξτε <0/> προς {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Ενημέρωση Ανάθεσης" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Ενημέρωση λίστας" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Χρησιμοποιήστε το Uniswap Labs API για να λαμβάνετε ταχύτερα εισαγωγικά." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Χρήστης" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "Το V2 δεν είναι διαθέσιμο στο Layer 2. Μετάβαση στο Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 ρευστότητα" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Τιμή:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Προβολή δεδουλευμένων τελών και αναλύσεων<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Προβολή λίστας" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Θέα στο Ethercan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Προβολή στον Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Προβολή συναλλαγής στον Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Ψηφοφορίες" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Ψήφοι Κατά" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Ψήφοι υπέρ" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Ψήφοι κατά της πρότασης {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Vηφοφορία κατά της πρότασης {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vηφίστε κατά της πρότασης {proposalKey} με αιτιολογία \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Ψήφοι υπέρ της πρότασης {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Vηφίστε την πρόταση {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Vηφίστε την πρόταση {proposalKey} με αιτιολογία \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Vηφοφορία για αποχή στην πρόταση {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Vηφοφορία για αποχή στην πρόταση {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Vηφοφορία για αποχή στην πρόταση {proposalKey} με αιτιολογία \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Η ψηφοφορία έληξε {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Η ψηφοφορία λήγει περίπου {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Η ψηφοφορία ξεκινά περίπου {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Αναμονή Επιβεβαίωσης" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Διεύθυνση Πορτοφολιού ή όνομα ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Εβδομαδιαίες Επιβραβεύσεις" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Καλώς ήρθατε στην ομάδα Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Όταν διεκδικείτε χωρίς ανάληψη, η ρευστότητά σας παραμένει στη δεξαμενή εξόρυξης." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Όταν πραγματοποιήσετε ανάληψη, η σύμβαση θα διεκδικήσει αυτόματα UNI για λογαριασμό σας!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Όταν πραγματοποιείτε ανάληψη, τα UNI σας διεκδικούνται και η ρευστότητά σας αφαιρείται από τη δεξαμενή εξόρυξης." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Ανάληψη" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Ανάληψη & Διεκδίκηση" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Ανάληψη κατατεθειμένης ρευστότητας" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Ανάληψη {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Πραγματοποιήθηκε ανάληψη UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Καλύπτω" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Τυλίξτε <0/> προς {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Λάθος Δίκτυο" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Έχετε ήδη μια ενεργή ή σε εκκρεμότητα πρόταση" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Δημιουργείτε μια ψηφοφορία" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Είστε ο πρώτος πάροχος ρευστότητας για αυτή τη Uniswap V3 ψηφοφορία. Η ρευστότητά σας θα μετακυλίσει στην τρέχουσα τιμή {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Είστε ο πρώτος πάροχος ρευστότητας." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Μπορείτε είτε να ψηφίσετε μόνοι σας για κάθε πρόταση είτε να αναθέσετε την ψήφο σας σε ένα τρίτο μέρος." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Τώρα μπορείτε να διαπραγματευτείτε {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Δεν έχετε αρκετές ψήφους για να υποβάλετε πρόταση" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "Ενδέχεται να έχετε χάσει τη σύνδεση δικτύου σας." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Μπορείτε να εξετάσετε το ενδεχόμενο να περιμένετε μέχρι να μειωθούν τα τέλη δικτύου για να ολοκληρώσετε αυτήν τη συναλλαγή." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Πρέπει να συνδέσετε ένα λογαριασμό." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Πρέπει να δώσετε στο έξυπνο συμβόλαιο Uniswap άδεια για να χρησιμοποιήσει το {0} σας. Πρέπει να το κάνετε αυτό μία φορά ανά μάρκα." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Πρέπει να έχετε {formattedProposalThreshold} ψήφους για να υποβάλετε μια πρόταση" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Θα πρέπει να καταθέσετε μόνο ρευστότητα σε Uniswap V3 σε μια τιμή που πιστεύετε ότι είναι σωστή. <0/>Αν η τιμή φαίνεται λανθασμένη, μπορείτε είτε να κάνετε μια ανταλλαγή για να μετακινήσετε την τιμή είτε να περιμένετε κάποιον άλλο να το κάνει." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Θα εισπράξετε επίσης τις χρεώσεις που κερδίζονται από αυτή τη θέση." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Θα λάβετε" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Η ρευστότητα V2 σας" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Οι ενεργές σας θέσεις ρευστότητας V3 θα εμφανίζονται εδώ." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Οι καταθέσεις σας ρευστότητας" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Το μερίδιό σας από την δεξαμενή:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Η θέση σας" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Η θέση σας έχει 0 ρευστότητα, και δεν κερδίζει χρεώσεις." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Η θέση σας θα εμφανιστεί εδώ." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Η θέση σας θα αποτελείται 100% από {0} σε αυτή την τιμή" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Η θέση σας θα είναι 100% {0} σε αυτή την τιμή." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Η θέση σας δεν θα κερδίσει χρεώσεις ή θα χρησιμοποιηθεί σε συναλλαγές έως ότου η τιμή αγοράς μετακινηθεί στο εύρος σας." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Οι θέσεις σας" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Η τιμή σας" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Οι συνολικές μάρκες της δεξαμενής σας:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Το κόστος της συναλλαγής σας θα είναι πολύ υψηλότερο καθώς περιλαμβάνει τον αιθέρα, τις χρεώσεις προμήθειας δηλαδή, για να δημιουργήσετε την δεξαμενή." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Η συναλλαγή σας μπορεί να έχει το προβάδισμα" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Η συναλλαγή σας μπορεί να αποτύχει" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Η συναλλαγή σας θα επανέλθει αν είναι σε εκκρεμότητα για περισσότερο από αυτό το χρονικό διάστημα." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Η συναλλαγή σας θα επανέλθει αν η τιμή αλλάξει δυσμενώς περισσότερο από αυτό το ποσοστό." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Οι συναλλαγές σας θα εμφανιστούν εδώ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Το αζήτητο UNI σας" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "μετά από ολίσθηση" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "επιβεβαίωση" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "για {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "έχει κάλτσες emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "εδώ." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // ή ipfs: // ή όνομα ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "λεπτά" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "μέσω {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "μέσω {0} λίστας μάρκας" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Εισαγωγή διακριτικού} other {Εισαγωγή διακριτικών}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> ανά <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Προσαρμοσμένες Μάρκες" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Κατατέθηκε" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "Κερδισμένες {0} χρεώσεις:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Εκκρεμεί" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / εβδομάδα" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} διαθέσιμες μάρκες UNI-V2 LP" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Ψήφοι" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} ανά {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} μάρκες" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Τιμή:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Προστέθηκε από τον χρήστη" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}χρέωσης 0%" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% πισίνα" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% επιλέξτε" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Εξόρυξη ρευστότητας" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} Μάρκες Παρόχου Ρευστότητας (LP)" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} μάρκες" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} συμβολική γέφυρα" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} ανά {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Επιστροφή στην επισκόπηση ψηφοφοριών" - diff --git a/src/locales/es-ES.po b/src/locales/es-ES.po deleted file mode 100644 index 9716a038df..0000000000 --- a/src/locales/es-ES.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: es_ES\n" -"Language-Team: Spanish\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: es-ES\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Ver en Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(limpiar todo)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(editar)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Eliminar destinatario" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / semana" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Todas las propuestas" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Votos" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Análisis de cuentas y comisiones acumuladas<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Precio actual: <1> <2 /> <3>{0} por {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Consejo: La eliminación de tokens del fondo común revierte su posición en tokens subyacentes a la tasa actual, en proporción a su participación en dicho fondo. Las comisiones acumuladas se incluyen en las cantidades que recibe." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Consejo: Seleccione una acción y describa su propuesta para la comunidad. La propuesta no se puede modificar después de la presentación, por lo que debe verificar toda la información antes de enviarla. El período de votación comenzará de inmediato y tendrá una duración de 7 días. Para proponer una acción personalizada, <1> lea los documentos ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Consejo: Utilice esta herramienta para encontrar grupos v2 que no aparecen automáticamente en la interfaz." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Consejo: Cuando agregue liquidez, recibirá tokens de fondo común que representan su posición. Estos tokens ganan automáticamente tarifas proporcionales a su parte del grupo y se pueden canjear en cualquier momento." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Desbloquee la votación para prepararse para la siguiente propuesta." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Bienvenido al equipo Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Se requiere un umbral mínimo del 0,25% del suministro total de UNI para presentar propuestas." - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Acerca de" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Aceptar" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Cuenta" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Activo" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Añadir" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Agregue <0 /> y <1 /> a Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Añadir delegado+" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Añadir liquidez" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Añadir liquidez V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Añadir liquidez." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Agrega más liquidez" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Añadir {0} a Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Sumar {0}-{1} liquidez" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Sumar liquidez {0}/{1} V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Añadido {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "La dirección no tiene reclamo disponible" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Contra" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Permitir migración de token LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Permitir operaciones de alto impacto de precio y omitir la pantalla de confirmación. Úselo bajo su propio riesgo." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Permitir que el protocolo Uniswap utilice su {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Permitido" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Cantidad" - -#: src/hooks/useSwapCallback.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." -msgstr "Se produjo un error al intentar ejecutar este intercambio. Es posible que deba aumentar su tolerancia al deslizamiento. Si eso no funciona, puede haber una incompatibilidad con el token que está negociando. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Aprobar" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Aprobar token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Aprobar {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Aprobado" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Aprobando" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Aprobando {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Puente Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum está en Beta y puede experimentar un tiempo de inactividad. Durante el tiempo de inactividad, su posición no generará comisiones y no podrá eliminar la liquidez. <0> Leer más." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Como miembro de la comunidad de Uniswap, puede reclamar que UNI sea utilizado para votar y gestionar.<0/><1/><2>Lea más sobre UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Al menos {0} {1} y {2} {3} serán reembolsados a su cartera debido al rango de precios seleccionado." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API de enrutador automático" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponible para depositar: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Lo mejor para pares exóticos." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Lo mejor para la mayoría de los pares." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Lo mejor para pares estables." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Lo mejor para parejas muy estables." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "La ruta al mejor precio cuesta ~{formattedGasPriceString} en gasolina." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Dirección bloqueada" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Puente" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Al añadir liquidez, ganará un 0,3 % de todas las operaciones con este par de forma proporcional a su participación en el fondo común. Las comisiones se añaden al fondo, se acumulan en tiempo real y se pueden reclamar al retirar su liquidez." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Al conectar una billetera, acepta los <0>Términos de servicio Uniswap Labs y reconoce que ha leído y comprendido el Descargo <1>responsabilidad del protocolo." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Cancelado" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Cambiar" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Gráficos" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Verificar el estado de la red" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Eche un vistazo a nuestras guías de navegación y migración de LP v3." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Reclamar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Reclamar <0 /> por {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Reclamar UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Reclamar token de UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Reclamar recompensa UNI por {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Reclamar comisiones" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Reclame sus tokens UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Reclamado" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "¡UNI reclamada!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "¡Reclamado!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Reclamación" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Reclamando UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Reclamando {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Limpiar todo" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Limpiar todo" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Cerrar" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Cerrado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Recoger" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Recoger como WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Cargos de cobro" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Recoger {0}/{1} honorarios" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Recogido" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Recolectando" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Cobro de comisiones" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "El cobro de comisiones extrae aquellas que se encuentren disponibles para usted en ese momento." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Confirmar" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Confirmar suministro" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Confirmar intercambio" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Confirmar esta transacción en su cartera" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Confirmar transacción en billetera" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Conectar cartera" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Conectar una cartera" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Conectarse a una cartera para encontrar fondos comunes" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Conéctese a una cartera para ver su liquidez V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Conéctese a una cartera para ver su liquidez." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Conectado con {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copiado" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copiar dirección" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Limpiar fondo común y suministro" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Crear propuesta" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Crear un par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Crear un fondo común" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Crear una issue en GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Crear un fondo común y sumar {0}/{1} liquidez V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Crear fondo común." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Crear {0}/{1} piscina V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Precio actual" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Precio {0} actual:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema oscuro" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Derrotado" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Votos delegados" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegar el poder de voto a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegado a:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegación de votos" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Depósito" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Importes del depósito" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Depositar Tokens LP UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Depositar liquidez" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Deposite tokens en la red {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Deposite sus tokens de Proveedor de Liquidez para recibir UNI, el token de gestión del protocolo Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Liquidez depositada:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Depositado {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Depositar liquidez" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Descripción" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detallado" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detalles" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Desconectar" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Descartar" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documentos" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "¿No puede visualizar una de sus posiciones v2? <0>Impórtelo." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Los tokens UNI ganados representan acciones de voto en la gestión de Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Editar" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Comparación de eficiencia" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Introduzca un porcentaje" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Introduzca un destinatario" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Introduzca un porcentaje de deslizamiento válido" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Introduzca una dirección para activar una reclamación de UNI. Si la dirección tiene alguna UNI reclamable, se les enviará al presentarla." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Introduzca un monto" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Introduzca una ubicación de lista válida" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Introduzca una dirección de token válida" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Ingrese {0} monto" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Error" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Error al conectar" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Error de conexión. Intente actualizar la página." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Error importando lista" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "La estimación puede diferir debido a la configuración de gas de su billetera" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Tarifa de red estimada" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Ejecutado" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Modo experto" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "El modo experto desactiva el indicador de transacción de confirmación y permite operaciones de deslizamiento elevadas que a menudo resultan en malas tasas y fondos perdidos." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Caducado" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Explore Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "No se pudo cambiar de red desde la interfaz Uniswap. Para usar Uniswap en {0}, debe cambiar la red en su billetera." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Nivel de tarifa" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Nivel de tarifa" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Obteniendo el mejor precio ..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Para" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Para cada fondo común mostrado a continuación, haga clic en migrar a fin de quitar su liquidez de Uniswap V2 y depositarla en Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "De" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Desde (máximo)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Rango completo" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Las posiciones de rango completo pueden ganar menos comisiones que las posiciones concentradas. Obtenga más información <0> aquí ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Obtenga apoyo en Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centro de ayuda" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Esconder" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ocultar posiciones cerradas" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Impacto de precio alto" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Cómo esta aplicación usa las API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Entiendo" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Si compra una ficha de esta lista, es posible que no pueda venderla de nuevo." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importar" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importar lista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importar fondo común" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importar grupo V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importar bajo su propio riesgo" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "En rango" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Aumentar liquidez" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Precios iniciales y cuota de fondo común" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inicializando..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "La entrada es estimada. Venderá como máximo <0>{0} {1} o la transacción se revertirá." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Instalar Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Liquidez insuficiente para esta operación." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insuficiente" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Ajustes de la interfaz" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Par inválido" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Pare inválido." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Entrada de precio no válida" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Rango seleccionado no válido. El precio mínimo debe ser inferior al precio máximo." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Receptor no válido" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Idioma" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Aprender" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Más información sobre cómo proporcionar liquidez" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Aprende más" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Legal y Privacidad" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema de luz" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquidez" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "No se dispone de datos de liquidez." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Premios del proveedor de liquidez" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Los proveedores de liquidez ganan una cuota del 0,3 % en todas las operaciones proporcionales a su participación en el fondo común. Las tarifas se añaden a este fondo común, se acumulan en tiempo real y se pueden reclamar retirando su liquidez." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listas" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Cargado" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Cargando" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gestionar" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gestionar liquidez en la herramienta de recompensas" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Administrar listas de token" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Administrar este grupo." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Máx" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Precio máximo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Precio máximo" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Máx:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Máximo enviado" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menú" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrar" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrar liquidez a V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrar liquidez V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migre sus fichas de liquidez desde Uniswap V2 a Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrate {0}/{1} liquidez a V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migración" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Precio mínimo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Precio mínimo" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Mín:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Mínimo recibido" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependencias faltantes" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Más" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Tarifa de red" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Advertencia de red" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "¡Las tarifas de red superan el 50% del monto del intercambio!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nueva posición" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "No se encontró liquidez V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "No hay fondos comunes activos" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Sin datos" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Sin descripción." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "No se encontró liquidez." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Fondo común no encontrado." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "No se encontraron propuestas." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "No se han encontrado resultados." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "No creado" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "APAGADO" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ENCENDIDO" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "UTILICE ESTE MODO ÚNICAMENTE SI SABE LO QUE ESTÁ HACIENDO." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Apagado" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Encendido" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Una vez que esté satisfecho con la comisión, haga clic en el suministro para revisar." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Solo los votos de UNI que fueron autodelegados o delegados a otra dirección antes del bloque {0} son elegibles para votar." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "¡Ups! Se ha producido un error desconocido. Actualice la página o acceda desde otro navegador o dispositivo." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Puerta de enlace del optimismo" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "El optimismo está en Beta y puede experimentar tiempo de inactividad. El optimismo espera que el tiempo de inactividad planificado actualice la red en un futuro próximo. Durante el tiempo de inactividad, su posición no generará comisiones y no podrá eliminar la liquidez. <0>Leer más." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan optimista" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Fuera de rango" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "El rendimiento es estimado. Si el precio cambia en más de {0} %, su transacción se revertirá." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "El rendimiento es estimado. Recibirá al menos <0>{0} {1} o la transacción se revertirá." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Lo producido se enviará a <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Propietario" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Fondos comunes que participan" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Pendiente" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Confirme que desea eliminar esta lista escribiendo ELIMINAR" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Conéctese a la capa 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Conéctese a la red Ethereum apropiada." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Escribe la palabra \"{confirmWord}\" para activar el modo experto." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Puente poligonal" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Fondo común" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "¡Fondo común encontrado!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tasa de fondo común" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tasa de fondo común" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Fondo común de tokens en el fondo común de recompensas:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Conjunto {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Vista general del fondo común" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Avance" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Precio" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Diferencia de precios:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impacto en el precio" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "El Impacto de precios es demasiado alto" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Precio actualizado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Rango de precios" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Precio:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Precio y participación en el fondo común" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Propuesta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Propuesta enviada" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Título de la propuesta" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propuestas" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Las propuestas enviadas por los miembros de la comunidad aparecerán aquí." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Acción propuesta" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Proponente" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Descargo de responsabilidad del protocolo" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Puesto en cola" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tarifas" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Leer más sobre UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Lea más sobre la gestión de Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Lea más acerca de proporcionar liquidez" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Leer más sobre activos no soportados" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Transacciones recientes" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Recipiente" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Eliminar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Eliminar <0 /> y <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Eliminar cantidad" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Remover delegado" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Quitar liquidez" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Eliminar lista" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Eliminando {0} {1} y {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Eliminando {0} {1} y{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Solicitar características" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Retorno" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Buscar nombre o pegar dirección" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Seleccione Emparejar" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Seleccione una red" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Seleccione un token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Seleccione un token para encontrar su liquidez v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Seleccione una acción" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Rango seleccionado" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Auto" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Autodelegado" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Establecer rango de precio" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Fijar precio inicial" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Participación del fondo común" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Participación del fondo común:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Mostrar Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Mostrar posiciones cerradas" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Simple" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolerancia de deslizamiento" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Algunos activos no están disponibles a través de esta interfaz porque puede que no funcionen bien con los contratos inteligentes o que no podamos permitir el comercio por razones legales." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Algo salió mal" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Paso 1. Obtener tokens de liquidez UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Presentar nueva propuesta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Envío de propuesta" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Enviando Voto" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Tuvo éxito" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Éxito" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Suministro" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Suministrando {0} {1} y {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Intercambiar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Cambiar <0 /> por exactamente <1 />" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Intercambiar de todos modos" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Cambiar exactamente <0 /> por <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Error de intercambio: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Intercambiando {0} {1} por {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Gracias por ser parte de la comunidad Uniswap <0 />" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "El% que ganarás en comisiones." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "El invariante Uniswap x*y=k no estaba satisfecho con el intercambio. Esto generalmente significa que uno de los tokens que está intercambiando incorpora un comportamiento personalizado en la transferencia." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "La aplicación obtiene datos de blockchain del servicio alojado de The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "La aplicación obtiene datos en cadena y construye llamadas de contrato con una API de Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "La aplicación obtiene la ruta comercial óptima de un servidor de Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "La aplicación registra estadísticas de uso anónimas para mejorar con el tiempo." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "La aplicación recopila de forma segura la dirección de su billetera y la comparte con TRM Labs Inc. por razones de riesgo y cumplimiento." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "El costo de enviar esta transacción es más de la mitad del valor del monto de entrada." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "La cantidad actual de gas rápido para enviar una transacción en L1. Las tarifas de gas se pagan en la moneda nativa Ether (ETH) de Ethereum y están denominadas en GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "La diferencia estimada entre los valores en USD de los importes de entrada y salida." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "El token de entrada no se puede transferir. Puede haber un problema con el token de entrada." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "El precio de mercado está fuera del rango de precios especificado. Depósito de un solo activo." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "El número de bloque más reciente en esta red. Los precios se actualizan en cada bloque." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "El token de salida no se puede transferir. Puede haber un problema con el token de salida." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "El token de salida no se puede transferir. Puede haber un problema con el token de salida. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "El precio de este fondo común está fuera de su rango seleccionado. Su posición no está ganando comisiones en este momento." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "El precio de este fondo común está dentro de su rango seleccionado. Su posición actualmente está ganando comisiones." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "La proporción de tokens que añada establecerá el precio de este fondo común." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "No se pudo enviar la transacción porque la fecha límite ha pasado. Verifique que el plazo de su transacción no sea demasiado corto." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "No hay datos de liquidez." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Esta aplicación utiliza las siguientes API de terceros:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Este grupo debe inicializarse antes de poder agregar liquidez. Para inicializar, seleccione un precio inicial para el grupo. Luego, ingrese su rango de precio de liquidez y el monto del depósito. Las tarifas del gas serán más altas de lo habitual debido a la transacción de inicialización." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Esta ruta optimiza su producción total al considerar rutas divididas, múltiples saltos y el costo de gasolina de cada paso." - -#: src/components/SearchModal/ImportToken.tsx -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/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." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Esta herramienta migrará su liquidez {0} a V3. El proceso es totalmente infalible gracias a la" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Esta transacción no se realizará correctamente debido al movimiento de precios. Intente aumentar su tolerancia al deslizamiento. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Esta transacción no se realizará correctamente debido al movimiento del precio o al cargo por transferencia. Intente aumentar su tolerancia al deslizamiento." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Consejo: los tokens personalizados se almacenan localmente en su navegador" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "A" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "A (al menos)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token no admitido" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total depositado" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Total de depósitos" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Ruta comercial" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Ajustes de la transacción" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transacción enviada" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transacción completada en" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Fecha límite de la transacción" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transacción rechazada." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token de transferencia" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Inténtalo de nuevo" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Activar el modo experto" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "Ha llegado UNI" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Las fichas UNI representan acciones de voto en la gestión de Uniswap. Puede votar sobre cada propuesta o puede delegar sus votos a un tercero." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} quemado" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Se requieren tokens LP UNI-V2. Una vez que ha añadido liquidez al fondo común {0}-{1} podrá replantear sus tokens de liquidez en esta página." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI sin reclamar" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Tarifas no reclamadas" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Indeterminado" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Error inesperado. No se pudo estimar el gas para el canje." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema inesperado con la estimación del gas. Inténtalo de nuevo." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Gestión Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Condiciones de servicio de Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponible en: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "La gobernanza de Uniswap solo está disponible en la Capa 1. Cambie su red a Ethereum Mainnet para ver Propuestas y Votar." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Minería de liquidez Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Contrato de migración Uniswap" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Fuente desconocida" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Error desconocido{0}. Intente aumentar su tolerancia al deslizamiento. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Desbloquear votos" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Desbloquear votación" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Desbloqueo de votos" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Activo no soportado" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Activos no soportados" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Intitulado" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Desenvolver <0/> a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Actualizar delegación" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Actualizar lista" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Utilice la API de Uniswap Labs para obtener cotizaciones más rápidas." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Usuario" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 no está disponible en la capa 2. Cambie a la capa 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Liquidez V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Precio V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Ver comisiones acumuladas y sus estadísticas<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Ver lista" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Ver en Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Ver en el explorador" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Mostrar la transacción en el explorador" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Votaciones" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Votar en contra" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Vota por" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Votar en contra de la propuesta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Votar en contra de la propuesta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote en contra de la propuesta {proposalKey} con el motivo \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Votar por la propuesta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Vote por la propuesta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote por la propuesta {proposalKey} con el motivo \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Votar para abstenerse sobre la propuesta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Votar para abstenerse sobre la propuesta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote para abstenerse en la propuesta {proposalKey} con el motivo \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Voto finalizado {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "La votación termina aproximadamente {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "La votación comienza aproximadamente {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Esperando por confirmación" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Dirección de billetera o nombre de ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Recompensas semanales" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Bienvenido al equipo Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Cuando usted reclama sin retirar su liquidez permanece en el fondo común de minería." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Cuando usted retire, el contrato reclamará automágicamente UNI en su nombre!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Cuando usted retire, su UNI es reclamado y su liquidez es removida del fondo común de minería." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Retirar" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Retirar y reclamar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Retire liquidez depositada" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Retirando {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "¡Retirado UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Envoltura" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Envuelva <0/> a {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Red incorrecta" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Ya tienes una propuesta activa o pendiente" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Está creando un grupo" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Usted es el primer proveedor de liquidez para este grupo de Uniswap V3. Su liquidez migrará al precio actual de {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Usted es el primer proveedor de liquidez." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Usted puede votar sobre cada propuesta usted mismo o delegar sus votos a un tercero." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Ahora puede operar con {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "No tienes suficientes votos para enviar una propuesta." - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Todavía no tiene liquidez en este fondo común." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Podría considerar esperar hasta que bajen las tarifas de la red para completar esta transacción." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Debe conectar una cuenta." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Debes dar permiso a los contratos inteligentes de Uniswap para usar tu {0}. Solo tienes que hacerlo una vez por token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Debe tener {formattedProposalThreshold} votos para enviar una propuesta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Usted sólo debe depositar liquidez en Uniswap V3 a un precio que usted considere correcto. <0/>Si el precio parece incorrecto, puedes hacer un intercambio para mover el precio o esperar a que alguien lo haga." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "También cobrará las comisiones ganadas por esta posición." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Recibirá" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Su liquidez V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Sus posiciones activas de liquidez V3 aparecerán aquí." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Sus depósitos de liquidez" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Participación en el fondo:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Su posición" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Su posición tiene 0 liquidez y no está cobrando tasas." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Tu posición aparecerá aquí." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Tu posición será 100 % compuesta por {0} a este precio" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Su posición será 100 % {0} a este precio." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Su posición no ganará comisiones ni se utilizará en operaciones hasta que el precio del mercado se encuentre dentro de su rango." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Sus posiciones" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Su tarifa" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Su total de tokens de fondo común:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Su costo de transacción será mucho más alto ya que incluye el gas para crear el fondo común." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Su transacción puede ser frontrun" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Tu transacción puede fallar" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Su transacción se revertirá si está pendiente por más de este periodo de tiempo." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Su transacción se revertirá si el precio cambia desfavorablemente más de este porcentaje." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Sus transacciones aparecerán aquí..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Su UNI no reclamada" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "después del deslizamiento" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "confirmar" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "para {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "tiene socks emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "aquí." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// o ipfs:// o nombre ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minutos" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "vía {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "a través de la lista de fichas {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importar token} other {Importa tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> por <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} tokens personalizados" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} depositado" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} comisiones ganadas:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} pendiente" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / semana" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} tokens LP UNI-V2 disponibles" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Votos" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} por {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Precio {0} {1}:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Agregado por el usuario" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0} %" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Nivel de tarifa del {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% piscina" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% seleccionar" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Minería de liquidez" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} NFT LP" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} tokens LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} fichas" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token puente" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider} %" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} por {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Volver a la vista general de fondos comunes" - diff --git a/src/locales/fi-FI.po b/src/locales/fi-FI.po deleted file mode 100644 index 7e17a6be54..0000000000 --- a/src/locales/fi-FI.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: fi_FI\n" -"Language-Team: Finnish\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: fi\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Näytä Resurssienhallinnassa)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(clear all)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(edit)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Poista vastaanottaja" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / viikko" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Kaikki ehdotukset" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Äänet" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Tilin analytiikka ja kertyneet maksut<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Nykyinen hinta: <1> <2 /> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Vinkki: Poolirahakkeiden poistaminen palauttaa positiosi taustalla oleviin rahakkeisiin nykyisen kurssin mukaisesti, suhteutettuna omaan osuuteesi poolista. Kertyneet palkkiot sisältyvät saamiisi määriin." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Vinkki: Valitse toiminto ja kuvaa ehdotuksesi yhteisölle. Ehdotusta ei voi muuttaa lähettämisen jälkeen, joten tarkista kaikki tiedot ennen lähettämistä. Äänestyskausi alkaa välittömästi ja kestää 7 päivää. Voit ehdottaa mukautettua toimintoa <1> lukemalla asiakirjat ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Vinkki: Käytä tätä työkalua etsiäksesi v2-pooleja, jotka eivät automaattisesti näy käyttöliittymässä." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Vinkki: Kun lisäät likviditeettiä, saat poolin rahakkeita, jotka edustavat positiotasi. Nämä rahakkeet ansaitsevat automaattisesti palkkioita suhteessa osuutesi poolista, ja ne voidaan lunastaa milloin tahansa." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Vapauta äänestys valmistautuaksesi seuraavaan ehdotukseen." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Tervetuloa Team Unicorniin :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Ehdotusten jättämiseen vaaditaan vähintään 0,25 prosentin kynnysarvo UNI: n kokonaismäärästä" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Tietoa" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Hyväksy" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Tili" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktiivinen" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Lisää" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Lisää <0/> ja <1/> Uniswap V2: een" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Lisää delegaatti +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Lisää likviditeettiä" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Lisää V2-likviditeettiä" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Lisää likviditeettiä." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Lisää lisää likviditeettiä" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Lisää {0} Metamaskiin <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Lisää {0}-{1} likviditeetti" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Lisää {0}/{1} V3 likviditeetti" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Lisätty {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Osoitteella ei ole lunastettavaa" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Vastaan" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Salli LP-rahakkeen siirtäminen" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Salli korkean hintavaikutuksen kaupat ja ohita vahvistusnäyttö. Käytä omalla vastuullasi." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Salli Uniswap-protokollan käyttää {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Sallittu" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Määrä" - -#: src/hooks/useSwapCallback.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." -msgstr "Tapahtui virhe yritettäessä suorittaa tämä vaihto. Saatat joutua lisäämään luistonsietokykyäsi. Jos se ei toimi, kaupankäynnin kohteena olevan tunnuksen kanssa saattaa olla ristiriita. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Hyväksy" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Hyväksy tunnus" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Hyväksy {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Hyväksytty" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Hyväksytään" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Hyväksytään {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum -silta" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum on beta -vaiheessa, ja se voi joutua seisokkeihin. Seisokkien aikana asemasi ei ansaitse palkkioita etkä voi poistaa likviditeettiä. <0> Lue lisää." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Oletko varma?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Uniswap-yhteisön jäsenenä voit lunastaa UNI-rahakkeita käytettäväksi äänestämiseen ja hallintoon.<0/><1/><2>Lue lisää UNIsta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Vähintään {0} {1} ja {2} {3} palautetaan lompakkoosi valitun hinta-alueen vuoksi." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automaattinen" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Talletettavissa: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Paras eksoottisille pareille." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Paras useimmille pareille." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Paras vakaille pareille." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Paras erittäin vakaille pareille." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Paras hinta reitti maksaa ~{formattedGasPriceString} bensaa." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Estetty osoite" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Silta" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Lisäämällä likviditeettiä ansaitset 0,3 % kaikista tämän parin kaupoista suhteessa osuutesi poolista. Palkkiot lisätään pooliin, ne kertyvät reaaliajassa, ja ne voidaan lunastaa vetämällä likviditeettisi takaisin." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Yhdistämällä lompakon hyväksyt Uniswap Labsin <0>-palveluehdot ja vahvistat lukeneesi ja ymmärtäväsi Uniswap <1>-protokollan vastuuvapauslausekkeen." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Peruutettu" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Muuta" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Kaaviot" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Tarkista verkon tila" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Tutustu v3 LP -läpikävelyymme ja siirto-oppaisiimme." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Lunasta" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Väitä <0/> {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Lunasta UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Lunasta UNI-rahake" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Lunasta UNI -palkinto {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Lunasta palkkiot" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Lunasta UNI-rahakkeesi" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Lunastettu" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI lunastettu!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Lunastettu!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Lunastetaan" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "UNIn lunastaminen" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Lunastetaan {0} UNIa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Tyhjennä kaikki" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Tyhjennä kaikki" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Sulje" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Suljettu" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Kerää" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Kerää WETH:na" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Kerää palkkiot" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Kerää {0}/{1} -maksuja" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Kerätty" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Kerätään" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Kerätään palkkioita" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Keräämällä palkkiot lunastat tällä hetkellä saatavilla olevat palkkiot." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Vahvista" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Vahvista tarjonta" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Vahvista vaihto" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Vahvista lompakkosi tapahtuma" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Vahvista transaktio lompakossa" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Yhdistä lompakko" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Yhdistä lompakko" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Yhdistä lompakkoon löytääksesi pooleja" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Yhdistä lompakkoon nähdäksesi V2-likviditeettisi." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Yhdistä lompakkoon nähdäksesi likviditeettisi." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Yhdistetty kohteeseen {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopioitu" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopioi osoite" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Luo pooli ja tarjonta" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Luo ehdotus" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Luo pari" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Luo pooli" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Luo ongelma GitHubiin" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Luo pooli ja lisää {0}/{1} V3-likviditeetti" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Luo pooli." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Luo {0}/{1} V3 pool" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Nykyinen hinta" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Nykyinen {0} hinta:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tumma teema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Voitettu" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegoi äänet" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Siirrä äänioikeus {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegoitu henkilölle:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegoidaan ääniä" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Talletus" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Talletusten määrä" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Talleta UNI-V2 LP -rahakkeita" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Talleta likviditeettiä" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Talleta tokeneja {label} verkkoon." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Talleta likviditeetin tarjoajan rahakkeesi saadaksesi UNI-rahakkeita, Uniswap-protokollan hallintorahakkeita." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Talletettu likviditeetti:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Talletettu {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Talletetaan likviditeettiä" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Kuvaus" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Yksityiskohtainen" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Tiedot" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Katkaise yhteys" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Sulje" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Asiakirjat" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Etkö näe yhtä v2-positiostasi? <0>Tuo se." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Ansaitut UNI-rahakkeet edustavat äänioikeusosakkeita Uniswapin hallinnossa." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Muokkaa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Tehokkuuden vertailu" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Syötä prosenttiosuus" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Syötä vastaanottaja" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Syötä kelvollinen luistoprosentti" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Syötä osoite, joka käynnistää UNI-lunastuksen. Jos osoitteella on lunastettavia UNI-rahakkeita, ne lähetetään vastaanottajalle, kun pyyntö on tehty." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Syötä summa" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Syötä kelvollinen luettelon sijainti" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Syötä kelvollinen rahakeosoite" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Syötä {0} summa" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Virhe" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Virhe yhdistettäessä" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Virhe yhdistettäessä. Yritä päivittää sivu." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Virhe tuotaessa luetteloa" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Arvio voi vaihdella lompakkosi kaasuasetuksistasi johtuen" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Arvioitu verkkomaksu" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Suoritettu" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "Laajennetut tulokset passiivisista rahakeluetteloista" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "Odotettu tulos" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Asiantuntijatila" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Asiantuntijatila ottaa vahvistuskehotuksen pois käytöstä ja mahdollistaa korkean luiston kaupat, jotka johtavat usein huonoihin kursseihin ja varojen menettämiseen." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Vanhentunut" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Tutustu Uniswap Analyticsiin." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Verkkojen vaihtaminen Uniswap-liittymästä epäonnistui. Jotta voit käyttää Uniswapia {0}, sinun on vaihdettava verkko lompakossasi." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Palkkiotaso" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Palkkiotaso" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Haetaan parasta hintaa..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Kohteelle" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Kunkin alla olevan poolin kohdalla paina \"siirrä\" poistaaksesi likviditeettisi Uniswap V2:sta ja tallettaaksesi sen Uniswap V3:een." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Alkaen" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Alkaen (enintään)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Täysi valikoima" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Täyden valikoiman positiot voivat ansaita vähemmän palkkioita kuin keskitetyt positiot. Lisätietoja <0> täältä ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Hae apua Discordista" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Ohjekeskus" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Piilottaa" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Piilota suljetut positiot" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Korkea hintavaikutus" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Kuinka tämä sovellus käyttää sovellusliittymiä" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Ymmärrän" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Jos ostat rahakkeen tästä luettelosta, et ehkä pysty myymään sitä takaisin." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Tuo" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Tuo luettelo" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Tuo pooli" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Tuo V2-pooli" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Tuo omalla vastuullasi" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Välillä" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Lisää likviditeettiä" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Alkuhinnat ja poolin osake" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Valmistellaan..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Syöte on arvioitu. Myyt korkeintaan <0>{0} {1} tai tapahtuma perutaan." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Asenna Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Ei riittävästi likviditeettiä tälle kaupalle." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Riittämätön {0} saldo" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Käyttöliittymän asetukset" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Virheellinen pari" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Virheellinen pari." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Virheellinen hintatieto" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Virheellinen vaihteluväli valittu. Minimihinnan on oltava pienempi kuin maksimihinta." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Virheellinen vastaanottaja" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Kieli" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Opi" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Lisätietoja likviditeetin tarjoamisesta" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Lue lisää" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Laki ja yksityisyys" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Kevyt teema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likviditeetti" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likviditeettitietoja ei ole saatavilla." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Likviditeetin tarjoajan palkinnot" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likviditeetin tarjoajat ansaitsevat 0,3 prosentin palkkion kaikista kaupoista suhteessa niiden osuuteen poolista. Palkkiot lisätään pooliin, ne kertyvät reaaliajassa, ja niitä voidaan lunastaa vetämällä likviditeettisi takaisin." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Luettelot" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Ladattu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Ladataan" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Hallitse" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Hallinnoi palkintopoolin likviditeettiä" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Hallitse rahakeluetteloita" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Hallitse tätä poolia." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maksimi" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maksimihinta" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maksimihinta" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maksimi:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksimimäärä lähetetty" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Valikko" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Siirrä" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Siirrä likviditeetti V3:een" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Siirrä V2-likviditeetti" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Siirrä likviditeettirahakkeesi Uniswap V2:sta Uniswap V3:een." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Siirrä {0}/{1} -likviditeetti V3: een" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Siirretään" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Minimihinta" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimihinta" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Minimi:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimi vastaanotettu" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Puuttuvat riippuvuudet" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Lisää" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Verkkomaksu" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Varoitus verkosta" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Verkkomaksut ylittävät 50 % vaihtosummasta!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Uusi positio" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "V2-likviditeettiä ei löytynyt." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Ei aktiivisia pooleja" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Ei dataa" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Ei kuvausta." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Likviditeettiä ei löytynyt." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Poolia ei löytynyt." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Ehdotuksia ei löytynyt." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Tuloksia ei löytynyt." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Ei luotu" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "KÄYTÄ TÄTÄ TILAA VAIN, JOS TIEDÄT MITÄ TEET." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Off" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "On" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Kun olet tyytyväinen kurssiin, paina \"tarjonta\" tarkistaaksesi." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Ainoastaan itsedelegoidut ja toiseen osoitteeseen ennen lohkoa {0} delegoidut UNI-äänet ovat oikeutettuja äänestämään." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Hups! Tapahtui tuntematon virhe. Ole hyvä ja päivitä sivu tai vieraile sivulla toisella selaimella tai laitteella." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimismi Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimismi on beta-vaiheessa ja saattaa kokea seisokkeja. Optimismi odottaa suunniteltujen seisokkien päivittävän verkkoa lähitulevaisuudessa. Seisokkien aikana asemasi ei ansaitse maksuja etkä pysty poistamaan likviditeettiä. <0>Lue lisää." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistinen eetteriskannaus" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Alueen ulkopuolella" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Tuotto on arvio. Jos hinta muuttuu enemmän kuin {0}%, tapahtuma perutaan." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Tuotos on arvioitu. Saat vähintään <0>{0} {1} tai tapahtuma perutaan." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Tuotto lähetetään kohteeseen <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Omistaja" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Osallistuvat poolit" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Odottaa" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Vahvista, että haluat poistaa tämän luettelon kirjoittamalla POISTA" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Muodosta yhteys kerrokseen 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Ole hyvä ja yhdistä asianmukaiseen Ethereum-verkkoon." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Ole hyvä ja kirjoita sana \"{confirmWord}\" ottaaksesi asiantuntijatilan käyttöön." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygon Bridge" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pooli" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pooli löydetty!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Poolin kurssi" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Poolin kurssi" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Poolirahakkeita palkintopoolissa:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Poolattu {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Poolien yleiskatsaus" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Esikatselu" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Hinta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Hintaero:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Hintavaikutus" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Liian suuri hintavaikutus" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Hinta päivitetty" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Hintaluokka" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Hinta:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Hinnat ja poolin osuus" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Ehdotus" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Ehdotus lähetetty" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Ehdotuksen otsikko" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Ehdotukset" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Yhteisön jäsenten tekemät ehdotukset näkyvät täällä." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Ehdotettu toimi" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Ehdottaja" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokollan vastuuvapauslauseke" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Jonossa" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Kurssit" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Lue lisää UNIsta" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Lue lisää Uniswapin hallinnosta" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Lue lisää likviditeetin parantamisesta" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Lue lisää ei-tuetuista varoista" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Viimeisimmät tapahtumat" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Vastaanottaja" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Poista" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Poista <0/> ja <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Poista summa" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Poista delegaatti" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Poista likviditeetti" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Poista luettelo" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Poistetaan {0} {1} ja {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Irrottaminen {0} {1} ja{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Pyydä ominaisuuksia" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Palaa" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Etsi nimeä tai liitä osoite" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Valitse Pariliitos" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Valitse verkko" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Valitse rahake" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Valitse rahake löytääksesi v2-likviditeettisi." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Valitse toiminto" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Valittu vaihteluväli" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Itse" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Delegoi itse" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Aseta hintaluokka" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Aseta aloitushinta" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Poolin osuus" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Poolin osuus:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Näytä Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Näytä suljetut sijainnit" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Yksinkertainen" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Luistonsieto" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Jotkut varat eivät ole käytettävissä tämän käyttöliittymän kautta, koska ne eivät saata toimia hyvin älykkäiden sopimusten kanssa tai emme voi sallia kaupankäyntiä oikeudellisista syistä." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Jotain meni pieleen" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Vaihe 1. Hanki UNI-V2 likviditeettirahakkeita" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Lähetä uusi ehdotus" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Lähetetään ehdotus" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Lähetetään ääntä" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Menestyi" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Menestys" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Tarjonta" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Toimitetaan {0} {1} ja {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Vaihda" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Vaihda <0/> täsmälleen <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Vaihda silti" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Vaihda täsmälleen <0/> arvoon <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Vaihto epäonnistui: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Vaihdetaan {0} {1} kohteeseen {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Kiitos, että olet osa Uniswap-yhteisöä <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% Ansaitset palkkioita." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Vaihto ei tyydyttänyt Uniswap-invarianttia x*y=k. Tämä tarkoittaa yleensä sitä, että yksi vaihtamistasi rahakkeista käyttäytyy mukautetusti siirron yhteydessä." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Sovellus hakee lohkoketjutiedot The Graphin isännöidyltä palvelulta." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Sovellus hakee ketjun tietoja ja muodostaa sopimuskutsuja Infura API:lla." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Sovellus hakee optimaalisen kauppareitin Uniswap Labs -palvelimelta." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Sovellus kirjaa anonymisoituja käyttötilastoja parantaakseen ajan myötä." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Sovellus kerää turvallisesti lompakkosi osoitteesi ja jakaa sen TRM Labs Inc:n kanssa riskien ja vaatimustenmukaisuuden vuoksi." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Tämän tapahtuman lähetyskustannukset ovat yli puolet syötetyn summan arvosta." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Nykyinen nopea kaasun määrä tapahtuman lähettämiseksi L1:ssä. Kaasumaksut maksetaan Ethereumin kotivaluutassa Ether (ETH) ja GWEI-määräisenä." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Arvioitu ero panosten ja tulosten USD-arvojen välillä." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Syöterahaketta ei voida siirtää. Syöterahakkeessa voi olla ongelma." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Markkinahinta on määritellyn hintaluokan ulkopuolella. Vain yksittäisen omaisuuserän talletus." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Viimeisin lohkonumero tässä verkossa. Hinnat päivitetään joka lohkossa." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Tulosrahaketta ei voida siirtää. Tulosrahakkeessa voi olla ongelma." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Tulostunnusta ei voi siirtää. Tulostunnuksessa voi olla ongelma. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Tämän poolin hinta on valitsemasi hintaluokan ulkopuolella. Positiosi ei tällä hetkellä ansaitse palkkioita." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Tämän poolin hinta sopii vallittuun hintaluokkaan. Positiosi ansaitsee tällä hetkellä palkkioita." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Lisäämiesi rahakkeiden suhde määrittää tämän poolin hinnan." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Tapahtumaa ei voitu lähettää, koska määräaika on ohi. Tarkista, että tapahtumasi määräaika ei ole liian lyhyt." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Likviditeettitietoja ei ole." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Tämä sovellus käyttää seuraavia kolmannen osapuolen sovellusliittymiä:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Tämä pooli on alustettava, ennen kuin voit lisätä likviditeettiä. Alusta valitsemalla altaan aloitushinta. Syötä sitten likviditeetin hintaluokka ja talletussumma. Kaasumaksut ovat tavallista korkeampia alustustapahtuman takia." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Tämä reitti optimoi kokonaistehosi ottamalla huomioon jaetut reitit, useita hyppyjä ja kunkin askeleen polttoainekustannukset." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Uniswap Labs -sovellus ei tue tätä tunnusta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Tämä työkalu siirtää {0} likviditeettisi turvallisesti V3:lle. Prosessi on täysin luotettava kiitos" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Tämä kauppa ei onnistu hintaliikkeen vuoksi. Yritä lisätä liukastumistoleranssia. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Tämä tapahtuma ei onnistu joko hinnanmuutoksen tai siirtopalkkion vuoksi. Yritä nostaa luistonsietoprosenttia." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Vinkki: Mukautetut rahakkeet tallennetaan paikallisesti selaimellesi" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Vastaanottaja" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Mihin (ainakin)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Tunnusta ei tueta" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Rahakkeet" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Talletettu yhteensä" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Talletuksia yhteensä" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Kauppareitti" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Tapahtuma-asetukset" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Tapahtuma lähetetty" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Kauppa suoritettu vuonna" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Tapahtuman määräaika" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Tapahtuma hylätty." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Siirtotunnus" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Yritä uudelleen" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Ota asiantuntijatila käyttöön" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI on saapunut" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI-rahakkeet edustavat Uniswapin hallinnon äänestysosakkeita. Voit äänestää jokaisesta ehdotuksesta itse tai delegoida äänesi kolmannelle osapuolelle." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Poltettu" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP -rahakkeita vaaditaan. Kun olet lisännyt likviditeettiä {0}-{1} pooliin, voit käyttää likviditeettirahakkeitasi tällä sivulla." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Lunastamaton UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Lunastamattomat palkkiot" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Ei määritelty" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Odottamaton virhe. Vaihdon kaasua ei voitu arvioida." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Odottamaton ongelma kaasun arvioinnissa. Yritä uudelleen." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswapin hallinto" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labsin käyttöehdot" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap käytettävissä: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-hallinta on käytettävissä vain kerroksessa 1. Vaihda verkko Ethereum Mainnet -palveluun nähdäksesi ehdotuksia ja äänestystä." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswapin likviditeetin louhinta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswapin siirtosopimus ↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Tuntematon lähde" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Tuntematon virhe{0}. Yritä lisätä liukastumissietokykyäsi. Huomaa: siirto- ja uudelleenkorotusmaksut eivät ole yhteensopivia Uniswap V3: n kanssa." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Vapauta äänet" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Vapauta äänestys" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Vapautetaan ääniä" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Ei-tuettu vara" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Ei-tuettuja varoja" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Nimetön" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Pakkaus <0/> kohteeseen {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Päivitä delegointi" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Päivitä luettelo" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Käytä Uniswap Labs -sovellusliittymää saadaksesi nopeammat tarjoukset." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Käyttäjä" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 ei ole käytettävissä kerroksessa 2. Vaihda kerrokseen 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2-likviditeetti" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Hinta:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Näytä kertyneet palkkiot ja analytiikka<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Näytä luettelo" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Näkymä Etherscanissa" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Näytä Explorerissa" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Näytä tapahtuma Explorerissa" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Äänestä" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Äänestä vastaan" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Äänestä puolesta" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Äänestä ehdotusta {proposalId} vastaan" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Äänestä ehdotusta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Äänestä ehdotusta {proposalKey} syystä{0}" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Äänestä ehdotuksen {proposalId} puolesta" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Äänestä ehdotusta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Äänestä ehdotusta {proposalKey} syystä{0}" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Äänestää tyhjää ehdotuksesta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Äänestää tyhjää ehdotuksesta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Äänestä tyhjää ehdotuksesta {proposalKey} syystä{0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Äänestys päättynyt {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Äänestys päättyy noin {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Äänestys alkaa noin {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Odotetaan vahvistusta" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Lompakon osoite tai ENS-nimi" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Viikoittaiset palkinnot" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Tervetuloa Team Unicorniin :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Kun lunastat vetäytymättä, likviditeettisi jää louhintapooliin." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Kun vetäydyt, sopimus lunastaa automaattisesti UNIn puolestasi!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Kun vetäydyt, UNI lunastetaan ja likviditeettisi poistetaan louhintapoolista." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Vetäydy" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Vetäydy & lunasta" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Vedä talletettu likviditeetti takaisin" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Vedetään pois {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 vedetty pois!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Wrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Wrap <0/> kohteeseen {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Väärä verkko" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Sinulla on jo aktiivinen tai odottava ehdotus" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Olet luomassa poolia" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Olet tämän Uniswap V3 -poolin ensimmäinen likviditeetin tarjoaja. Likviditeettisi siirtyy nykyiseen {0} hintaan." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Olet ensimmäinen likviditeetin tarjoaja." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Voit joko äänestää jokaisesta ehdotuksesta itse tai delegoida äänesi kolmannelle osapuolelle." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Voit nyt käydä kauppaa {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Sinulla ei ole tarpeeksi ääniä ehdotuksen lähettämiseen" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Sinulla ei ole vielä likviditeettiä tässä poolissa." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Voit harkita tämän tapahtuman suorittamista odottamalla, kunnes verkkomaksut laskevat." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Sinun on yhdistettävä tili." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Sinun täytyy antaa Uniswapin älykkäille sopimuksille lupa käyttää {0}. Sinun täytyy tehdä tämä vain kerran per rahake." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Sinulla on oltava {formattedProposalThreshold} ääntä voidaksesi lähettää ehdotuksen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Sinun tulisi tallettaa likviditeettiä Uniswap V3:een ainoastaan hintaan, jonka uskot olevan oikein. <0/>Jos hinta vaikuttaa virheelliseltä, voit joko vaihtaa hintaa tai odottaa jonkun muun tekevän niin." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Keräät myös tästä positiosta ansaittuja palkkioita." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Tulet vastaanottamaan" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Sinun V2-likviditeettisi" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Aktiiviset V3-likviditeettipositiosi näkyvät täällä." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Sinun likviditeettitalletuksesi" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Sinun pooliosuutesi:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Oma positiosi" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Positiosi likviditeetti on 0, eikä se ansaitse palkkioita." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Sijaintisi näkyy täällä." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Positiosi tulee olemaan 100-prosenttisesti {0} tällä hinnalla" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Positiosi tulee olemaan 100-prosenttisesti {0} tällä hinnalla" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Positiosi ei ansaitse maksuja eikä sitä käytetä kaupankäynnissä ennen kuin markkinahinta sopii hintaluokkaasi." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Sinun positiosi" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Sinun kurssisi" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Kaikki poolirahakkeesi:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Tapahtuman hinta on paljon korkeampi, koska se sisältää kaasua poolin luomiseen." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Tapahtumasi voi joutua front running -toiminnan kohteeksi" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Tapahtumasi voi epäonnistua" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Tapahtumasi peruuntuu, jos se odottaa tätä ajanjaksoa kauemmin." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Tapahtumasi peruuntuu, jos hinta muuttuu epäsuotuisasti tätä prosenttiosuutta enemmän." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Tapahtumasi näkyvät täällä..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Lunastamattomat UNIsi" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "liukumisen jälkeen" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "vahvista" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "kohteelle {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "on sukkahymiö" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "tässä." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// tai ipfs:// tai ENS-nimi" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuuttia" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "kohteen {0} kautta" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "rahakeluettelon {0} kautta" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Tuo rahake} other {Tuo rahakkeita}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} mukautettua rahaketta" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} talletettu" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Ansaitut palkkiot:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} odottaa" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / viikko" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP -rahaketta saatavilla" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} ääntä" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} rahaketta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Hinta:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Käyttäjän lisäämä" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}%: n palkkataso" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% pooli" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% valitse" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Likviditeetin louhinta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP-rahaketta" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} rahaketta" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token silta" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Takaisin poolien yleiskatsaukseen" - diff --git a/src/locales/fr-FR.po b/src/locales/fr-FR.po deleted file mode 100644 index 314e21d38e..0000000000 --- a/src/locales/fr-FR.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: fr_FR\n" -"Language-Team: French\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: fr\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Voir sur Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(tout effacer)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(modifier)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Supprimer le destinataire" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / semaine" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Toutes les propositions" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Votes" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Analyses du compte et des frais accumulés<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Prix actuel : <1><2/> <3>{0} pour {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Conseil: Le retrait des jetons dans la pool convertit votre position en jetons sous-jacents au taux actuel, proportionnel à votre part de la pool. Vos bénéfices (frais) sont inclus dans les montants que vous recevrez." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Conseil : Sélectionnez une action et décrivez votre proposition pour la communauté. La proposition ne peut pas être modifiée après la soumission, veuillez donc vérifier toutes les informations avant de la soumettre. La période de vote commencera immédiatement et durera 7 jours. Pour proposer une action personnalisée, <1>lisez la doc ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Conseil : Utilisez cet outil pour rechercher les pools v2 qui n'apparaissent pas automatiquement dans l'interface." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Conseil: Lorsque vous ajoutez de la liquidité, vous recevrez des jetons représentant votre position. Ces jetons gagnent automatiquement des frais proportionnels à votre part du pool et peuvent être échangés à tout moment." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Débloquer le vote pour se préparer à la prochaine proposition." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Bienvenue dans l'équipe des Licornes :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Un seuil minimum de 0,25% de l'offre totale d'UNI est requis pour soumettre des propositions" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "À propos" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Accepter" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Compte" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Actif" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Ajouter" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Ajoutez <0/> et <1/> à Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Ajouter un délégué +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Ajouter de la liquidité" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Ajouter de la liquidité V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Ajouter de la liquidité." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Ajouter plus de liquidité" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Ajouter {0} à Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Ajouter de la liquidité {0}/{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Ajouter des liquidités V3 {0}/{1}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Ajouté {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "L'adresse n'a pas de revendication disponible" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Contre" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Autoriser la migration des jetons LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Autoriser les transactions à impact élevé et enlève l'écran de confirmation. À utiliser à vos risques et périls." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Autoriser le protocole Uniswap à utiliser vos {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Autorisé" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Montant" - -#: src/hooks/useSwapCallback.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." -msgstr "Une erreur s'est produite lors de la tentative d'exécution de cet échange. Vous devrez peut-être augmenter votre tolérance au slippage. Si cela ne fonctionne pas, il peut y avoir une incompatibilité avec le token que vous échangez. Remarque : les frais sur les token de transfert et de rebase sont incompatibles avec Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Approuver" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Approuver le Token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Approuver {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Approuvé" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Approbation" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Approbation de {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Pont d'arbitrage" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum est en version bêta et peut connaître des temps d'arrêt. Pendant les temps d'arrêt, votre position ne rapportera pas de frais et vous ne pourrez pas retirer de liquidité. <0>En savoir plus." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Êtes-vous sûr(e) ?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "En tant que membre de la communauté Uniswap, vous pouvez réclamer que UNI soit utilisé pour le vote et la gouvernance.<0/><1/><2>En savoir plus sur UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Au moins {0} {1} et {2} {3} seront remboursés sur votre portefeuille en raison de la plage de prix sélectionnée." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automatique" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API de routeur automatique" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponible pour déposer: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Solde : {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Idéal pour les paires exotiques." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Idéal pour la plupart des paires." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Idéal pour des paires stables." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Idéal pour les paires très stables." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "L'itinéraire au meilleur prix coûte ~{formattedGasPriceString} en essence." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Adresse bloquée" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Pont" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "En ajoutant de la liquidité, vous gagnerez 0,3 % de toutes les transactions sur cette paire proportionnellement à votre part du pool. Les frais sont ajoutés à la pool, accumulés en temps réel et peuvent être réclamés en retirant votre liquidité." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "En connectant un portefeuille, vous acceptez les <0>Conditions d'utilisation d' et reconnaissez avoir lu et compris la clause de non-responsabilité du protocole <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Annulé" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Changer" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Graphiques" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Vérifier l'état du réseau" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Consultez nos guides d'utilisation et de migration pour la v3 LP." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Réclamer" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Réclamez <0/> pour {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Réclamer vos UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Réclamer les jetons UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Réclamez la récompense UNI pour {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Réclamer les frais" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Réclamez vos jetons UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Réclamé" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Réclamé UNI !" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Revendiqué!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Réclamation" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Réclamer UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Réclamation de {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Tout effacer" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Tout effacer" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Fermer" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Fermé" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Collecter" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Collecter en WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Collecter des frais" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Collecter {0}/{1} frais" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Collecté" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Collecte en cours" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Collecter des frais" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Les frais de perception retireront les frais actuellement disponibles pour vous." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Valider" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Valider la fourniture" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Valider le swap" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Validez cette transaction dans votre portefeuille" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Confirmer la transaction dans le portefeuille" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Connecter le portefeuille" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Connecter un portefeuille" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Connectez-vous à un portefeuille pour trouver des pools" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Connectez-vous à un portefeuille pour afficher vos liquidités V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Connectez-vous à un portefeuille pour voir vos liquidités." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Connecté avec {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copié" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copier l'adresse" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Créer un Pool & Approvisionner" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Créer une Proposition" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Créer une paire" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Créer un pool" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Créer un problème sur GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Créer un pool et ajouter {0}/{1} liquidités V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Créer un pool." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Créer {0}/{1} une pool V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Prix actuel" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Prix actuel de {0} :" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Thème sombre" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Rejetée" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Votes délégués" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Déléguer le droit de vote à {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Délégué à :" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Délégation des votes" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Dépôt" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Montants du dépôt" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Déposer des jetons UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Dépôt de liquidités" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Déposez des jetons sur le réseau {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Déposez vos jetons de fournisseur de liquidité pour recevoir UNI, le jeton de gouvernance du protocole Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Dépôt de liquidité :" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Dépôt de {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Déposer de la liquidité" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Libellé" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Détaillé" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Détails" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Déconnecter" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Refuser" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documents" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Vous ne voyez pas une de vos positions v2 ? <0>Importez-la." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Les jetons UNI gagnés représentent les parts de vote dans la gouvernance Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Éditer" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Comparaison d'efficacité" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Saisissez un pourcentage" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Saisissez un destinataire" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Saisissez un pourcentage de slippage valide" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Saisissez une adresse pour déclencher une réclamation UNI. Si l'adresse a une UNI réclamable, elle leur sera envoyée lors de la soumission." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Saisissez un montant" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Saisissez un emplacement de liste valide" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Saisissez une adresse de jeton valide" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Entrez {0} montant" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Erreur" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Erreur de connexion" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Erreur de connexion. Essayez d'actualiser la page." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Erreur lors de l'importation de la liste" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "L'estimation peut différer en raison des paramètres de gaz de votre portefeuille" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Frais de réseau estimés" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Exécutée" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Mode expert" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Le mode expert désactive l'invite de transaction de confirmation et permet des transactions de slippage élevées qui se traduisent souvent par de mauvais taux et des pertes de fonds." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Expiré" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Explorez Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Échec du changement de réseau depuis l'interface Uniswap. Pour utiliser Uniswap sur {0}, vous devez changer de réseau dans votre portefeuille." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Niveau de frais" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Niveau de frais" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Chercher le meilleur prix..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Pour" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Pour chaque pool indiqué ci-dessous, cliquez sur migrer pour retirer votre liquidité de Uniswap V2 et déposez-la dans Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "À partir de" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "De (au plus)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Range Complète" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Les positions de gamme complète peuvent rapporter moins de frais que les positions concentrées. En savoir plus <0>ici ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Obtenez de l'aide sur Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centre d'aide" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Cacher" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Masquer les positions fermées" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Impact sur les prix élevés" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Comment cette application utilise les API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Je comprends" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Si vous achetez un jeton de cette liste, il se peut que vous ne puissiez pas le réclamer." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importation" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Liste d'importation" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importer un pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importer le pool V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importez à vos risques et périls" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Dans la portée" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Augmente la liquidité" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Prix initiaux et part du pool" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Initialisation en cours..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "L'entrée est estimée. Vous allez vendre au plus <0>{0} {1} ou la transaction sera annulée." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Installer Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Pas assez de liquidités pour cette transaction." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Solde {0} insuffisant" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Paramètres de l'interface" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Paire invalide" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Paire invalide." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Entrée de prix non valide" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Plage non valide sélectionnée. Le prix minimum doit être inférieur au prix maximum." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Destinataire invalide" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Langue" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Apprendre" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "En savoir plus sur la fourniture de liquidités" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "En savoir plus" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Mentions légales et confidentialité" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Thème de la lumière" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquidité" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Données de liquidité non disponibles." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Récompenses du fournisseur de liquidité" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Les fournisseurs de liquidités gagnent 0,3 % de frais sur tous les ordres proportionnels à leur part du pool. Les frais sont ajoutés à la pool, accumulés en temps réel et peuvent être réclamés en retirant votre liquidité." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listes" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Chargé" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "En cours de chargement" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAXIMUM" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gérer" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gérer la liquidité dans le pool de récompenses" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Gérer les listes de jetons" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Gérer ce pool." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Prix max" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Prix maximum" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Max :" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximum envoyé" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrer" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrer la liquidité vers V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrer la liquidité V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrez vos jetons de liquidité de Uniswap V2 vers Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrate {0}/{1} liquidité à V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migration en cours" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Prix min" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Prix min" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min :" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum reçu" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dépendances manquantes" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "En savoir plus" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Frais de réseau" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Avertissement réseau" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Les frais de réseau dépassent 50 % du montant du swap !" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nouvelle position" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Aucune liquidité V2 trouvée." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Aucun pool actif" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Pas de données" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Aucune description." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Aucune liquidité trouvée." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Aucun pool trouvé." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Aucune proposition trouvée." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Aucun résultat trouvé." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Non créé" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "DÉSACTIVÉ" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "AU" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "UTILISEZ CE MODE UNIQUEMENT SI VOUS SAVEZ CE QUE VOUS FAITES." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Désactivé" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Au" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Une fois que vous êtes satisfait du taux cliquez sur fournir pour vérifier." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Seuls les votes UNI qui ont été auto-délégués ou délégués à une autre adresse avant le bloc {0} sont éligibles pour voter." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Oups ! Une erreur inconnue s'est produite. Veuillez rafraîchir la page ou visiter depuis un autre navigateur ou appareil." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Passerelle de l'optimisme" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "L'optimisme est en version bêta et peut connaître des temps d'arrêt. Optimism s'attend à ce que les temps d'arrêt prévus pour mettre à niveau le réseau dans un proche avenir. Pendant les temps d'arrêt, votre position ne rapportera pas de frais et vous ne pourrez pas retirer de liquidité. <0>Lire la suite." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan optimiste" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Hors de portée" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "La sortie est estimée. Si le prix change de plus de {0}% votre transaction sera annulée." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "La sortie est estimée. Vous recevrez au moins <0>{0} {1} ou la transaction sera annulée." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "La sortie sera envoyée à <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Propriétaire" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Pools participants" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "En attente" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Veuillez confirmer que vous souhaitez supprimer cette liste en tapant SUPPRIMER" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Veuillez vous connecter à la Layer 1 d'Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Veuillez vous connecter au réseau Ethereum approprié." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Veuillez taper le mot \"{confirmWord}\" pour activer le mode expert." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Pont Polygone" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Balayage polygonal" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool trouvé !" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Fréquence de Pool" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Fréquence du pool" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Jetons de pool dans le pool de récompenses :" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Récupéré {0} :" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Vue d'ensemble des piscines" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Aperçu" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Prix" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Différence de prix :" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impact sur les prix" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Impact trop élevé sur les prix" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Prix mis à jour" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Fourchette de prix" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Prix :" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Prix et parts dans la pool" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Proposition" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Proposition Soumise" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Titre de la proposition" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propositions" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Les propositions soumises par les membres de la communauté apparaîtront ici." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Action proposée" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Proposer" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Avis de non-responsabilité du protocole" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "En attente" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tarifs" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "En savoir plus sur UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "En savoir plus sur la gouvernance d'Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "En savoir plus sur la fourniture de liquidités" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "En savoir plus sur les actifs non pris en charge" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Transactions récentes" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Destinataire" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Supprimer" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Supprimer <0/> et <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Supprimer le montant" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Supprimer le délégué" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Supprimer la liquidité" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Supprimer la liste" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Suppression de {0} {1} et {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Supprimer {0} {1} et{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Demander des fonctionnalités" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Retour" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Rechercher un nom ou coller une adresse" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Sélectionnez une Paire" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Sélectionnez un réseau" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Sélectionnez un jeton" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Sélectionnez un jeton pour trouver votre liquidité v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Sélectionnez une action" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Fourchette sélectionnée" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Soi-même" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Auto-délégué" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Fixer une fourchette de prix" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Définir le prix de départ" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Part du pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Part dans la pool :" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Afficher Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Afficher les positions fermées" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Simple" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolérance du slippage" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Certains actifs ne sont pas disponibles via cette interface parce qu'ils peuvent ne pas fonctionner correctement avec les contrats intelligents ou que nous ne sommes pas en mesure de permettre le trading pour des raisons juridiques." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Un problème est survenu" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Étape 1. Obtenir des jetons de liquidité UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Soumettre une nouvelle proposition" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Soumission de la proposition" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Soumettre un vote" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Réussi" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Succès" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Approvisionnement" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Approvisionnement {0} {1} et {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Échanger" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Remplacez <0/> par exactement <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Échanger quand même" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Remplacez exactement <0/> par <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Échec de l'échange : {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Échange de {0} {1} contre {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Merci de faire partie de la communauté Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Le % que vous gagnerez en frais." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "L'invariant Uniswap x*y=k n'a pas été satisfait par l'échange. Cela signifie généralement que l'un des jetons que vous échangez incorpore un comportement personnalisé lors du transfert." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "L'application récupère les données de la blockchain à partir du service hébergé de The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "L'application récupère les données en chaîne et construit des appels de contrat avec une API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "L'application récupère la route commerciale optimale à partir d'un serveur Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "L'application enregistre des statistiques d'utilisation anonymisées afin de s'améliorer au fil du temps." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "L'application collecte en toute sécurité votre adresse de portefeuille et la partage avec TRM Labs Inc. pour des raisons de risque et de conformité." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Le coût d'envoi de cette transaction est supérieur à la moitié de la valeur du montant saisi." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "La quantité de gaz rapide actuelle pour l'envoi d'une transaction sur L1. Les frais de gaz sont payés dans la devise native d'Ethereum Ether (ETH) et libellés en GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "La différence estimée entre les valeurs USD des montants d'entrée et de sortie." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Le jeton d'entrée ne peut pas être transféré. Il peut y avoir un problème avec le jeton d'entrée." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Le prix du marché est en dehors de votre fourchette de prix spécifiée. Dépôt d'actifs unique seulement." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Le numéro de bloc le plus récent sur ce réseau. Les prix sont mis à jour à chaque bloc." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Le jeton de sortie ne peut pas être transféré. Il peut y avoir un problème avec le jeton de sortie." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Le token de sortie ne peut pas être transféré. Il peut y avoir un problème avec le token de sortie. Remarque : les frais sur les jetons de transfert et de rebase sont incompatibles avec Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Le prix de ce pool se situe en dehors de votre fourchette sélectionnée. Votre position ne rapporte actuellement pas de frais." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Le prix de ce pool est dans votre fourchette sélectionnée. Votre position est actuellement en train de gagner des frais." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Le ratio de jetons que vous ajoutez fixera le prix de ce pool." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "La transaction n'a pas pu être envoyée car la date limite est passée. Veuillez vérifier que la date limite de votre transaction n'est pas trop basse." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Il n'y a pas de données de liquidité." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Cette application utilise les API tierces suivantes :" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Ce pool doit être initialisé avant de pouvoir ajouter des liquidités. Pour initialiser, sélectionnez un prix de départ pour le pool. Ensuite, entrez votre fourchette de prix de liquidité et le montant du dépôt. Les frais de gaz seront plus élevés que d'habitude en raison de la transaction d'initialisation." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Cet itinéraire optimise votre production totale en tenant compte des itinéraires fractionnés, des sauts multiples et du coût du gaz de chaque étape." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Cet outil va migrer en toute sécurité vos liquidités {0} vers V3. Le processus est complètement sans confiance grâce à la" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Cette transaction ne réussira pas en raison du mouvement des prix. Essayez d'augmenter votre tolérance au slippage. Remarque : les frais sur les token de transfert et de rebase sont incompatibles avec Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Cette transaction ne réussira pas en raison du mouvement des prix ou des frais de transfert. Essayez d'augmenter votre tolérance au glissement." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Astuce : Les jetons personnalisés sont stockés localement dans votre navigateur" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "À" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Vers (au moins)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Jeton non pris en charge" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Jetons" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total déposé" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Total des dépôts" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Route commerciale" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Paramètres de la transaction" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaction envoyée" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaction réalisée en" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Date limite de la transaction" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaction rejetée." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token de transfert" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Réessayez" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Activer le mode Expert" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI est arrivé" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Les jetons UNI représentent les parts de vote dans la gouvernance d'Uniswap. Vous pouvez voter sur chaque proposition vous-même ou déléguer vos votes à un tiers." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} brûlé" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Les jetons UNI-V2 LP sont requis. Une fois que vous avez ajouté de la liquidité au pool {0}-{1} , vous pouvez mettre vos jetons de liquidité sur cette page." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI non réclamé" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Frais non réclamés" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Indéterminé" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Erreur inattendue. Impossible d'estimer le gaz pour l'échange." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problème inattendu avec l'estimation du gaz. Veuillez réessayer." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Gouvernance Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Conditions d'utilisation d'Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponible en : <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "La gouvernance d'Uniswap n'est disponible que sur la Layer 1. Basculez sur le réseau Ethereum Mainnet pour afficher les propositions et voter." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap minage des liquidités" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Contrat de migration Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Source inconnue" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Erreur inconnue{0}. Essayez d'augmenter votre tolérance au glissement. Remarque : les frais sur les tokens de transfert et de rebase sont incompatibles avec Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Débloquer les votes" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Débloquer le vote" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Déblocage des votes" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Actif non pris en charge" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Actifs non pris en charge" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Sans titre" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Déballer <0/> à {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Mettre à jour la délégation" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Mettre à jour la liste" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Utilisez l'API Uniswap Labs pour obtenir des devis plus rapidement." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Utilisateur" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 n'est pas disponible sur la Layer 2. Passez à la Layer 1 d'Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "liquidités V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Prix V3 {0} :" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Voir les frais et les analyses accumulés<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Voir la liste" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Voir sur Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Voir sur Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Voir la transaction sur Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Voter" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Voter contre" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Voter pour" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Voter contre la proposition {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Votez contre la proposition {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Votez contre la proposition {proposalKey} avec le motif \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Voter pour la proposition {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Votez pour la proposition {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Votez pour la proposition {proposalKey} avec le motif \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Votez pour vous abstenir sur la proposition {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Votez pour vous abstenir sur la proposition {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Votez pour vous abstenir sur la proposition {proposalKey} avec le motif \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Vote terminé {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Le vote se termine environ {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Le vote commence à environ {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "En attente de confirmation" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Adresse de portefeuille ou nom ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Récompenses hebdomadaires" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Bienvenue dans l'équipe Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Lorsque vous réclamez sans retirer vos liquidités, vous restez dans le pool minier." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Lorsque vous vous retirez, le contrat réclamera automatiquement UNI en votre nom !" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Lorsque vous retirez, votre UNI est réclamée et votre liquidité est retirée de la pool de récompense." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Retirer" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Retirer & Réclamer" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Retirer les liquidités déposées" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Retrait de {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Retrait de UNI-V2 !" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Envelopper" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Envelopper <0/> à {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Mauvais réseau" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Vous avez déjà une proposition active ou en attente" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Vous êtes en train de créer un pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Vous êtes le premier fournisseur de liquidités pour ce pool V3 d'Uniswap. Votre liquidité migrera au prix actuel de {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Vous êtes le premier fournisseur de liquidités." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Vous pouvez soit voter vous-même sur chaque proposition ou déléguer vos votes à un tiers." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Vous pouvez désormais échanger {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Vous n'avez pas assez de votes pour soumettre une proposition" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Vous n'avez pas encore de liquidités dans ce pool." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Vous pouvez envisager d'attendre que les frais de réseau diminuent pour terminer cette transaction." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Vous devez connecter un compte." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Vous devez autoriser les contrats intelligents Uniswap à utiliser votre {0}. Vous n'avez à le faire qu'une seule fois par jeton." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Vous devez avoir {formattedProposalThreshold} votes pour soumettre une proposition" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Vous ne devriez déposer de liquidité dans Uniswap V3 qu'à un prix que vous croyez correct. <0/>Si le prix semble incorrect, vous pouvez soit faire un swap pour déplacer le prix soit attendre que quelqu'un d'autre le fasse." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Vous percevrez également des frais provenant de cette position." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Vous allez recevoir" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Votre liquidité V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Vos positions de liquidité V3 actives apparaîtront ici." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Vos dépôts de liquidités" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Partage de votre pool :" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Votre position" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Votre position a 0 liquidité, et ne gagne pas de frais." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Votre position apparaîtra ici." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Votre position sera composée à 100 % de {0} à ce prix" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Votre position sera à 100 % {0} à ce prix." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Votre position ne gagnera pas de frais ni ne sera utilisée dans les transactions tant que le prix du marché n'entrera pas dans votre fourchette." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Vos positions" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Votre tarif" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Total des jetons de votre pool :" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Votre coût de transaction sera beaucoup plus élevé car il inclut le gaz pour créer le pool." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Votre transaction peut être frontrun" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Votre transaction peut échouer" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Votre transaction sera annulée si elle est en attente pour plus de cette période." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Votre transaction sera annulée si le prix change défavorablement de plus de ce pourcentage." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Vos transactions apparaîtront ici..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Votre UNI non réclamé" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "après glissement" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "confirmer" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "pour {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "a des chaussettes d'émoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "ici." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // ou ipfs: // ou nom ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minutes" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "via {0} liste de jetons" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Jeton d'importation } other {Importez des jetons}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> par <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} jetons personnalisés" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Déposé" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "Frais de {0} gagnés :" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} en attente" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / semaine" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} jetons UNI-V2 LP disponibles" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Votes" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} par {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} jetons" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Prix {0} {1} :" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Ajouté par l'utilisateur" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Palier de frais de {0}%" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% piscine" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% sélectionner" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Minage de Liquidité" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "Jetons de {0}/{1} LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} jetons" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} jeton pont" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} par {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "Aperçu du retour aux pools" - diff --git a/src/locales/he-IL.po b/src/locales/he-IL.po deleted file mode 100644 index f05cf88e7a..0000000000 --- a/src/locales/he-IL.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: he_IL\n" -"Language-Team: Hebrew\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: he\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(צפה ב- Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(נקה הכל)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(עריכה)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- הסר את הנמען" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI לשבוע" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> כל ההצעות" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> הצבעות" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0> ניתוח חשבונות ועמלות שנצברו <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> מחיר נוכחי: <1> <2 /> <3>{0} לכל {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> טיפ: הסרת אסימונים לבריכה ממירה את עמדתך בחזרה לאסימונים בסיסיים בקצב הנוכחי, פרופורציונלי ביחס לחלקך בבריכה. העמלות שנצברו כלולות בסכומים שאתה מקבל." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> טיפ: בחר פעולה ותיאר את ההצעה שלך לקהילה. לא ניתן לשנות את ההצעה לאחר הגשתה, לכן אנא בדוק את כל המידע לפני הגשתה. תקופת ההצבעה תחל מיידית ותמשך 7 ימים. כדי להציע פעולה מותאמת אישית, <1> קרא את המסמכים ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> טיפ: השתמש בכלי זה כדי למצוא מאגרי v2 שלא מופיעים אוטומטית בממשק." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> טיפ: כשתוסיף נזילות, תקבל אסימונים לבריכה המייצגים את עמדתך. אסימונים אלה מרוויחים עמלות באופן אוטומטי ביחס לחלקך בבריכה, וניתן לפדותם בכל עת." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0> בטל את ההצבעה להתכונן להצעה הבאה." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 ברוך הבא לצוות חד קרן :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "הגשת הצעות נדרשת רף מינימלי של 0.25% מסך היצע ה- UNI" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "אודות" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "לְקַבֵּל" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "חֶשְׁבּוֹן" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "פָּעִיל" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "הוספה" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "הוסף את <0/> ו- <1/> ל- Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "הוסף נציג +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "הוסף נזילות" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "הוסף נזילות V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "הוסף נזילות." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "הוסף עוד נזילות" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "הוסף {0} למטא-מסכה <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "הוסף {0}-{1} נזילות" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "להוסיף {0}/{1} נזילות V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "נוסף {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "לכתובת אין כל תביעה זמינה" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "נגד" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "אפשר העברת אסימון LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "אפשר עסקאות עם השפעות מחיר גבוהות ודלג על מסך האישור. השימוש על אחריותך בלבד." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "אפשר לפרוטוקול Uniswap להשתמש ב- {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "מוּתָר" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "כמות" - -#: src/hooks/useSwapCallback.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." -msgstr "אירעה שגיאה בניסיון לבצע החלפה זו. יתכן שתצטרך להגביר את סובלנות ההחלקה שלך. אם זה לא עובד, ייתכן שיש אי התאמה לאסימון שאתה סוחר בו. הערה: עמלה על אסימון העברה וריבוס אינם תואמים ל- Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "לְאַשֵׁר" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "אשר אסימון" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "אשר {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "אושר" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "מאשר" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "מאשר {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "ארביסקאן" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "גשר ארביטרום" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "ארביטרום נמצאת בגרסת בטא ועשויה לחוות השבתה. בזמן השבתה, העמדה שלך לא תרוויח עמלות ולא תוכל להסיר נזילות. <0> קרא עוד." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "האם אתה בטוח?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "כחבר בקהילת Uniswap אתה יכול לטעון ש- UNI משמשת להצבעה ולממשל. <0/> <1/> <2> קרא עוד על UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "לפחות {0} {1} ו {2} {3} יוחזרו לארנק שלך בגלל טווח המחירים שנבחר." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "אוטומטי" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "ממשק API של נתב אוטומטי" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "זמין להפקדה: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "יתרה: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "הטוב ביותר לזוגות אקזוטיים." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "הטוב ביותר עבור רוב הזוגות." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "הטוב ביותר לזוגות יציבים." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "הטוב ביותר עבור זוגות יציבים מאוד." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "מסלול המחיר הטוב ביותר עולה ~{formattedGasPriceString} בדלק." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "כתובת חסומה" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "לְגַשֵׁר" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "על ידי הוספת נזילות תרוויח 0.3% מכלל העסקאות בזוג זה ביחס לחלק שלך במאגר. העמלות מתווספות לבריכה, נצברות בזמן אמת וניתן לתבוע אותן באמצעות משיכת הנזילות שלך." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "על ידי חיבור ארנק, אתה מסכים לתנאי השירות <0>ומאשר שקראת והבנת את כתב ויתור פרוטוקול <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "מבוטל" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "שינוי" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "תרשימים" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "בדוק את מצב הרשת" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "עיין במדריכי ההדרכה וההעברה של v3 LP שלנו." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "תְבִיעָה" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "תבעו את <0/> עבור {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "תבע את UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "תבע את אסימון UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "תבעו תגמול של UNI עבור {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "דמי תביעה" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "תבע את אסימוני ה- UNI שלך" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "נִתבָּע" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI נתבע!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "נִתבָּע!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "תביעה" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "תביעת UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "תביעת {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "נקה הכל" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "נקה הכל" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "סגור" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "סָגוּר" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "לגבות" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "לגבות כ- WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "גבה עמלות" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "אסוף {0}/{1} ודמים" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "נגבה" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "גבייה" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "גביית עמלות" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "דמי גבייה ימשכו עבורך את העמלות הזמינות כיום." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "לְאַשֵׁר" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "אשר אספקה" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "אשר החלפה" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "אשר את העסקה בארנק שלך" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "אשר עסקה בארנק" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "חבר ארנק" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "חבר ארנק" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "התחבר לארנק כדי למצוא בריכות" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "התחבר לארנק כדי להציג את נזילות V2 שלך." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "התחבר לארנק כדי להציג את הנזילות שלך." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "מחובר עם {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "מוּעֲתָק" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "העתק כתובת" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "צור בריכה ואספקה" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "צור הצעה" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "צור זוג" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "צור מאגר" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "צור בעיה ב- GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "צור ברכה והוסף {0}/{1} נזילות V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "צור בריכה." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "צור {0}/{1} הבריכה V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "מחיר נוכחי" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "מחיר {0} נוכחי:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "ערכת נושא כהה" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "מוּבָס" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "האצל הצבעות" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "האציל את כוח ההצבעה ל {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "הואצל ל:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "האצלת קולות" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "לְהַפְקִיד" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "סכומי הפקדה" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "הפקדת אסימוני LP של UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "הפקדת נזילות" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "הפקד אסימונים לרשת {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "הפקד את אסימוני ספק הנזילות שלך לקבלת UNI, אסימון הממשל לפרוטוקול Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "נזילות שהופקדה:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "הופקד {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "הפקדת נזילות" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "תיאור" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "מְפוֹרָט" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "פרטים" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "לְנַתֵק" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "מַחֲלוֹקֶת" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "לשחרר" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "מסמכים" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "אינך רואה את אחת מעמדות ה- v2 שלך? <0> יבא אותו." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "אסימונים של UNI שהושכרו מייצגים מניות הצבעה בממשל Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "לַעֲרוֹך" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "השוואת יעילות" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "הזן אחוז" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "הזן נמען" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "הזן אחוז החלקה חוקי" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "הזן כתובת להפעלת תביעה של UNI. אם לכתובת יש UNI כלשהו הניתן לתביעה, היא תישלח אליהם בהגשה." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "הזן סכום" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "הזן מיקום רשימה חוקי" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "הזן כתובת אסימון חוקית" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "הזן סכום {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "שְׁגִיאָה" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "שגיאה בהתחברות" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "שגיאה בהתחברות. נסה לרענן את הדף." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "שגיאה בייבוא הרשימה" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "ההערכה עשויה להשתנות עקב הגדרות הגז בארנק שלך" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "עמלת רשת משוערת" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "יצא לפועל" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "תוצאות מורחבות מרשימות אסימון לא פעילות" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "פלט צפוי" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "מצב מומחה" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "מצב מומחה מכבה את בקשת האישור לעסקה ומאפשר עסקאות החלקה גבוהות שלעתים קרובות גורמות לשיעורים גרועים ולאובדן כספים." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "לא בתוקף" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "חקור את Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "החלפת רשתות מממשק Uniswap נכשלה. כדי להשתמש ב-Uniswap ב {0}, עליך לשנות את הרשת בארנק שלך." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "שכבת עמלה" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "שכבת שכר טרחה" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "משיג את המחיר הטוב ביותר..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "ל" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "עבור כל מאגר המוצג למטה, לחץ על העבר כדי להסיר את הנזילות שלך מ- Uniswap V2 והפקד אותו ל- Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "מ" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "מאת (לכל היותר)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "טווח מלא" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "תפקידים בטווח מלא עשויים להרוויח פחות שכר טרחה ממשרות מרוכזות. למידע נוסף <0> כאן ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "קבל תמיכה בדיסקורד" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "מרכז עזרה" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "להתחבא" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "הסתר עמדות סגורות" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "השפעה על מחיר גבוה" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "כיצד האפליקציה הזו משתמשת בממשקי API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "אני מבין" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "אם אתה רוכש אסימון מרשימה זו, ייתכן שלא תוכל למכור אותו בחזרה." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "יְיבוּא" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "רשימת ייבוא" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "יְיבוּא בריכה" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "יְיבוּא בריכת V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "ייבא על אחריותך בלבד" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "בטווח" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "הגדל את הנזילות" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "מחירים ראשוניים ונתח בריכה" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "מאתחל ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "הקלט מוערך. אתה תמכור לכל היותר <0>{0} {1} או שהעסקה תחזור." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "התקן את Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "לא מספיק נזילות למסחר זה." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "איזון {0} לא מספיק" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "הגדרות ממשק" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "זוג לא חוקי" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "זוג לא חוקי." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "קלט מחירים לא חוקי" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "נבחר טווח לא חוקי. המחיר המינימלי חייב להיות נמוך מהמחיר המקסימלי." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "נמען לא חוקי" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "שפה" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "לִלמוֹד" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "למד אודות מתן נזילות" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "למד עוד" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "משפטי ופרטיות" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "נושא קל" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "נְזִילוּת" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "נתוני נזילות אינם זמינים." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "תגמולים של ספק נזילות" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "ספקי נזילות מרוויחים עמלה של 0.3% על כל העסקאות שביחס לחלקם במאגר. העמלות מתווספות לבריכה, נצברות בזמן אמת וניתן לתבוע אותן באמצעות משיכת הנזילות שלך." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "רשימות" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "עמוס" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "טוען" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "לנהל" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "נהל נזילות במאגר תגמולים" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "נהל רשימות אסימונים" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "נהל את המאגר הזה." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "מקסימום" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "מחיר מירבי" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "מחיר מירבי" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "מקסימום:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "מקסימום נשלח" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "תַפרִיט" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "להעביר" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "העבר נזילות ל- V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "העבר נזילות V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "העבר את אסימוני הנזילות שלך מ- Uniswap V2 ל- Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "העבר {0}/{1} ל- V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "נודדים" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "מחיר מינימלי" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "מחיר מינימלי" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "דקה:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "מינימום שהתקבל" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "חסרות תלות" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "יותר" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "עמלת רשת" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "אזהרת רשת" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "עמלות הרשת עולות על 50% מסכום ההחלפה!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "עמדה חדשה" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "לא נמצאה נזילות V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "אין בריכות פעילות" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "אין מידע" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "אין תיאור." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "לא נמצאה נזילות." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "לא נמצא מאגר." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "לא נמצאו הצעות." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "לא נמצאו תוצאות." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "לא נוצר" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "כבוי" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "דלוק" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "השתמש במצב זה בלבד אם אתה יודע מה אתה עושה." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "כבוי" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "דלוק" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "ברגע שאתה מרוצה מההספק לחץ על האספקה לבדיקה." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "זכאים להצביע רק קולות של UNI שהועברו בעצמם או הועברו לכתובת אחרת לפני גוש {0}" - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "אופס! אירעה שגיאה לא ידועה. אנא רענן את הדף, או בקר בדפדפן או במכשיר אחר." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "שער אופטימיות" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "האופטימיות נמצאת בגרסת בטא ועשויה לחוות זמן השבתה. אופטימיות צופה זמן השבתה מתוכנן כדי לשדרג את הרשת בעתיד הקרוב. בזמן השבתה, העמדה שלך לא תזכה בעמלות ולא תוכל להסיר נזילות. <0>קרא עוד." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "את'רקאן אופטימי" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "מחוץ לטווח" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "התפוקה משוערת. אם המחיר ישתנה ביותר מ- {0}% העסקה שלך תחזור." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "התפוקה משוערת. תקבל <0>{0} {1} או שהעסקה תחזור." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "התפוקה תישלח אל <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "בעלים" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "בריכות המשתתפות" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "ממתין ל" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "אנא אשר שברצונך להסיר רשימה זו על ידי הקלדה REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "אנא התחבר לאתריום של שכבה 1" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "אנא התחבר לרשת Ethereum המתאימה." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "אנא הקלד את המילה \"{confirmWord}\" כדי להפעיל מצב מומחה." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "גשר מצולע" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "פוליגונסקן" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "מאגר" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "מאגר נמצא!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "תעריף מאגר" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "תעריף מאגר" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "אסימונים למאגר בבריכת תגמולים:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "מאוגד {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "סקירת מאגרים" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "תצוגה מקדימה" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "מחיר" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "הבדל במחיר:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "השפעת מחיר" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "השפעת המחיר גבוהה מדי" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "המחיר עודכן" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "טווח מחירים" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "מחיר:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "מחירים ונתח בריכה" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "הצעה" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "ההצעה הוגשה" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "כותרת ההצעה" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "הצעות" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "הצעות שהוגשו על ידי חברי הקהילה יופיעו כאן." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "הצעה לפעולה" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "מציע" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "כתב ויתור פרוטוקול" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "בתור" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "תעריפים" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "קרא עוד על UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "קרא עוד על ממשל Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "קרא עוד אודות מתן נזילות" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "קרא עוד על נכסים שאינם נתמכים" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "תנועות אחרונות" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "מקבל" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "לְהַסִיר" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "הסר את <0/> ו- <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "הסר את הסכום" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "הסר את הנציג" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "הסר נזילות" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "הסר את הרשימה" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "הסרת {0} {1} ו {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "הסרת {0} {1} ו-{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "בקשת תכונות" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "לַחֲזוֹר" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "חפש שם או הדבק כתובת" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "בחר זוג" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "בחר רשת" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "בחר אסימון" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "בחר אסימון כדי למצוא את נזילות ה- v2 שלך." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "בחר פעולה" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "טווח נבחר" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "עצמי" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "נציג עצמי" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "הגדר טווח מחירים" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "הגדר מחיר התחלתי" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "נתח המאגר" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "נתח המאגר:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "הראה את פורטיס" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "הראה עמדות סגורות" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "פָּשׁוּט" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "סובלנות להחלקה" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "חלק מהנכסים אינם זמינים דרך ממשק זה מכיוון שהם עשויים שלא לעבוד היטב עם החוזים החכמים או שאיננו יכולים לאפשר מסחר מסיבות משפטיות." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "משהו השתבש" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "שלב 1. קבל תווי נזילות של UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "הגישו הצעה חדשה" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "הגשת הצעה" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "הגשת הצבעה" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "הצליח" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "הַצלָחָה" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "לְסַפֵּק" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "אספקת {0} {1} ו {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "לְהַחלִיף" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "החלף את <0/> בדיוק ל <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "החלף בכל מקרה" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "החלף בדיוק <0/> עבור <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "החלפה נכשלה: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "החלפת {0} {1} ב- {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "תודה שהיית חלק מקהילת Uniswap <0 />" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "האחוזים שתרוויחו בעמלות." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "המשתנה של Uniswap x * y = k לא הסתפק בהחלפה. זה בדרך כלל אומר שאחד מהאסימונים שאתה מחליף משלב התנהגות מותאמת אישית בהעברה." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "האפליקציה שואבת נתוני בלוקצ'יין מהשירות המתארח של The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "האפליקציה שואבת נתונים על השרשרת ובונה שיחות חוזה עם Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "האפליקציה שואבת את נתיב הסחר האופטימלי משרת Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "האפליקציה רושם סטטיסטיקות שימוש אנונימיות על מנת להשתפר עם הזמן." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "האפליקציה אוספת בצורה מאובטחת את כתובת הארנק שלך ומשתפת אותה עם TRM Labs Inc. מסיבות סיכון ותאימות." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "עלות שליחת העסקה הזו היא יותר ממחצית הערך של סכום הקלט." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "סכום הגז המהיר הנוכחי לשליחת עסקה ב-L1. עמלות הגז משולמות במטבע המקומי Ether (ETH) של Ethereum ונקובות ב-GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "ההפרש המשוער בין ערכי הדולר של סכומי קלט ופלט." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "לא ניתן להעביר את אסימון הקלט. יכול להיות שיש בעיה באסימון הקלט." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "מחיר השוק הוא מחוץ לטווח המחירים שצוין. הפקדת נכס יחיד בלבד." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "מספר החסימה העדכני ביותר ברשת זו. המחירים מתעדכנים בכל בלוק." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "לא ניתן להעביר את אסימון הפלט. ייתכן שיש בעיה באסימון הפלט." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "לא ניתן להעביר את אסימון הפלט. ייתכן שיש בעיה באסימון הפלט. הערה: עמלה על אסימון העברה וריבוס אינם תואמים ל- Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "המחיר של המאגר הזה מחוץ לטווח שבחרתם. עמדתך אינה מרוויחה כרגע עמלות." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "המחיר של המאגר הזה הוא בטווח שבחרתם. עמדתך מרוויחה כרגע עמלות." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "יחס האסימונים שתוסיף יקבע את מחיר הבריכה הזו." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "לא ניתן היה לשלוח את העסקה מכיוון שהמועד האחרון חלף. אנא בדוק שמועד העסקה האחרון שלך אינו קרוב מדי." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "אין נתוני נזילות." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "אפליקציה זו משתמשת בממשקי ה-API של צד שלישי הבאים:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "יש לאתחל את המאגר הזה לפני שתוכל להוסיף נזילות. כדי לאתחל, בחר מחיר התחלתי לבריכה. לאחר מכן, הזן את טווח מחירי הנזילות ואת סכום ההפקדה. דמי הגז יהיו גבוהים מהרגיל עקב עסקת האתחול." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "מסלול זה מייעל את התפוקה הכוללת שלך על ידי התחשבות במסלולים מפוצלים, ריבוי דילוגים ועלות הגז של כל שלב." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "אסימון זה אינו נתמך באפליקציית Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "כלי זה יעביר בבטחה את נזילות {0} שלך ל- V3. התהליך חסר אמון לחלוטין בזכות" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "עסקה זו לא תצליח בגלל תנועת מחירים. נסה להגביר את סובלנות ההחלקה שלך. הערה: עמלה על אסימון העברה ומיקום מחדש אינם תואמים ל- Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "עסקה זו לא תצליח גם בגלל תנועת מחירים או עמלה על העברה. נסה להגביר את סובלנות ההחלקה שלך." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "טיפ: אסימונים מותאמים אישית נשמרים באופן מקומי בדפדפן שלך" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "ל" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "עבור (לפחות)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "אסימון אינו נתמך" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "אסימונים" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "סה\"כ מה שהופקד" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "סך ההפקדות" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "נתיב מסחר" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "הגדרות עסקה" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "העסקה הוגשה" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "העסקה הושלמה בשנת" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "מועד אחרון לעסקה" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "העסקה נדחתה." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "העברת אסימון" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "נסה שוב" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "הפעל את מצב המומחה" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI הגיע" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "אסימונים של UNI מייצגים מניות הצבעה בממשל Uniswap. אתה יכול להצביע על כל הצעה בעצמך או להאציל את קולותיך לצד שלישי." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} שרופה" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "נדרשים אסימונים של UNI-V2 LP. לאחר שהוספת נזילות {0}-{1} תוכל להניח את אסימוני הנזילות שלך בדף זה." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI שלא נדרש" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "עמלות שלא נדרשו" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "לא נקבע" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "שגיאה לא צפויה. לא ניתן היה לאמוד גז להחלפה." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "בעיה בלתי צפויה בהערכת הגז. בבקשה נסה שוב." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "ממשל לא מוחלף" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "התנאים וההגבלות של Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap זמין ב: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "ממשל ללא החלפה זמין רק בשכבה 1. העבר את הרשת שלך ל- Ethereum Mainnet כדי להציג הצעות והצבעה." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "כריית נזילות ללא החלפה" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "חוזה הגירה מביטול החלפה↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "מקור לא ידוע" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "שגיאה לא ידועה{0}. נסה להגביר את סובלנות ההחלקה שלך. הערה: עמלה על אסימון העברה ומיקום מחדש אינם תואמים ל- Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "בטל נעילת הצבעות" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "בטל את נעילת ההצבעה" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "נעילת הצבעות" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "נכס לא נתמך" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "נכסים שאינם נתמכים" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "ללא כותרת" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "לְגוֹלֵל" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "פרק <0/> עד {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "עדכן משלחת" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "רשימת עדכונים" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "השתמש בממשק ה-API של Uniswap Labs כדי לקבל הצעות מחיר מהירות יותר." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "מִשׁתַמֵשׁ" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 אינו זמין בשכבה 2. עבור לשכבה 1 אתריום." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "נזילות V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "מחיר V3 {0}" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "צפו בעמלות וניתוחים צבורים <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "רשימת צפייה" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "מבט על אתרסקאן" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "צפה ב- Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "צפה בעסקה ב- Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "הַצבָּעָה" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "הצביעו נגד" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "להצביע בעד" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "הצביעו נגד הצעה {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "הצביעו נגד הצעה {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "הצביעו נגד הצעה {proposalKey} עם סיבה \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "הצביע להצעה {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "הצביעו להצעה {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "הצביעו להצעה {proposalKey} עם סיבה \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "הצביעו להימנע מהצעה {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "הצביעו להימנע מהצעה {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "הצביעו להימנע מהצעה {proposalKey} עם סיבה \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "ההצבעה הסתיימה ב {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "ההצבעה מסתיימת בכ- {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "ההצבעה מתחילה בערך {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "מחכה לאישור" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "כתובת ארנק או שם ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "תגמולים שבועיים" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "ברוך הבא לצוות חד קרן :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "כאשר אתה טוען מבלי למשוך את הנזילות שלך נשאר בבריכת הכרייה." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "כשתסוג, החוזה יטען אוטומטית את UNI בשמך!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "כשאתה נסוג, תביעת ה- UNI שלך תובעת ונזילותך מוסרת ממאגר הכרייה." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "לָסֶגֶת" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "משיכה ותביעה" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "משיכת נזילות שהופקדה" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "משיכת {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "משך את UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "לַעֲטוֹף" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "עטוף <0/> ל {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "רשת לא נכונה" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "כבר יש לך הצעה פעילה או ממתינה" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "אתה יוצר בריכה" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "אתה ספק הנזילות הראשון לבריכת Uniswap V3 זו. הנזילות שלך תעבור במחיר {0} הנוכחי." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "אתה ספק הנזילות הראשון." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "אתה יכול להצביע בעצמך על כל הצעה או להאציל את קולותיך לצד שלישי." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "כעת אתה יכול לסחור ב {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "אין לך מספיק קולות כדי להגיש הצעה" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "יכול להיות שאיבדת את חיבור הרשת שלך." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "אתה יכול לשקול להמתין עד שדמי הרשת יורדים כדי להשלים את העסקה הזו." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "עליך לחבר חשבון." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "עליך לתת לחוזים החכמים של Uniswap להשתמש ב- {0}שלך. אתה צריך לעשות זאת רק פעם אחת לכל אסימון." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "עליך {formattedProposalThreshold} קולות כדי להגיש הצעה" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "עליכם להפקיד נזילות רק ב- Uniswap V3 במחיר שלדעתכם נכון. <0/> אם נראה שהמחיר שגוי, באפשרותך להחליף כדי להזיז את המחיר או לחכות שמישהו אחר יעשה זאת." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "אתה גם יגבה עמלות שהרווחת מתפקיד זה." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "אתה תקבל" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "נזילות ה- V2 שלך" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "עמדות הנזילות הפעילות V3 שלך יופיעו כאן." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "הפקדות הנזילות שלך" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "נתח המאגר שלך:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "העמדה שלך" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "לתפקיד שלך יש 0 נזילות, והיא לא מרוויחה עמלות." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "עמדתך תופיע כאן." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "עמדתך תורכב ב 100% מ- {0} במחיר זה" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "עמדתך תהיה 100% {0} במחיר זה." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "העמדה שלך לא תרוויח עמלות ולא תשמש בעסקאות עד שמחיר השוק יעבור לטווח שלך." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "העמדות שלך" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "השיעור שלך" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "סך כל אסימוני המאגר שלך:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "עלות העסקה שלך תהיה גבוהה בהרבה מכיוון שהיא כוללת את הגז ליצירת המאגר." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "העסקה שלך עשויה להתקדם מראש" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "העסקה שלך עלולה להיכשל" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "העסקה שלך תחזור אם היא ממתינה למשך יותר מפרק זמן זה." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "העסקה שלך תחזור אם המחיר ישתנה בצורה לא טובה ביותר מאחוז זה." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "העסקאות שלך יופיעו כאן ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "ה-UNI שלך לא נדרש" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "לאחר החלקה" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "לְאַשֵׁר" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "עבור {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "יש אימוג'י של גרביים" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "פה." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // או ipfs: // או שם ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "דקות" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "דרך {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "דרך רשימת אסימונים {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {ייבוא אסימון} other {ייבא אסימונים}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0 /> לכל <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} אסימונים בהתאמה אישית" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} מופקד" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} עמלות שנצברו:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} בהמתנה" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI לשבוע" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP אסימונים זמינים" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} הצבעות" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} לכל {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} אסימונים" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} מחיר:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • נוסף על ידי המשתמש" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "שכבת שכר טרחה של {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% בריכה" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "בחר {0}" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} כריית נזילות" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} אסימוני LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} אסימונים" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} גשר אסימונים" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} לכל {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← חזרה לסקירת מאגרים" - diff --git a/src/locales/hu-HU.po b/src/locales/hu-HU.po deleted file mode 100644 index f5980197f4..0000000000 --- a/src/locales/hu-HU.po +++ /dev/null @@ -1,2435 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: hu_HU\n" -"Language-Team: Hungarian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: hu\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Megtekintés az Intézőben)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(összes törlése)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(szerkesztés)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Távolítsa el a címzettet" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / hét" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0 /> Minden javaslat" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0 /> Szavazatok" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0> Számlaelemzés és elhatárolt díjak <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Jelenlegi ára: <1> <2 /> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> Tipp: A pool tokenek kivonása a pozícióját visszafordítja az alapjául szolgáló tokenekre az aktuális árfolyamon, a poolból való részesedésével arányosan. Az elhatárolt díjakat az Ön által kapott összegek tartalmazzák." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Tipp: Válasszon ki egy műveletet, és írja le javaslatát a közösség számára. Az ajánlat benyújtása után nem módosítható, ezért a benyújtás előtt ellenőrizze az összes információt. A szavazási időszak azonnal megkezdődik és 7 napig tart. Egyéni művelet javaslatához <1> olvassa el a dokumentumokat ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Tipp: Ezzel a poollal olyan v2 poolokat találhat, amelyek nem jelennek meg automatikusan a felületen." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> Tipp: Amikor likviditást ad hozzá, a pozícióját képviselő pool tokeneket fog kapni. Ezek a tokenek automatikusan a poolból való részesedésével arányos díjakat keresnek, és bármikor beválthatók." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0> Szavazás feloldása a következő javaslatra való felkészüléshez." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 Üdvözöljük az Unicorn csapatában :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "A pályázatok benyújtásához az UNI teljes kínálatának minimum 0,25% -a szükséges" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Körülbelül" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Elfogadás" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Számla" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktív" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Hozzáadás" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "A <0/> és <1/> hozzáadása a Uniswap V2 -hez" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Adja hozzá a Delegate + elemet" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Adja hozzá a likviditást" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Adja hozzá a V2 likviditást" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Adja hozzá a likviditást." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Adjon hozzá több likviditást" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "{0} hozzáadása a Metamask <0/> elemhez" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Adjon hozzá {0}-{1} likviditást" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Adjon hozzá {0}/{1} V3 likviditást" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Hozzáadva {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "A címnek nincs elérhető követelése" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Ellen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "LP token migráció engedélyezése" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Engedélyezze a magas árfolyamú kereskedéseket, és hagyja ki a megerősítő képernyőt. Használat csak saját felelősségre." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Engedélyezze az Uniswap protokollnak a(z) {0} használatát" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Engedélyezve" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Összeg" - -#: src/hooks/useSwapCallback.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." -msgstr "Hiba történt a csere végrehajtása során. Lehet, hogy növelnie kell a csúszási toleranciát. Ha ez nem működik, akkor összeférhetetlenség állhat fenn az Ön által forgalmazott tokennel. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Jóváhagyás" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Token jóváhagyása" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Jóváhagyás {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Jóváhagyott" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Jóváhagyás" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "{0} jóváhagyása" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum híd" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Az Arbitrum bétaverzióban van, és leállhat. Az állásidőben pozíciója nem jár díjakkal, és nem tudja eltávolítani a likviditást. <0> További információ." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Biztos ebben?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Az Uniswap közösség tagjaként igényelheti az UNI-t, hogy szavazásra és kormányzásra használhassa.<0/><1/><2>Bővebben az UNI-ról" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Legalább {0} {1} és {2} {3} visszatérítésre kerül a pénztárcájába a kiválasztott árkategória miatt." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Letétbe helyezhető: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Egyenleg: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Legjobb egzotikus párok számára." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Legjobb a legtöbb pár számára." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Legjobb stabil párokhoz." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "A legjobb nagyon stabil párok számára." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "A legjobb árú útvonal ~{formattedGasPriceString} a benzinben." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Zárolt cím" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Híd" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likviditás hozzáadásával az összes kereskedés 3%-át keresheti meg ezen a páron, a poolból való részesedéssel arányosan. A díjakat a poolhoz adjuk hozzá, valós időben halmozódnak fel, és a likviditás kivonásával lehet igényelni." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "A pénztárca csatlakoztatásával Ön elfogadja az Uniswap Labs <0>szolgáltatási feltételeit és elismeri, hogy elolvasta és megértette az Uniswap <1>Protokoll Jogi nyilatkozatát." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Törölve" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Módosítás" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafikonok" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Ellenőrizze a hálózat állapotát" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Nézze meg a v3 LP használati és migrációs útmutatókat." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Követelés" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "<0/>. Igénypont {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "UNI igénylése" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "UNI token igénylése" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Kérjen UNI jutalmat {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Követelési díjak" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Saját UNI tokenek igénylése" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Igényelt" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Igényelt UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Követelt!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Igénylés" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Az UNI igénylése" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "{0} UNI igénylése" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Mindent töröl" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Mindent töröl" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Bezárás" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Zárva" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Begyűjtés" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Begyűjtés WETH-ként" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Díjak begyűjtése" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Gyűjtsön {0}/{1} díjat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Beszedett" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Beszedés" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Díjak beszedése" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "A díjak beszedése visszavonja a jelenleg elérhető díjakat az Ön számára." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Megerősítés" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Kínálat megerősítése" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Swap megerősítése" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Tranzakció megerősítése a pénztárcájában" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "A tranzakció megerősítése a pénztárcában" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Pénztárca csatlakoztatása" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Egy pénztárca csatlakoztatása" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Csatlakozzon egy pénztárcához a poolok megtalálásához" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Csatlakozzon egy pénztárcához a V2 likviditás megtekintéséhez." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Csatlakozzon egy pénztárcához a likviditás megtekintéséhez." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Csatlakoztatva: {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Másolva" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Cím másolása" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Pool és kínálat létrehozása" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Javaslat létrehozása" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Egy pár létrehozása" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Pool létrehozása" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Egy probléma felvetése a GitHubon" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Pool létrehozása és {0}/{1} V3 likviditás hozzáadása" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Pool létrehozása." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Készítsen {0}/{1} V3 medence" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Jelenlegi ár" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Jelenlegi {0} ár:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Sötét téma" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Legyőzött" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Szavazatok delegálása" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegálja a szavazati jogot {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegálva:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Szavazatok delegálása" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Letét" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Letéti összegek" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "UNI-V2 LP tokenek letétbe helyezése" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Likviditás letétbe helyezése" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Befizetési tokenek a {label} hálózatba." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Helyezze letétbe a likviditásszolgáltatói tokeneket, hogy megkapja az UNI-t, az Uniswap protokoll irányítási tokent." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Letétbe helyezett likviditás:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Letétbe helyezett {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Likviditás letétbe helyezése" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Leírás" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Részletes" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Részletek" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Kapcsolat bontása" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Viszály" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Elvetés" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumentumok" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Nem látja az egyik v2 pozícióját? <0> Importálja." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "A megszerzett UNI-tokenek a szavazati részesedéseket jelentik az Uniswap irányításában." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Szerkesztés" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Hatékonyság-összehasonlítás" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Adjon meg egy százalékot" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Címzett megadása" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Adjon meg érvényes csúszási százalékot" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Adjon meg egy címet az UNI-követelés kiváltásához. Ha a címnek van igényelhető UNI-ja, akkor azt a címre történő benyújtáskor elküldjük." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Adjon meg egy összeget" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Adja meg az érvényes lista helyét" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Adja meg az érvényes token címet" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Adjon meg {0} összeget" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Hiba" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Hiba történt a csatlakozáskor" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Hiba történt a csatlakozáskor. Próbálja frissíteni az oldalt." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Hiba történt a lista importálásakor" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "A becslés a pénztárca gázbeállításaitól függően eltérő lehet" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Becsült hálózati díj" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Végrehajtott" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Szakértői mód" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "A szakértői mód kikapcsolja a tranzakció megerősítését, és lehetővé teszi a nagy csúszásmentes kereskedéseket, amelyek gyakran rossz arányokat és elvesztett forrásokat eredményeznek.\n" -"A szakértői mód kikapcsolja a tranzakció megerősítésére vonatkozó felszólítást, és lehetővé tesz nagy csúszású kereskedést, amely gyakran rossz árfolyamokat és elveszett pénzeszközöket eredményez." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Lejárt" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Fedezze fel az Uniswap Analytics szolgáltatást." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Nem sikerült hálózatot váltani az Uniswap interfészről. Az Uniswap {0}történő használatához meg kell változtatnia a hálózatot a pénztárcájában." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Díjszint" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Díjszint" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "A legjobb ár lekérése..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Számára" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Az alább látható egyes poolok esetében kattintson a migrálás gombra, hogy eltávolítsa a likviditását az Uniswap V2-ből, és letétbe helyezze az Uniswap V3-ban." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Feladótól" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Feladó (legfeljebb)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Teljes körű" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "A teljes körű pozíciók kevesebb díjat kereshetnek, mint a koncentrált pozíciók. További információ <0> itt ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Kérjen támogatást a Discordon" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Segítség Központ" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Elrejt" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Zárt pozíciók elrejtése" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Magas árhatás" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Hogyan használja ez az alkalmazás az API-kat" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Értem" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Ha ebből a listából vásárol tokent, nem biztos, hogy vissza tudja adni." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importálás" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importlista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Import Pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Import V2 Pool" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Import saját felelősségére" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Tartományban" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Likviditás növelése" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Kezdeti árfolyam és a pool részesedés" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inicializálás..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Az input becsült. Legfeljebb <0>{0} {1} értékesíthet, különben a tranzakció visszafordul." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Metamask telepítése" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Nincs elegendő likviditás ehhez a kereskedéshez." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Elégtelen {0} egyenleg" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Interfész beállítások" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Érvénytelen pár" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Érvénytelen pár." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Érvénytelen ár input" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Érvénytelen tartományt választott ki. A minimális árnak alacsonyabbnak kell lennie, mint a maximális ár." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Érvénytelen címzett" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Nyelv" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Tanulás" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Tudjon meg többet a likviditás biztosításáról" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Tudj meg többet" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Jogi és adatvédelem" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Fény téma" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likviditás" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likviditási adatok nem állnak rendelkezésre." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Likviditásszolgáltató jutalma" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "A likviditásszolgáltatók 0,3%-os díjat kapnak minden kereskedés után, amely arányos a poolból való részesedésükkel. A díjakat a poolhoz adják hozzá, valós időben halmozódnak fel, és a likviditás visszavonásával igényelhetők." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listák" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Feltöltve" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Feltöltés" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Kezelés" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Likviditás kezelése a Rewards Poolban" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Tokenlisták kezelése" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Kezelje ezt a Poolt." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Max. árfolyam" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Max. árfolyam" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Max:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximum elküldve" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menü" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrálás" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Likviditás migrálása a V3-ra" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "V2 likviditás migrálása" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Likviditási tokenek migrálása az Uniswap V2-ről az Uniswap V3-ra." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "A {0}/{1} likviditás áttelepítése a V3 -ba" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrálás" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Min. ár" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Min. ár" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum beérkezett" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Hiányzó függőségek" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Több" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Hálózati díj" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Hálózati figyelmeztetés" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "A hálózati díjak meghaladják a swap összegének 50%-át!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Új pozíció" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "V2 likviditás nem található." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Nincs aktív pool" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Nincs adat" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Nincs leírás." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Likviditás nem található." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Pool nem található." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nem található javaslat." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nincs találat." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Nincs létrehozva" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "KI" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "BE" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "CSAK AKKOR HASZNÁLJA EZT A MÓDOT, HOGY TUDJA, MIT CSINÁL." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Ki" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Be" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Ha elégedett az árfolyammal, kattintson a kínálatra az áttekintéshez." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Csak azok az UNI-szavazatok jogosultak szavazni, amelyeket a {0} blokk előtt saját maguk vagy más címre delegáltak." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Hoppá! Ismeretlen hiba történt. Kérjük, frissítse az oldalt, vagy látogasson el egy másik böngészőből vagy eszközről." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimizmus átjáró" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Az optimizmus béta állapotban van, és leállások is előfordulhatnak. Az Optimism arra számít, hogy a tervezett leállások a közeljövőben frissítik a hálózatot. Az állásidő alatt pozíciója nem fog díjat fizetni, és nem tudja eltávolítani a likviditást. <0>Olvass tovább." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimista Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Tartományon kívül" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Az output becsült érték. Ha az ár {0}%-nál nagyobb mértékben változik, a tranzakció visszaáll." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "A teljesítmény becsült. Legalább <0>{0} {1} vagy a tranzakció visszaáll." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "A kimenet a következőre lesz elküldve: <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Tulajdonos" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Résztvevő poolok" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Függőben levő" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Kérjük, erősítse meg, hogy el szeretné távolítani ezt a listát, írja be a TÖRLÉS parancsot" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Kérjük, csatlakozzon az 1. réteg Ethereumhoz" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Kérjük, csatlakozzon a megfelelő Ethereum hálózathoz." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Írja be a \"{confirmWord}\" szót a szakértői mód engedélyezéséhez." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Sokszög híd" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool megtalálva!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Pool árfolyam" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Pool árfolyam" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Pool tokenek a jutalom poolban:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Összevonva {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Poolok áttekintése" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Előnézet" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Ár" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Árkülönbség:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Árhatás" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Az ár hatása túl nagy" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Ár frissítve" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Ártartomány" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Ár:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Árak és pool-részesedés" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Javaslat" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Javaslat benyújtva" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "A javaslat címe" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Javaslatok" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "A közösség tagjai által benyújtott javaslatok itt jelennek meg." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Javasolt cselekvés" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Javaslattevő" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokoll Jogi nyilatkozat" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Sorban" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Árfolyamok" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "További információk az UNI-ról" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "További információk az Uniswap irányításáról" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "További információk a likviditás nyújtásáról" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "További információk a nem támogatott eszközökről" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Legutóbbi tranzakciók" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Befogadó" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Eltávolítás" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Távolítsa el a (z) <0/> és <1/> elemeket" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Összeg eltávolítása" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Delegált eltávolítása" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Likviditás eltávolítása" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Lista eltávolítása" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "{0} {1} és {2} {3} eltávolítása" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "{0} {1} és{2} {3}eltávolítása" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Funkciók kérése" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Visszatérés" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Név keresése vagy cím beillesztése" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Válassza a Párosítás lehetőséget" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Válasszon hálózatot" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Token választása" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Válasszon egy tokent a v2 likviditásának megkereséséhez." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Válasszon ki egy műveletet" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Kiválasztott tartomány" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Saját" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Saját delegált" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Árfolyamtartomány beállítása" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Induló árfolyam beállítása" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Pool részesedése" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Pool részesedése:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Portis megjelenítése" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Zárt pozíciók megjelenítése" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Egyszerű" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Csúszási tolerancia" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Egyes eszközök nem érhetők el ezen a felületen keresztül, mert előfordulhat, hogy nem működnek jól az okosszerződésekkel, vagy jogi okokból nem tudjuk engedélyezni a kereskedést." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Valami elromlott" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "1. lépés: Szerezzen UNI-V2 likviditási tokeneket" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Új javaslat benyújtása" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Javaslat benyújtása" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Szavazat benyújtása" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Sikerült" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Siker" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Kínálat" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "{0} {1} és {2} {3} kínálása" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Swap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Cserélje le a <0/> pontot <1/> értékre" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Swap mindenképp" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Pontosan cserélje ki a <0/> értéket a <1/> értékre" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "A csere nem sikerült: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "{0} {1} cseréje a következőre {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Köszönjük, hogy az Uniswap közösség tagja <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "A díjakban keresett%." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "A Uniswap invariáns x*y=k nem teljesült a swap során. Ez általában azt jelenti, hogy a cserélendő tokenek egyike egyéni viselkedést tartalmaz az átadáskor." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Az alkalmazás blokklánc-adatokat kér le a The Graph által tárolt szolgáltatásból." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Az alkalmazás lekéri a láncon belüli adatokat, és szerződéshívásokat hoz létre egy Infura API-val." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Az alkalmazás lekéri az optimális kereskedelmi útvonalat egy Uniswap Labs szerverről." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Az alkalmazás anonimizált használati statisztikákat naplóz, hogy idővel javítsa." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Az alkalmazás biztonságosan összegyűjti a pénztárca címét, és kockázati és megfelelőségi okokból megosztja a TRM Labs Inc.-vel." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "A tranzakció elküldésének költsége több mint a fele a bevitt összeg értékének." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Az aktuális gyorsgáz-összeg az L1-es tranzakció elküldéséhez. A gázdíjat az Ethereum natív pénznemében, Etherben (ETH) kell fizetni, és GWEI-ben denominálják." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Az input és output összegek USD-értékei közötti becsült különbség." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Az input token nem transzferálható. Probléma lehet az input tokennel." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "A piaci ár kívül esik a megadott ártartományon. Csak egy eszközzel történő befizetés." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "A hálózat legutóbbi blokkszáma. Az árak minden blokkon frissülnek." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Az output token nem transzferálható. Probléma lehet az output tokennel." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "A kimeneti token nem vihető át. Probléma lehet a kimeneti tokennel. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Ennek a poolnak az ára kívül esik az Ön által kiválasztott tartományon. Az Ön pozíciója jelenleg nem keres díjat." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Ennek a poolnak az ára az Ön által kiválasztott tartományon belül van. Az Ön pozíciója jelenleg díjat keres." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Az Ön által hozzáadott tokenek aránya határozza meg ennek a poolnak az árát." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "A tranzakciót nem sikerült elküldeni, mert a határidő lejárt. Kérjük, ellenőrizze, hogy a tranzakció határideje nem túl alacsony-e." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Nincs likviditási adat." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Ez az alkalmazás a következő harmadik féltől származó API-kat használja:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Ezt a készletet inicializálni kell a likviditás növelése előtt. Az inicializáláshoz válassza ki a készlet kikiáltási árát. Ezután adja meg likviditási ártartományát és betéti összegét. Az inicializálási tranzakció miatt a gázdíjak a szokásosnál magasabbak lesznek." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Ez az útvonal optimalizálja a teljes teljesítményt az osztott útvonalak, a több ugrás és az egyes lépések gázköltségének figyelembevételével." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Ez az eszköz biztonságosan migrálja a {0} likviditását a V3-ba. A folyamat teljesen megbízhatatlan köszönhetően" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ez a tranzakció az ármozgás miatt nem fog sikerülni. Próbáld meg növelni a csúszástűrést. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ez a tranzakció sem az ármozgás, sem az átutalási díj miatt nem lesz sikeres. Próbáld meg növelni a csúszástűrést." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tipp: Az egyedi tokenek helyileg vannak tárolva a böngészőben" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "-nak/-nek" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "(Legalább)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "A token nem támogatott" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokenek" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Összesen letétbe helyezett" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Összes letét" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Kereskedelmi útvonal" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Tranzakció beállítások" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Tranzakció benyújtva" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "A tranzakció befejeződött" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Tranzakció határideje" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "A tranzakció elutasítva." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Transfer Token" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Próbálja meg újra" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Kapcsolja be a Szakértő módot" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "Megérkezett az UNI" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Az UNI tokenek szavazati részvényeket képviselnek az Uniswap irányításában. Az egyes javaslatokról saját maga is szavazhat, vagy szavazatait átruházhatja egy harmadik félre." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Elégett" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP tokenek szükségesek. Miután hozzáadta a likviditást a {0}-{1} készlethez, ezen az oldalon elhelyezheti likviditási zsetonjait." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Nem igényelt UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Nem igényelt díjak" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Meghatározatlan" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Váratlan hiba. Nem sikerült megbecsülni a cseréhez szükséges gázt." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Váratlan probléma a gáz becslésével. Kérlek próbáld újra." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap irányítás" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Az Uniswap Labs szolgáltatási feltételei" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Az Uniswap itt érhető el: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Az uniswap irányítás csak az 1. rétegben érhető el. A javaslatok és a szavazatok megtekintéséhez kapcsolja hálózatát Ethereum Mainnet-re." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap likviditásbányászat" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap migrációs szerződés↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Ismeretlen forrás" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ismeretlen hiba{0}. Próbálja meg növelni a csúszástűrést. Megjegyzés: az átutalási és újbóli alapkivonási díjak nem kompatibilisek az Uniswap V3 -mal." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Szavazatok feloldása" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Szavazás feloldása" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Szavazatok feloldása" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Nem támogatott eszköz" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Nem támogatott eszközök" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Névtelen" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Kicsomagolás" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Kicsomagolás <0/> tól {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Delegálás frissítése" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Lista frissítése" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "A Uniswap Labs API segítségével gyorsabb árajánlatokat kaphat." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Felhasználó" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "A V2 nem érhető el a 2. rétegben. Váltás az 1. réteg Ethereumra." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 likviditás" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} ár:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Felhalmozott díjak és elemzések megtekintése<0>" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Lista megtekintése" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Nézd meg az Etherscan webhelyen" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Megtekintés az Explorerben" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Tranzakció megtekintése az Explorerben" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Szavazás" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Szavazás ellen" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Szavazás mellett" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Szavazat a(z) {proposalId} javaslat ellen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Szavazzon a {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Szavazzon a {proposalKey} javaslat ellen \"{0}\" indokkal" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Szavazat a(z) {proposalId} mellett" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Szavazás a {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Szavazzon a {proposalKey} javaslatra az \"{0}\" indokkal" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Szavazzon a tartózkodásra a {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Szavazzon a tartózkodásra a {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Szavazzon tartózkodásra a {proposalKey} javaslatról az \"{0}\" indokkal" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "A szavazás befejeződött {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "A szavazás befejeződik körülbelül {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "A szavazás {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Visszaigazolásra vár" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Pénztárca címe vagy ENS neve" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Heti jutalmak" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Üdvözöljük az Unicorn csapatban :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Ha visszavonás nélkül igényel, a likviditása a bányászpoolban marad." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Amikor visszavonja, a szerződés automatikusan UNI-t követel az Ön nevében!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Ha visszavonja, az UNI-ját igényli, és a likviditása kikerül a bányászpoolból." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Visszavonás" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Visszavonás és követelés" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "A letétbe helyezett likviditás visszavonása" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "{0} UNI-V2 visszavonása" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Visszavonta az UNI-V2-t!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Becsomagolás" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Tekerje <0/> tól {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Rossz hálózat" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Már van aktív vagy függőben lévő javaslata" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Poolt hoz létre" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Ön az első likviditásszolgáltató ebben az Uniswap V3 poolban. Likviditása a jelenlegi {0} áron migrál." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Ön az első likviditásszolgáltató." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Az egyes javaslatokról vagy saját maga szavazhat, vagy delegálhatja a szavazatait egy harmadik félre." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Most kereskedhet {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Nincs elég szavazata a javaslat benyújtásához" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Ebben a poolban még nincs likviditása." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "A tranzakció befejezéséhez érdemes megvárni, amíg a hálózati díjak csökkennek." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Csatlakoznia kell egy fiókhoz." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Engedélyt kell adnia az Uniswap intelligens szerződéseknek a(z) {0} használatához. Ezt tokenenként csak egyszer kell megtennie." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "A javaslat benyújtásához {formattedProposalThreshold} szavazattal kell rendelkeznie" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Csak olyan áron helyezhet el likviditást az Uniswap V3-ban, amelyet helyesnek tart. <0/>Ha az ár helytelennek tűnik, akkor vagy cserét hajt végre az ár elmozdítása érdekében, vagy megvárhatja, hogy valaki más megtegye ezt." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Ezen a pozíción megszerzett díjakat is beszedi." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Kapni fog" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Saját V2 likviditása" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Itt jelennek meg aktív V3 likviditási pozíciói." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Saját likviditási betétek" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Saját pool részesedés:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Saját pozíció" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "A saját pozíció 0 likviditással rendelkezik, és nem keres díjat." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Itt jelenik meg az Ön álláspontja." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "A saját pozíció 100%-ban {0} lesz ezen az áron" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Pozíciója 100% {0} lesz ezen az áron." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "A saját pozíció nem fog díjakat keresni, és kereskedelemben nem használható fel, amíg a piaci ár nem kerül az Ön tartományába." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Saját pozíciók" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Saját árfolyam" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Az Ön összes pool tokenje:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Tranzakciós költsége sokkal magasabb lesz, mivel magában foglalja a pool létrehozásához szükséges gázt." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Az Ön tranzakciója lehet az esélyes" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "A tranzakció sikertelen lehet" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Tranzakciója visszaáll, ha az ennél hosszabb ideig van függőben." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "A tranzakciója visszaáll, ha az ár ennél a százaléknál nagyobb mértékben változik kedvezőtlenül." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "A tranzakciói itt jelennek meg..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Nem igényelt UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "csúszás után" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "megerősítés" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "{0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "zokni emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "itt." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // vagy ipfs: // vagy ENS név" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "perc" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "{0}-on keresztül" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "{0} token listán keresztül" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Import token} other {Import tokenek}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} egyedi token" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} letétbe helyezve" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} keresett díj:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} függőben van" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / hét" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP token érhető el" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} szavazat" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} token" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} á\n" -"r:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • felhasználó hozzáadta" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% -os díjszint" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% pool" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% választ" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} likviditásbányászat" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP token" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} token" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token híd" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Vissza a poolok áttekintéséhez" - diff --git a/src/locales/id-ID.po b/src/locales/id-ID.po deleted file mode 100644 index 2e2979acbc..0000000000 --- a/src/locales/id-ID.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: id_ID\n" -"Language-Team: Indonesian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: id\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Lihat di Penjelajah)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(Hapus semua)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(edit)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Hapus penerima" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / minggu" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Semua Proposal" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Suara" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Analisis akun dan biaya yang masih harus dibayar<1>↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Harga Saat Ini: <1><2/> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Kiat: Menghapus token pool akan mengubah posisi Anda kembali ke token pokok pada tarif saat ini, sebanding dengan bagian Anda dari pool. Biaya yang masih harus dibayar disertakan dalam jumlah yang Anda terima." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Kiat: Pilih tindakan dan jelaskan proposal Anda untuk komunitas. Proposal tidak dapat diubah setelah dikirimkan, jadi harap verifikasi semua informasi sebelum dikirm. Periode pemungutan suara akan segera dimulai dan berlangsung selama 7 hari. Untuk mengusulkan tindakan khusus, <1>baca dokumen." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Kiat: Gunakan alat ini untuk menemukan pool v2 yang tidak otomatis muncul di antarmuka." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Kiat: Saat menambahkan likuiditas, Anda akan menerima token pool yang mewakili posisi Anda. Token ini secara otomatis menghasilkan biaya yang sebanding dengan bagian Anda dalam pool, dan dapat ditukarkan kapan saja." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Buka voting untuk mempersiapkan usulan berikutnya." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉Selamat datang di tim Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Memerlukan minimal 0,25% dari total pasokan UNI untuk mengirimkan proposal" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Tentang" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Setuju" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Akun" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktif" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Tambahkan" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Tambahkan <0/> dan <1/> ke Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Tambahkan Delegasi +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Tambahkan Likuiditas" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Tambahkan Likuiditas V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Tambahkan likuiditas." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Tambahkan lebih banyak likuiditas" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Tambahkan {0} ke Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Tambahkan {0}-{1} likuiditas" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Tambahkan {0}/{1} likuiditas V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Ditambahkan {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Alamat tidak memiliki klaim yang tersedia" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Melawan" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Izinkan migrasi token LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Izinkan perdagangan berdampak harga tinggi dan lewati layar konfirmasi. Gunakan dengan resiko yang Anda tanggung sendiri." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Izinkan Protokol Uniswap untuk menggunakan {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Diizinkan" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Jumlah" - -#: src/hooks/useSwapCallback.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." -msgstr "Terjadi kesalahan saat mengeksekusi swap ini. Anda mungkin memerlukan peningkatan toleransi slip Anda. Jika tidak berhasil, kemungkinan token yang anda perdagangkan tidak cocok. Catatan: biaya transfer token rebase tidak cocok dengan Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Setujui" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Setujui Token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Setujui {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Disetujui" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Menyetujui" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Menyetujui {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiskan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Jembatan Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum dalam Beta dan mungkin mengalami downtime. Selama waktu henti, posisi Anda tidak akan mendapatkan biaya dan Anda tidak akan dapat menghapus likuiditas. <0>Baca selengkapnya." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Anda yakin?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Sebagai anggota komunitas Uniswap, Anda dapat mengklaim UNI untuk digunakan dalam voting suara dan pengaturan.<0/><1/><2>Baca selengkapnya tentang UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Setidaknya {0} {1} dan {2} {3} akan dikembalikan ke dompet Anda akibat rentang harga yang dipilih." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Otomatis" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API Router Otomatis" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Tersedia untuk disetor: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Terbaik untuk pasangan eksotis." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Terbaik untuk sebagian besar pasangan." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Terbaik untuk pasangan stabil." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Terbaik untuk pasangan yang sangat stabil." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Biaya rute harga terbaik ~{formattedGasPriceString} dalam gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Alamat diblokir" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Menjembatani" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Dengan menambahkan likuiditas, Anda akan mendapatkan 0,3% dari semua perdagangan pada pasangan ini sebanding dengan bagian pool Anda. Biaya ditambahkan ke pool, bertambah secara real time dan dapat diklaim dengan menarik likuiditas Anda." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Dengan menghubungkan dompet, Anda menyetujui Persyaratan Layanan <0>dan mengakui bahwa Anda telah membaca dan memahami Penafian Protokol <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Dibatalkan" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Perubahan" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafik" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Periksa status jaringan" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Lihat panduan migrasi dan tutorial LP v3 kami." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Klaim" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Klaim untuk {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Klaim UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Klaim Token UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Klaim hadiah UNI untuk {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Biaya klaim" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Klaim token UNI Anda" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Diklaim" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI diklaim!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Diklaim!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Mengklaim" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Mengklaim UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Mengklaim {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Hapus Semua" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Hapus semua" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Tutup" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Ditutup" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Tagih" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Tagih sebagai WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Tagih biaya" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Kumpulkan {0}/{1} biaya" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Ditagihkan" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Menagih" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Menagih biaya" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Biaya pengumpulan akan menarik biaya yang tersedia saat ini untuk Anda." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Konfirmasikan" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Konfirmasikan Pasokan" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Konfirmasikan Swap" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Konfirmasikan transaksi ini di dompet Anda" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Konfirmasi transaksi di dompet" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Hubungkan Dompet" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Hubungkan dompet" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Hubungkan ke dompet untuk menemukan pool" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Hubungkan ke dompet untuk melihat likuiditas V2 Anda." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Hubungkan ke dompet untuk melihat likuiditas Anda." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Terhubung dengan {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Disalin" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Salin Alamat" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Buat Pool & Pasokan" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Buat Proposal" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Buat pasangan" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Buat pool" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Buat masalah di GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Buat pool renang dan tambahkan {0}/{1} likuiditas V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Buat pool." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Buat kumpulan {0}/{1}" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Harga saat ini" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Harga {0} saat ini:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema gelap" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Dikalahkan" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegasikan Suara" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegasikan hak suara ke {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Didelegasikan ke:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Mendelegasikan suara" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Setoran" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Jumlah Setoran" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Setor Token LP UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Setor likuiditas" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Setor token ke jaringan {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Setor token Penyedia Likuiditas Anda untuk menerima UNI, yakni token pengaturan protokol Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Likuiditas yang disetor:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Menyetor {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Menyetor Likuiditas" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Keterangan" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Terperinci" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Perincian" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Putuskan" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Buang" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Docs" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Tidak melihat salah satu posisi v2 Anda? <0> Impor." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Token UNI yang diperoleh mewakili hak suara dalam pengaturan Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Ubah" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Perbandingan Efisiensi" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Masukkan persen" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Masukkan penerima" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Masukkan persentase slippage yang valid" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Masukkan alamat untuk memicu klaim UNI. Jika alamat tersebut memiliki UNI yang dapat diklaim, UNI tersebut akan dikirimkan kepada mereka saat diserahkan." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Masukkan jumlah" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Masukkan lokasi daftar yang valid" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Masukkan alamat token yang valid" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Masukkan {0} jumlah" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Kesalahan" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Terjadi kesalahan saat menyambungkan" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Terjadi kesalahan saat menyambungkan. Coba muat ulang halaman." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Terjadi kesalahan saat mengimpor daftar" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Estimasi mungkin berbeda karena pengaturan gas dompet Anda" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Perkiraan biaya jaringan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Dieksekusi" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Mode ahli" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Mode ahli mematikan permintaan konfirmasi transaksi dan memungkinkan perdagangan dengan slippage tinggi yang sering kali menimbulkan suku bunga yang buruk dan hilangnya dana." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "kadaluarsa" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Jelajahi Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Gagal berpindah jaringan dari Antarmuka Uniswap. Untuk menggunakan Uniswap pada {0}, Anda harus mengubah jaringan di dompet Anda." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Jenjang Biaya" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Tingkat biaya" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Mengambil harga terbaik..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Untuk" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Untuk tiap pool yang ditunjukkan di bawah ini, klik migrasikan untuk menghapus likuiditas Anda dari Uniswap V2 dan menyimpannya ke Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Dari" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Dari (paling banyak)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Rentang Penuh" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Posisi rentang penuh dapat memperoleh biaya lebih sedikit daripada posisi terkonsentrasi. Pelajari lebih lanjut <0>di sini ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Dapatkan dukungan di Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Pusat Bantuan" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Menyembunyikan" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Sembunyikan posisi tertutup" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Dampak Harga Tinggi" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Bagaimana aplikasi ini menggunakan API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Saya mengerti" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Jika Anda membeli token dari daftar ini, Anda mungkin tidak dapat menjualnya kembali." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Impor" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Impor Daftar" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Impor Pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Impor Pool V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Impor dengan risiko yang Anda tanggung sendiri" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Dalam rentang" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Tingkatkan Likuiditas" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Harga awal dan bagian pool" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Memulai..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Input diperkirakan. Anda akan menjual paling banyak <0>{0} {1} atau transaksi akan dikembalikan." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Pasang Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Likuiditas tidak cukup untuk perdagangan ini." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} tidak cukup" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Pengaturan Antarmuka" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Pasangan tidak valid" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Pasangan tidak valid." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Masukan harga tidak valid" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Rentang yang tidak valid dipilih. Harga min harus lebih rendah dari harga maks." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Penerima tidak valid" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Bahasa" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Belajar" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Pelajari tentang menyediakan likuiditas" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Pelajari lebih lanjut" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Hukum & Privasi" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema Terang" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likuiditas" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Data likuiditas tidak tersedia." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Imbalan penyedia likuiditas" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Penyedia likuiditas mendapatkan biaya 0,3% pada semua perdagangan yang sebanding dengan bagian pool mereka. Biaya ditambahkan ke kumpulan, bertambah secara real time dan dapat diklaim dengan menarik likuiditas Anda." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Daftar" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Sarat" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Memuat" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAKSIMAL" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Mengelola" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Kelola Likuiditas di Pool Hadiah" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Kelola Daftar Token" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Kelola pangkalan ini." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Harga Maks" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Harga maks" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maks:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksimum dikirim" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrasi" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrasi Likuiditas ke V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrasikan Likuiditas V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrasikan token likuiditas Anda dari Uniswap V2 ke Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrasi {0}/{1} likuiditas ke V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Bermigrasi" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Harga Min" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Harga min" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum diterima" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Ketergantungan yang hilang" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Lebih" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Biaya Jaringan" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Peringatan Jaringan" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Biaya jaringan melebihi 50% dari jumlah swap!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Posisi baru" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Tidak ditemukan Likuiditas V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Tidak ada pangkalan aktif" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Tidak ada data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Tidak ada deskripsi." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Likuiditas tidak ditemukan." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Tidak ada kolam yang ditemukan." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Proposal tidak ditemukan." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Hasil tidak ditemukan." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Tidak dibuat" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "MATI" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "HIDUP" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "GUNAKAN MODE INI HANYA JIKA ANDA TAHU APA YANG ANDA LAKUKAN." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Mati" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Hidup" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Setelah Anda puas dengan penawaran harga klik untuk meninjau." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Hanya suara UNI yang didelegasikan sendiri atau didelegasikan ke alamat lain sebelum blok {0} yang memenuhi syarat untuk memberi suara." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ups! Terjadi kesalahan yang tidak diketahui. Harap segarkan halaman, atau kunjungi dari browser atau perangkat lain." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Gerbang Optimisme" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimisme dalam Beta dan mungkin mengalami downtime. Optimisme mengharapkan downtime yang direncanakan untuk meningkatkan jaringan dalam waktu dekat. Selama waktu henti, posisi Anda tidak akan mendapatkan biaya dan Anda tidak akan dapat menghapus likuiditas. <0>Baca lebih lanjut." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimis Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Diluar jangkauan" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Output diperkirakan. Jika harga berubah lebih dari {0}%, transaksi Anda akan dikembalikan." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Output diperkirakan. Anda akan menerima setidaknya <0>{0} {1} atau transaksi akan dikembalikan." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Output akan dikirim ke <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Pemilik" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Kolam yang berpartisipasi" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Tertunda" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Konfirmasikan bahwa Anda ingin menghapus daftar ini dengan mengetik HAPUS" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Silakan hubungkan ke Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Harap hubungkan ke jaringan Ethereum yang sesuai." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Ketik kata \"{confirmWord}\" untuk mengaktifkan mode ahli." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Jembatan Poligon" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Kolam" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool Ditemukan!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tarif Pool" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tarif pool" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Token pool di pool hadiah:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Dikumpulkan {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Gambaran Umum Pool" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Pratinjau" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Harga" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Selisih Harga:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Dampak Harga" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Dampak Harga Terlalu Tinggi" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Harga Diperbarui" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Rentang harga" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Harga:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Harga dan bagian pool" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Proposal" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Proposal Terkirim" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Judul Proposal" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Usulan" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Proposal yang diajukan oleh anggota komunitas akan muncul di sini." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Tindakan yang Diusulkan" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Pengusul" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Penafian Protokol" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Mengantri" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tarif" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Baca selengkapnya tentang UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Baca selengkapnya tentang pengaturan Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Baca selengkapnya tentang menyediakan likuiditas" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Baca selengkapnya tentang aset yang tidak didukung" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Transaksi Terkini" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Penerima" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Hapus" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Hapus dan <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Hapus Jumlah" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Hapus Delegasi" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Hapus Likuiditas" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Hapus daftar" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Menghapus {0} {1} dan {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Menghapus {0} {1} dan{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Fitur Permintaan" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Kembali" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Cari nama atau tempel alamat" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Pilih Pasangan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Pilih jaringan" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Pilih token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Pilih token untuk menemukan likuiditas v2 Anda." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Pilih tindakan" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Rentang yang Dipilih" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Sendiri" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Delegasikan Sendiri" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Tetapkan Rentang Harga" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Tetapkan Harga Awal" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Bagian dari Pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Bagian dari Pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Tampilkan Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Tampilkan posisi tertutup" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Sederhana" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Toleransi slip" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Sejumlah aset tidak tersedia melalui antarmuka ini karena mereka mungkin tidak sesuai dengan smart contract atau kami tidak dapat mengizinkan perdagangan karena alasan hukum." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Ada yang salah" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Langkah 1. Dapatkan token Likuiditas UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Kirim proposal baru" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Mengajukan Proposal" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Mengirim Suara" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Berhasil" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Berhasil" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Pasokan" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Memasok {0} {1} dan {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Tukar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Tukar <0/> dengan tepat <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Tukar Saja" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Tukar persis <0/> untuk <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Tukar gagal: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Menukar {0} {1} untuk {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Terima kasih telah menjadi bagian dari komunitas Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% yang akan Anda peroleh dalam bentuk biaya." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Invarian Uniswap x*y=k tidak dipenuhi oleh penukaran. Ini biasanya berarti salah satu token yang Anda tukar menyertakan perilaku khusus saat transfer." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Aplikasi ini mengambil data blockchain dari layanan yang dihosting The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Aplikasi mengambil data on-chain dan membuat panggilan kontrak dengan API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Aplikasi mengambil rute perdagangan optimal dari server Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Aplikasi ini mencatat statistik penggunaan anonim untuk meningkatkan dari waktu ke waktu." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Aplikasi ini dengan aman mengumpulkan alamat dompet Anda dan membagikannya dengan TRM Labs Inc. untuk alasan risiko dan kepatuhan." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Biaya pengiriman transaksi ini lebih dari setengah dari nilai jumlah input." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Jumlah gas cepat saat ini untuk mengirim transaksi di L1. Biaya gas dibayarkan dalam mata uang asli Ethereum, Ether (ETH) dan dalam mata uang GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Perkiraan perbedaan antara nilai input dan jumlah output USD." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Token input tidak dapat ditransfer. Mungkin ada masalah dengan token input." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Harga pasar di luar rentang harga yang Anda tentukan. Khusus setoran aset tunggal." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Nomor blokir terbaru di jaringan ini. Harga update di setiap blok." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Token output tidak dapat ditransfer. Mungkin ada masalah dengan token output." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Output token tidak dapat ditransfer. Mungkin ada masalah dengan output token. Catatan: biaya transfer dan token rebase tidak sesuai dengan Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Harga pool ini di luar rentang yang Anda pilih. Posisi Anda saat ini tidak menghasilkan biaya." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Harga pool ini berada dalam rentang yang Anda pilih. Posisi Anda saat ini menghasilkan biaya." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Rasio token yang Anda tambahkan akan menetapkan harga pool ini." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Transaksi tidak dapat dikirim karena tenggat waktu telah berlalu. Harap periksa bahwa tenggat waktu transaksi Anda tidak terlalu rendah." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Tidak ada data likuiditas." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Aplikasi ini menggunakan API pihak ketiga berikut:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Pool ini harus diinisialisasi sebelum Anda dapat menambahkan likuiditas. Untuk menginisialisasi, pilih harga awal untuk pool. Kemudian, masukkan kisaran harga likuiditas dan jumlah deposit Anda. Biaya gas akan lebih tinggi dari biasanya karena transaksi inisialisasi." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Rute ini mengoptimalkan total output Anda dengan mempertimbangkan rute terpisah, beberapa lompatan, dan biaya bahan bakar untuk setiap langkah." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Token ini tidak didukung di aplikasi Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Alat ini akan memigrasikan {0} likuiditas Anda ke V3 dengan aman. Prosesnya benar-benar tidak dapat dipercaya berkat" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Transaksi ini tidak akan berhasil karena pergerakan harga. Coba tingkatkan toleransi selip Anda. Catatan: biaya transfer dan token rebase tidak sesuai dengan Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Transaksi ini tidak akan berhasil baik karena pergerakan harga atau biaya transfer. Coba tingkatkan toleransi selip Anda." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tip: Token khusus disimpan secara lokal di browser Anda" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Untuk" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Untuk (setidaknya)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token tidak didukung" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Token" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total deposit" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Jumlah simpanan" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Rute Perdagangan" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Pengaturan Transaksi" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaksi Dikirim" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaksi selesai pada" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Batas waktu transaksi" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaksi ditolak." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Transfer Token" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Coba Lagi" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Nyalakan Mode Pakar" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI telah sampai" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Token UNI menunjukkan hak suara dalam pengaturan Uniswap. Anda dapat memberikan suara secara langsung pada tiap usulan atau mendelegasikannya kepada pihak ketiga." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Terbakar" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Token UNI-V2 LP diperlukan. Setelah Anda menambahkan likuiditas ke {0}-{1} pool, Anda dapat mempertaruhkan token likuiditas Anda di halaman ini." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI tidak diklaim" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Biaya yang tidak diklaim" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Tidak dapat ditentukan" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Kesalahan yang tidak diduga. Tidak dapat memperkirakan gas untuk swap." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Masalah tak terduga dengan memperkirakan gas. Silakan coba lagi." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Tata Kelola Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Persyaratan Layanan Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap tersedia dalam: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Tata kelola Uniswap hanya tersedia di Layer 1. Alihkan jaringan Anda ke Ethereum Mainnet untuk melihat Proposal dan Vote." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Penambangan likuiditas Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Kontrak migrasi Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Sumber tidak diketahui" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Kesalahan tidak diketahui{0}. Coba tingkatkan toleransi selip Anda. Catatan: biaya transfer dan token rebase tidak sesuai dengan Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Buka Suara" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Buka Kunci Voting" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Membuka Suara" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Aset Tidak Didukung" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Aset Tidak Didukung" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Tanpa Judul" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Membuka" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Buka bungkus <0/> hingga {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Perbarui Delegasi" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Perbarui daftar" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Gunakan Uniswap Labs API untuk mendapatkan penawaran lebih cepat." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Pengguna" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 tidak tersedia di Layer 2. Beralih ke Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Likuiditas V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Harga:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Lihat biaya yang masih harus dibayar dan analitik<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Lihat daftar" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Lihat di Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Lihat di Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Lihat transaksi di Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Beri Suara" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Beri Suara Melawan" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Beri Suara Untuk" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Beri suara melawan usulan {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Suara menentang proposal {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote menentang proposal {proposalKey} dengan alasan \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Beri suara untuk usulan {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Suara untuk proposal {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote untuk proposal {proposalKey} dengan alasan \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Pilih untuk abstain pada proposal {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Memilih untuk abstain pada proposal {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Memilih untuk abstain pada proposal {proposalKey} dengan alasan \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Voting berakhir {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Voting berakhir kira-kira {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Pemungutan suara dimulai sekitar {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Menunggu Konfirmasi" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Alamat Dompet atau nama ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Hadiah Mingguan" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Selamat datang di tim Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Ketika mengklaim tanpa menarik, likuiditas Anda tetap berada di pool penambangan." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Saat Anda menarik, kontrak akan secara otomatis mengklaim UNI atas nama Anda!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Saat Anda menarik, UNI Anda diklaim dan likuiditas Anda dihapus dari pool penambangan." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Tarik" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Tarik & Klaim" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Tarik likuiditas yang disetor" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Menarik {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Menarik UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Wrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Bungkus <0/> hingga {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Jaringan Salah" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Anda sudah memiliki proposal yang aktif atau tertunda" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Anda sedang membuat pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Anda adalah penyedia likuiditas pertama untuk pool Uniswap V3 ini. Likuiditas Anda akan bermigrasi pada harga {0} saat ini." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Anda adalah penyedia likuiditas pertama." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Anda dapat memilih sendiri setiap usulan atau mendelegasikan suara Anda ke pihak ketiga." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Anda sekarang dapat berdagang {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Anda tidak memiliki cukup suara untuk mengirimkan proposal" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Anda belum memiliki likuiditas di pool ini." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Anda mungkin mempertimbangkan untuk menunggu hingga biaya jaringan turun untuk menyelesaikan transaksi ini." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Anda harus menghubungkan akun." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Anda harus memberikan izin smart contract kepada Uniswap untuk menggunakan {0} Anda. Anda hanya perlu melakukan ini satu kali per token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Anda harus memiliki {formattedProposalThreshold} suara untuk mengajukan proposal" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Anda hanya boleh menyetorkan likuiditas ke Uniswap V3 dengan harga yang Anda yakini benar. <0/>Jika harga tampak salah, Anda dapat melakukan pertukaran untuk memindahkan harga atau menunggu orang lain melakukannya." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Anda juga akan memungut biaya yang diperoleh dari posisi ini." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Anda akan menerima" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Likuiditas V2 Anda" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Posisi likuiditas V3 aktif Anda akan muncul di sini." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Setoran likuiditas Anda" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Bagian pool Anda:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Posisi Anda" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Posisi Anda memiliki 0 likuiditas, dan tidak menghasilkan biaya." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Posisi Anda akan muncul di sini." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Posisi Anda akan 100% terdiri dari {0} pada harga ini" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Posisi Anda akan 100% {0} pada harga ini." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Posisi Anda tidak akan menghasilkan biaya atau digunakan dalam perdagangan sampai harga pasar bergerak ke rentang Anda." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Posisi Anda" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Tarif Anda" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Token total pool Anda:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Biaya transaksi Anda akan jauh lebih tinggi karena sudah termasuk gas untuk membuat pool." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Transaksi Anda mungkin front running" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Transaksi Anda mungkin gagal" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Transaksi Anda akan dikembalikan jika tertunda selama lebih dari jangka waktu ini." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Transaksi Anda akan dikembalikan jika harga berubah lebih dari persentase ini." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Transaksi Anda akan muncul di sini ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "UNI Anda yang belum diklaim" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "setelah tergelincir" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "konfirmasikan" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "untuk {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "memiliki emoji kaus kaki" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "di sini." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// atau ipfs:// atau nama ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "menit" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "melalui {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "melalui {0} daftar token" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Impor token} other {Impor token}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Token Kustom" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Disetor" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Biaya yang Diperoleh:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Tertunda" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / minggu" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} token LP UNI-V2 yang tersedia" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Suara" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} token" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Harga:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Ditambahkan oleh pengguna" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "tingkat biaya {0}%" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% kolam" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% memilih" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Penambangan Likuiditas" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} Token LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} token" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token jembatan" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Kembali ke Gambaran Umum Pool" - diff --git a/src/locales/it-IT.po b/src/locales/it-IT.po deleted file mode 100644 index 5f4765ef84..0000000000 --- a/src/locales/it-IT.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: it_IT\n" -"Language-Team: Italian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: it\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Visualizza su Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(cancella tutto)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(modifica)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Rimuovi destinatario" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / settimana" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Tutte Le Proposte" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Voti" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Analisi account e commissioni maturate<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Prezzo attuale: <1><2/> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Suggerimento: La rimozione dei token pool converte la tua posizione in token sottostanti alla velocità corrente, proporzionale alla tua quota del pool. Le commissioni accumulate sono incluse negli importi che ricevi." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Suggerimento: Seleziona un'azione e descrivi la tua proposta per la comunità. La proposta non può essere modificata dopo l'invio, quindi verificare tutte le informazioni prima di inviare. Il periodo di votazione inizierà immediatamente e durerà 7 giorni. Per proporre un'azione personalizzata, <1>leggi i documenti ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Suggerimento: Usa questo strumento per trovare i pool v2 che non vengono visualizzati automaticamente nell'interfaccia." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Suggerimento: Quando aggiungi liquidità, riceverai i token di pool che rappresentano la tua posizione. Questi gettoni guadagnano automaticamente le commissioni proporzionali alla tua quota del pool e possono essere riscattati in qualsiasi momento." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Sblocca il voto per preparare la prossima proposta." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Benvenuto nel team Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Per la presentazione delle proposte è richiesta una soglia minima dello 0,25% della fornitura UNI totale" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Informazioni" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Accetta" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Account" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Attivo" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Aggiungi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Aggiungi <0/> e <1/> a Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Aggiungi Delegato +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Aggiungi Liquidità" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Aggiungi Liquidità V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Aggiungi liquidità." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Aggiungi più liquidità" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Aggiungi {0} a Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Aggiungi liquidità {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Aggiungi liquidità {0}/{1} V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0} aggiunto" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "L'indirizzo non ha alcun reclamo disponibile" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Contro" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Consenti la migrazione del token LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Consenti scambi ad alto impatto sui prezzi e salta la schermata di conferma. Usa a tuo rischio." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Permetti al Protocollo Uniswap di utilizzare il tuo {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Consentito" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Importo" - -#: src/hooks/useSwapCallback.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." -msgstr "Si è verificato un errore durante il tentativo di eseguire questo scambio. Potrebbe essere necessario aumentare la tolleranza allo slittamento. Se ciò non funziona, potrebbe esserci un'incompatibilità con il token che stai scambiando. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Approva" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Token di approvazione" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Approva {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Approvato" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Approvazione" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Approvazione di {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Ponte Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum è in versione Beta e potrebbe subire tempi di inattività. Durante i tempi di inattività, la tua posizione non guadagnerà commissioni e non sarai in grado di rimuovere la liquidità. <0>Leggi di più." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Sei sicuro?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Come membro della comunità Uniswap puoi pretendere che l'UNI sia usato per votare e la governance.<0/><1/><2>Leggi di più su UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Almeno {0} {1} e {2} {3} saranno rimborsati al tuo portafoglio a causa dell'intervallo di prezzo selezionato." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automatico" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API del router automatico" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponibile per il deposito: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Bilanciamento: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Ideale per coppie esotiche." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Ideale per la maggior parte delle coppie." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Ideale per coppie stabili." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Ideale per coppie molto stabili." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Il miglior percorso di prezzo costa ~{formattedGasPriceString} in gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Indirizzo bloccato" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Ponte" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Aggiungendo liquidità guadagnerai lo 0,3% di tutte le operazioni su questa coppia proporzionale alla tua quota di pool. Le tasse vengono aggiunte al pool, maturano in tempo reale e possono essere rivendicate ritirando la vostra liquidità." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Collegando un portafoglio, accetti <0>Termini di servizio di Uniswap Labs e riconosci di aver letto e compreso l'Esonero di responsabilità del protocollo <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Annullato" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Cambia" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafici" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Controlla lo stato della rete" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Scopri le nostre guide di passaggio v3 LP e di migrazione." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Reclama" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Richiedi <0/> per {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Reclama UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Reclama UNI Token" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Richiedi il premio UNI per {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Diritti di rivendicazione" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Richiedi i tuoi token UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Richiesto" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI Richiesta!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Ha sostenuto!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Richiesta in corso" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Richiesta UNI in corso" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Reclama {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Cancella Tutto" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Cancella tutto" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Chiudi" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Chiuso" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Raccogli" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Raccogli come WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Raccogli commissioni" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Raccogli {0}/{1} commissioni" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Raccolti" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Raccolta" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Raccolta delle commissioni" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "La riscossione delle commissioni preleverà le commissioni attualmente disponibili per te." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Conferma" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Conferma Fornitura" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Conferma lo scambio" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Conferma questa transazione nel tuo portafoglio" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Conferma transazione nel portafoglio" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Connetti Portafoglio" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Collega un portafoglio" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Connettiti a un portafoglio per trovare dei pool" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Connettiti a un portafoglio per visualizzare la tua liquidità V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Connettiti a un portafoglio per visualizzare la tua liquidità." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Connesso con {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copiato" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copia Indirizzo" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Crea Pool e Fornitura" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Crea proposta" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Crea una coppia" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Crea un pool" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Crea un problema su GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Crea pool e aggiungi liquidità {0}/{1} V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Crea pool." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Crea {0}/{1} pool V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Prezzo corrente" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Prezzo {0} corrente:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema scuro" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "sconfitto" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Voti Delegati" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delega il potere di voto a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegato a:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegare voti" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Deposito" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Importi Di Deposito" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Token del deposito UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Liquidità dei depositi" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Deposita i token sulla rete {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Deposita i tuoi token del fornitore di liquidità per ricevere l'UNI, il token di governance del protocollo Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Liquidità depositata:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "{0} UNI-V2 depositato" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Depositare liquidità" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Descrizione" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Dettagliato" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Dettagli" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Disconnessione" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Ignora" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documenti" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Non vedi una delle tue posizioni v2? <0>Importala." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "I token UNI guadagnati rappresentano le quote di voto nella governance di Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "modificare" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Confronto di efficienza" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Inserisci una percentuale" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Inserisci un destinatario" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Inserisci una percentuale di slittamento valida" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Inserisci un indirizzo per attivare un reclamo UNI. Se l'indirizzo ha una qualsiasi UNI che può essere richiesta, verrà inviata loro al momento dell'invio." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Inserisci un importo" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Inserisci la posizione della lista valida" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Inserisci un indirizzo di token valido" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Inserisci {0} importo" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Errore" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Errore di connessione" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Errore di connessione. Prova ad aggiornare la pagina." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Errore nell'importazione della lista" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "La stima potrebbe differire a causa delle impostazioni del gas del tuo portafoglio" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Costo di rete stimato" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Eseguito" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Modalità esperto" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "La modalità Esperto disattiva il prompt delle transazioni di conferma e permette operazioni ad alto slittamento che spesso si traducono in cattive tariffe e fondi persi." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Scaduto" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Esplora Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Impossibile cambiare rete dall'interfaccia Uniswap. Per utilizzare Uniswap su {0}, devi cambiare la rete nel tuo portafoglio." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Livello Di Tariffa" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Livello tariffario" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Recupero del miglior prezzo..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Per" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Per ogni pool mostrato di seguito, fai clic su Esegui migrazione per rimuovere la liquidità da Uniswap V2 e depositarlo in Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Da" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Da (al massimo)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Gamma completa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Le posizioni a gamma completa possono guadagnare meno commissioni rispetto alle posizioni concentrate. Scopri di più <0>qui ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Ottieni supporto su Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centro assistenza" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Nascondere" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Nascondi posizioni chiuse" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Impatto Ad Alto Prezzo" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "In che modo questa app utilizza le API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Capisco" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Se acquisti un token da questa lista, potresti non essere in grado di venderlo." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importa" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importa Lista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importa Pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importa pool V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importa a tuo rischio" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Nell'intervallo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Aumenta La Liquidità" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Prezzi iniziali e quote di pool" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inizializzazione..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "L'input è stimato. Venderai al massimo <0>{0} {1} o la transazione verrà ripristinata." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Installa Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Liquidità insufficiente per questa operazione." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insufficiente" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Impostazioni Interfaccia" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Coppia non valida" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Coppia non valida." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Input di prezzo non valido" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Intervallo selezionato non valido. Il prezzo minimo deve essere inferiore al prezzo massimo." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Destinatario non valido" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "linguaggio" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Impara" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Scopri come fornire liquidità" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Scopri di più" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Legale e Privacy" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema chiaro" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquidità" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Dati sulla liquidità non disponibili." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Ricompense fornitore di liquidità" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "I fornitori di liquidità guadagnano una commissione dello 0,3% su tutte le operazioni proporzionale alla loro quota del pool. Le tasse vengono aggiunte al pool, maturano in tempo reale e possono essere richieste ritirando la vostra liquidità." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Liste" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Caricato" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Caricamento" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gestisci" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gestisci la liquidità nel pool di ricompense" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Gestisci Elenchi Token" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Gestisci questo pool." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Prezzo Massimo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Prezzo massimo" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Max:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Massimo inviato" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menù" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Esegui migrazione" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migra la liquidità a V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migra Liquidità V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migra i tuoi token di liquidità da Uniswap V2 a Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrare {0}/{1} a V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrazione" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Prezzo Minimo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Prezzo minimo" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimo ricevuto" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dipendenze mancanti" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Altro" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Commissione di rete" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Avviso di rete" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Le commissioni di rete superano il 50% dell'importo dello swap!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nuova Posizione" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Nessuna liquidità V2 trovata." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Nessun pool attivo" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Nessun dato" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Nessuna descrizione." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Nessuna liquidità trovata." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Nessun pool trovato." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nessuna proposta trovata." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nessun risultato trovato." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Non creato" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "USA SOLO QUESTO MODALITA' SE SAI QUELLO CHE STAI FACENDO." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Off" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "On" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Una volta che sei soddisfatto del tasso di fornitura fai clic per recensire." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Solo i voti UNI che sono stati auto-delegati o delegati a un altro indirizzo prima del blocco {0} sono ammissibili per votare." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Oops! Si è verificato un errore sconosciuto. Si prega di aggiornare la pagina, o visitare da un altro browser o dispositivo." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Porta dell'ottimismo" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "L'ottimismo è in beta e potrebbe verificarsi tempi di inattività. L'ottimismo prevede tempi di inattività pianificati per aggiornare la rete nel prossimo futuro. Durante i tempi di inattività, la tua posizione non guadagnerà commissioni e non sarai in grado di rimuovere la liquidità. <0>Leggi di più." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan ottimista" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Fuori portata" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "L'output è stimato. Se il prezzo cambia di più di {0}% la transazione verrà ripristinata." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "L'output è stimato. Riceverai almeno <0>{0} {1} o la transazione verrà ripristinata." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "L'output verrà inviato a <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Proprietario" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Pool partecipanti" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "in attesa di" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Conferma che desideri rimuovere questo elenco digitando REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Si prega di connettersi a Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Si prega di connettersi alla rete Ethereum appropriata." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Si prega di digitare la parola \"{confirmWord}\" per abilitare la modalità esperti." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Ponte poligonale" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool trovato!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tasso del pool" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tasso del pool" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Token del pool nel pool di ricompense:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Raggruppato {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Panoramica dei pool" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Anteprima" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Prezzo" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Differenza Di Prezzo:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impatto sui prezzi" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Impatto Prezzo Troppo Alto" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Prezzo Aggiornato" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Intervallo di prezzo" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Prezzo:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Prezzi e quota del pool" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Proposta inviata" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Titolo della proposta" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Proposte" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Le proposte presentate dai membri della comunità appariranno qui." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Azione proposta" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Proponente" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Dichiarazione di non responsabilità del protocollo" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "In coda" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tariffe" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Leggi tutto su UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Per saperne di più sulla governance di Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Per saperne di più sulla fornitura di liquidità" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Per saperne di più sugli asset non supportati" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Transazioni Recenti" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Destinatario" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Rimuovi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Rimuovi <0/> e <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Rimuovi Importo" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Rimuovi Delegato" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Rimuovi Liquidità" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Rimuovi elenco" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Rimozione di {0} {1} e {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Rimozione {0} {1} e{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Funzionalità di richiesta" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Ritorno" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Cerca nome o incolla indirizzo" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Seleziona Coppia" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Seleziona una rete" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Seleziona un token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Seleziona un token per trovare la tua liquidità v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Seleziona un'azione" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Intervallo selezionato" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Se stesso" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Auto-Delegato" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Imposta Intervallo Di Prezzo" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Imposta Prezzo iniziale" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Quota del pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Quota del pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Show Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Mostra posizioni chiuse" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Semplice" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolleranza allo slittamento" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Alcuni asset non sono disponibili attraverso questa interfaccia perché potrebbero non funzionare bene con i contratti intelligenti o non siamo in grado di consentire il trading per motivi legali." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Qualcosa è andato storto" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Passo 1. Ottieni i token di liquidità UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Invia nuova proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Invio della proposta" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Invio del voto" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Successo" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Successo" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Fornitura" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Fornitura di {0} {1} e {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Scambia" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Scambia <0/> con esattamente <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Scambia Comunque" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Scambia esattamente <0/> con <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Scambio fallito: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Scambio di {0} {1} per {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Grazie per far parte della community di Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "La % che guadagnerai in commissioni." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "L'invariante Uniswap x * y = k non è stata soddisfatta con lo scambio. Questo di solito significa che uno dei token che stai scambiando incorpora un comportamento personalizzato durante il trasferimento." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "L'app recupera i dati blockchain dal servizio ospitato di The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "L'app recupera i dati sulla catena e crea chiamate di contratto con un'API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "L'app recupera la rotta commerciale ottimale da un server Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "L'app registra statistiche di utilizzo anonime per migliorare nel tempo." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "L'app raccoglie in modo sicuro l'indirizzo del tuo portafoglio e lo condivide con TRM Labs Inc. per motivi di rischio e conformità." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Il costo dell'invio di questa transazione è più della metà del valore dell'importo inserito." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "L'importo corrente del gas veloce per l'invio di una transazione su L1. Le tariffe del gas sono pagate nella valuta nativa di Ethereum Ether (ETH) e denominate in GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "La differenza stimata tra i valori in USD degli importi di input e output." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Il token di input non può essere trasferito. Potrebbe esserci un problema con il token di input." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Il prezzo di mercato è al di fuori della tua fascia di prezzo specificata. Solo deposito singolo asset." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Il numero di blocco più recente su questa rete. I prezzi si aggiornano ad ogni blocco." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Il token di output non può essere trasferito. Potrebbe esserci un problema con il token di output." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Il token di output non può essere trasferito. Potrebbe esserci un problema con il token di output. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Il prezzo di questo pool è al di fuori dell'intervallo selezionato. La tua posizione non sta attualmente guadagnando commissioni." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Il prezzo di questo pool è entro l'intervallo selezionato. La tua posizione sta attualmente guadagnando commissioni." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Il rapporto tra i gettoni che aggiungi imposterà il prezzo di questo pool." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Impossibile inviare la transazione perché il termine è scaduto. Si prega di verificare che la scadenza della transazione non sia troppo bassa." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Non ci sono dati sulla liquidità." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Questa app utilizza le seguenti API di terze parti:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Questo pool deve essere inizializzato prima di poter aggiungere liquidità. Per inizializzare, seleziona un prezzo di partenza per il pool. Quindi, inserisci la tua fascia di prezzo della liquidità e l'importo del deposito. Le tariffe del gas saranno più alte del solito a causa della transazione di inizializzazione." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Questo percorso ottimizza la tua produzione totale considerando percorsi divisi, più luppoli e il costo del gas di ogni passaggio." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Questo token non è supportato nell'app Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Questo strumento eseguirà la migrazione in modo sicuro della tua liquidità {0} a V3. Il processo è completamente affidabile grazie alla" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Questa transazione non avrà esito positivo a causa del movimento dei prezzi. Prova ad aumentare la tua tolleranza allo slittamento. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Questa transazione non avrà esito positivo a causa del movimento del prezzo o della commissione sul trasferimento. Prova ad aumentare la tua tolleranza allo slittamento." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Suggerimento: i token personalizzati sono memorizzati localmente nel tuo browser" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "A" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "A (almeno)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token non supportato" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Token" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Totale depositato" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Depositi totali" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Rotta commerciale" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Impostazioni della transazione" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transazione Inviata" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transazione completata in" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Termine transazione" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transazione rifiutata." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token di trasferimento" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Prova Di Nuovo" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Attiva Modalità Esperto" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "È arrivata l'UNI" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "I token UNI rappresentano le quote di voto nella governance di Uniswap. Puoi votare su ogni proposta tu stesso o delegare i tuoi voti a terzi." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} bruciati" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Sono richiesti token LP UNI-V2. Una volta che hai aggiunto liquidità al pool {0}-{1} , puoi puntare i tuoi token di liquidità in questa pagina." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI non richiesto" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Commissioni non richieste" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Indeterminato" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Errore inaspettato. Impossibile stimare il gas per lo scambio." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema imprevisto con la stima del gas. Per favore riprova." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap Governance" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Termini di servizio di Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponibile tra: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "La governance di Uniswap è disponibile solo su Layer 1. Passa la tua rete a Ethereum Mainnet per visualizzare le proposte e votare." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap attività minerarie di liquidità" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Contratto di migrazione Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Fonte sconosciuta" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Errore sconosciuto{0}. Prova ad aumentare la tua tolleranza allo slittamento. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Sblocca Voti" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Sblocca Il Voto" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Sblocco Voti" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Asset Non Supportato" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Asset Non Supportato" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Senza titolo" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Scarta da <0/> a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Aggiorna la delega" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Aggiorna elenco" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Utilizza l'API di Uniswap Labs per ottenere preventivi più rapidi." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Utente" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 non è disponibile su Layer 2. Passa a Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Liquidità V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Prezzo {0} V3:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Visualizza le commissioni e le analisi accumulate<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Visualizza elenco" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Visualizza su Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Visualizza su Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Visualizza transazione su Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "VOTAZIONI" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Vota Contro" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Voto per" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Vota contro la proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Vota contro la proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vota contro la proposta {proposalKey} con motivazione \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Vota la proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Vota la proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Vota la proposta {proposalKey} con motivazione \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Vota per l'astensione sulla proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Vota per l'astensione sulla proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Vota l'astensione sulla proposta {proposalKey} con motivazione \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Votazione terminata {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "La votazione termina approssimativamente {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "La votazione inizia circa {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "In Attesa Di Conferma" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Indirizzo portafoglio o nome ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Ricompense Settimanale" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Benvenuto nel team Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Quando si rivendica senza ritirare la liquidità rimane nel pool minerario." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Al momento del recesso, il contratto rivendicherà automaticamente UNI per vostro conto!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Quando si ritira, la vostra UNI viene rivendicata e la vostra liquidità viene rimossa dal pool di estrazione." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Preleva" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Ritira E Rivendica" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Ritira liquidità depositata" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Ritiro {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 ritirato!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Avvolgi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Avvolgi da <0/> a {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Rete Errata" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Hai già una proposta attiva o in attesa" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Stai creando un pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Sei il primo fornitore di liquidità per questo pool di Uniswap V3. La tua liquidità migrerà al prezzo corrente di {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Sei il primo fornitore di liquidità." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Puoi votare personalmente su ogni proposta o delegare i tuoi voti a terzi." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Ora puoi scambiare {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Non hai abbastanza voti per inviare una proposta" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Non hai ancora liquidità in questo pool." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Potresti considerare di aspettare fino a quando le commissioni di rete scendono per completare questa transazione." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Devi collegare un account." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Devi dare il permesso agli smart contract Uniswap di utilizzare il tuo {0}. Devi farlo solo una volta per token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Devi avere {formattedProposalThreshold} voti per inviare una proposta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Dovresti depositare solo liquidità in Uniswap V3 ad un prezzo che credi sia corretto. <0/>Se il prezzo sembra errato, puoi fare uno swap per spostare il prezzo o aspettare che qualcun altro lo faccia." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Raccoglierai anche le commissioni guadagnate da questa posizione." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Riceverai" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "La tua liquidità V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Le tue posizioni di liquidità V3 attive appariranno qui." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "I tuoi depositi di liquidità" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "La tua quota del pool:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "La tua posizione" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "La tua posizione ha 0 liquidità e non sta guadagnando commissioni." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "La tua posizione apparirà qui." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "La tua posizione sarà composta al 100% da {0} a questo prezzo" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "La tua posizione sarà al 100% {0} a questo prezzo." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "La tua posizione non guadagnerà commissioni o sarà utilizzata nelle operazioni fino a quando il prezzo di mercato non si sposterà nella tua gamma." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Le tue posizioni" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Il tuo tasso" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "I tuoi token totali:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Il costo della transazione sarà molto più alto in quanto include il gas per creare il pool." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "La tua transazione potrebbe essere anticipata" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "La tua transazione potrebbe fallire" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "La tua transazione verrà ripristinata se è in attesa per più di questo periodo di tempo." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "La transazione verrà ripristinata se il prezzo cambia sfavorevolmente di più di questa percentuale." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Le tue transazioni appariranno qui..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "La tua UNI non richiesta" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "dopo lo slittamento" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "conferma" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "per {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "ha le emoji dei calzini" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "qui." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // o ipfs: // o nome ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuti" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "tramite {0} elenco token" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importa token} other {Importa token}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} gettoni personalizzati" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Depositato" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Commissioni Guadagnate:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} in attesa" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / settimana" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} token LP UNI-V2 disponibili" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Voti" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} token" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Prezzo:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Aggiunto dall'utente" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}commissione 0%" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% piscina" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% seleziona" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Estrazione di liquidità" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} Token LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} gettoni" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token bridge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Torna alla panoramica delle piscine" - diff --git a/src/locales/ja-JP.po b/src/locales/ja-JP.po deleted file mode 100644 index a3c178e59c..0000000000 --- a/src/locales/ja-JP.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: ja_JP\n" -"Language-Team: Japanese\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: ja\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(エクスプローラーで表示)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(すべてクリア)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(編集)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "-受信者を削除します" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / 週" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/>すべての提案" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/>投票" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>アカウント分析と発生した手数料<1>↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>現在の価格:<1><2/><3>{0} / {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>ヒント: 流動性トークンを削除すると、プールのシェアに比例して現在の価格で元のトークンに戻ります。発生した報酬は受け取るトークンに含まれます。" - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>ヒント:アクションを選択し、コミュニティへの提案を記載してください。提案は提出後に変更できませんので、提出する前にすべての情報を確認してください。投票期間はすぐに始まり、7日間続きます。カスタムアクションを提案する場合、<1>ドキュメントをお読みください。" - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>ヒント: このツールを使用して、画面に自動表示されないV2のプールを見つけます。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>ヒント: 流動性を追加すると、そのポジションを表す流動性トークンを受け取ります。 流動性トークンはプールのシェアに応じて自動的に報酬を獲得します。また、流動性トークンはいつでも償還できます。" - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "次の提案に備えるため <0>投票のロックを解除" - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 チーム ユニコーンにようこそ <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "提案を提出するには、UNIの総供給量の0.25%以上のUNIが必要です。" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "概要" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "同意する" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "アカウント" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "アクティブ" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "追加" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "<0/>と<1/>をユニスワップV2に追加" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "第三者に投票を委任する" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "流動性を追加" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "V2の流動性を追加" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "流動性を追加" - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "流動性を追加する" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "{0} をメタマスクに追加 <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "{0}-{1} の流動性を追加" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "{0}/{1} V3の流動性を追加" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0} を追加" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "請求可能なアドレスではありません" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "反対" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "LPトークンの移行を許可する" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "価格への大きな影響がある取引を許可し、確認画面をスキップします。自己責任でご利用ください。" - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "{0} の使用をUniswapに許可する" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "許可" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "数量" - -#: src/hooks/useSwapCallback.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." -msgstr "スワップ実行時にエラーが発生しました。スリッページの許容範囲を広げる必要がある可能性があります。それでも上手くいかない場合、取引しているトークンとの互換性がない可能性があります。注:転送時に手数料が発生するトークンおよびリベースするトークンは、UniswapV3と互換性がありません。" - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "承認" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "トークンを承認する" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "{0} を承認する" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "承認済み" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "承認中" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "{0} を承認中" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrumブリッジ" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrumはベータ版であり、ダウンタイムが発生する可能性があります。ダウンタイム中、あなたのポジションは手数料を獲得せず、流動性を取り除くことができなくなります。 <0>続きを読む。" - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "本当によろしいですか?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Uniswapコミュニティのメンバーとして、投票とガバナンスのためにUNIを使用できます。<0/><1/><2>UNIについてもっと見る" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "少なくとも {0} の {1} と {2} の {3} は設定した価格範囲のため、ウォレットに返金されます。" - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "自動" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "自動ルーターAPI" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "預け入れ可能: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "バランス: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "マイナーなペアに最適" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "ほとんどのペアに最適" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "安定的なペアに最適" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "非常に安定したペアに最適" - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "ベストプライスルートコスト〜{formattedGasPriceString} ガスインチ" - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "ブロックされたアドレス" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "ブリッジ" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "流動性を追加することで、このペアのすべての取引で発生する0.3%の手数料のうち、プールのシェアに応じた報酬を獲得します。報酬はリアルタイムにプールに追加され、反映されます。報酬は流動性を引き出すことで請求できます。" - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "ウォレットを接続することにより、あなたはUniswap Labsのに <0>サービス規約に同意し、あなたがUniswap<1>プロトコル免責事項を読み、理解していることに同意するものとします。" - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "キャンセル" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "変更" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "チャート" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "ネットワークの状態を確認" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "V3の流動性と移行ガイドをご覧ください。" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "請求" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "{0} の <0/> を請求する" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "UNIを請求" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "UNIトークンを請求する" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "{0} のUNI報酬を請求する" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "手数料を請求する" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "UNIトークンを請求する" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "請求済み" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "請求済みのUNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "請求済み" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "請求中" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "UNIを請求中" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "{0} UNIを請求中" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "すべてクリア" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "すべてクリア" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "閉じる" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "終了済" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "取得する" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "WETHで取得" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "報酬を取得" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "{0}/{1} の報酬を受け取る" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "取得済" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "取得中" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "報酬を取得中" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "報酬の取得は現在取得できる報酬を引き出します。" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "確認" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "供給を確認" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "スワップの確認" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "ウォレットで取引を確認する" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "ウォレットで取引を確認する" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "ウォレットに接続" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "ウォレットに接続" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "プールを見つけるにはウォレットに接続してください" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "ウォレットに接続してV2の流動性を確認します。" - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "ウォレットに接続して流動性を確認します。" - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "{name} と接続しました" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "コピーしました" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "アドレスをコピー" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "プール作成と流動性の追加" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "提案を作成" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "ペアを作成" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "プールを作成" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "GitHubでissueを作成する" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "プールを作成し、 {0}/{1} のV3流動性を追加" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "プールを作成" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "{0}/{1} V3プールを作成" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "現在価格" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "{0} の現在価格:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "ダークテーマ" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "否決" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "投票を委任する" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "{0} に投票権を委任する" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "委任先:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "投票を委任中" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "預け入れ" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "預け入れる数量" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "UNI-V2 LP トークンを預け入れる" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "流動性を預ける" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "{label} ネットワークにトークンをデポジットします。" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "流動性トークンを預けて、UniswapプロトコルのガバナンストークンであるUNIを受け取ります。" - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "預け入れ流動性:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "預け入れた {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "流動性を預け入れ中" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "説明" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "詳細" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "詳細" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "接続を解除" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "注文を取り下げる" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "資料" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "V2の流動性が表示されない場合、該当のトークンを<0>インポートしてください" - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "保有するUNIトークンは、Uniswapのガバナンスにおける投票権を表します。" - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "編集" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "効率性の比較" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "パーセントを入力してください" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "受取人を入力" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "有効なスリッページの値を入力してください" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "UNIの請求を行うためのアドレスを入力してください。そのアドレスに請求可能なUNIがあれば、請求時にそのアドレスに送信されます。" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "数量を入力してください" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "有効なリストの位置を入力ください" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "有効なトークンアドレスを入力してください" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "{0} 金額を入力してください" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "エラー" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "接続エラー" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "接続中にエラーが発生しました。ページを更新してください。" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "リストのインポートエラー" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "ウォレットガスの設定により、見積もりが異なる場合があります" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "推定ネットワーク料金" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "実行済" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "あなたが利用していないトークンリストからの検索結果" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "期待される出力" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "エキスパートモード" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "エキスパートモードは取引確認画面をスキップし、不利な価格や資金を失う可能性のある高スリッページ取引を許可します。" - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "期限切れ" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "UniswapAnalyticsをご覧ください。" - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "ユニスワップインターフェイスからのネットワークの切り替えに失敗しました。 {0}でユニスワップを使用するには、ウォレットのネットワークを変更する必要があります。" - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "設定手数料" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "手数料レベル" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "最高の価格を取得しています..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "賛成" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "以下の各流動性について「移行」ボタンをクリックすると、Uniswap V2から流動性を取り出し、Uniswap V3に移行します。" - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "売るトークン" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "(最大)売るトークン" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "全範囲" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "全範囲のポジションは、集中型ポジションよりも手数料報酬が少ない場合があります。詳細は<0>こちら 。" - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Discordでサポートを受ける" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "ヘルプセンター" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "非表示" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "決済したポジションを隠す" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "大きな価格への影響" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "このアプリがAPIを使用する方法" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "理解しました" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "このリストからトークンを購入すると、トークンを売却できなくなる可能性があります。" - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "インポート" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "リストをインポート" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "プールをインポート" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "V2プールのインポート" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "自己の責任でインポート" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "範囲内" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "流動性を上げる" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "初期価格とプールシェア" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "初期化中..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "上記は概算です。最大で<0>{0} {1}を売れなければ、取引は差し戻されます。" - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "メタマスクのインストール" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "流動性が不足しているため、取引できません。" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "{0} の残高が足りません" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "インターフェイスの設定" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "無効なペア" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "無効なペアです。" - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "無効な価格入力" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "設定した価格範囲が間違っています。最小価格は最大価格より低くしてください。" - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "受け取りアドレスが無効です" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "言語" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "資料" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "流動性の提供について学ぶ" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "より詳しく" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "法律とプライバシー" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "ライトテーマ" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "流動性" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "流動性データはありません。" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "流動性提供者の報酬" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "流動性提供者はこのペアのすべての取引で発生する0.3%の手数料のうち、プールのシェアに応じた報酬を獲得します。 報酬はリアルタイムにプールに追加され、反映されます。報酬は流動性を引き出すことで請求できます。" - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "リスト" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "読み込まれました" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "読み込み中" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "管理" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "報酬プールで流動性を管理" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "トークンリストを管理" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "プールを管理" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "最大" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "最大価格" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "最大価格" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "最大:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "最大売却数" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "メニュー" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "移行" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "流動性をV3に移行" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "V2の流動性を移行" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Uniswap V2からUniswap V3に流動性トークンを移行します。" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "{0}/{1} の流動性をV3へ移行" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "移行中" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "最小価格" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "最小価格" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "最小:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "最小購入数" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "依存関係がありません" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "もっと見る" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "ネットワーク料金" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "ネットワーク警告" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "ネットワーク料金がスワップ金額の50%を超えています!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "新しいポジション" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "V2の流動性が見つかりません。" - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "アクティブなプールがありません" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "データがありません" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "説明はありません。" - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "流動性が見つかりません。" - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "プールが見つかりません。" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "提案が見つかりません。" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "結果が見つかりませんでした。" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "未作成" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "このモードは、あなたが何をしているかを理解している場合にのみご使用ください。" - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "OFF" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "ON" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "価格に問題がなければ、「追加」をクリックして確認します。" - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "ブロック{0} 以前に自己委任、または他のアドレスに委任されたUNIのみが投票の対象となります。" - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimismゲートウェイ" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "楽観主義はベータ版であり、ダウンタイムが発生する可能性があります。 Optimismは、近い将来、ネットワークをアップグレードするために計画されたダウンタイムを予想しています。ダウンタイム中、あなたのポジションは手数料を獲得せず、流動性を取り除くことができなくなります。 <0>続きを読む。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistic Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "範囲外" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "取引結果は概算です。価格が {0}%以上変化した場合、取引は差し戻される見込みです。" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "取引結果は概算です。<0>{0} {1} 以上を買えない場合は、取引は差し戻されます。" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "結果は <0>{0} に送信されます" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "所有者" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "参加中のプール" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "保留中" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "REMOVEと入力して、このリストを削除することを確認してください" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "イーサリアムのレイヤー1に接続してください" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "適切なイーサリアムネットワークに接続してください。" - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "エキスパートモードを有効にするには、単語\"{confirmWord}\"を入力してください。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "ポリゴンブリッジ" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "ポリゴンスキャン" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "プール" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "プールが見つかりました!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "プールレート" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "プールレート" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "報酬プール内のプールトークン:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "プールしている {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "プールの概要" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "プレビュー" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "価格" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "価格差:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "価格への影響" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "価格の影響が大きすぎます" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "価格が更新されています" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "価格範囲" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "価格:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "価格とプールシェア" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "提案" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "提出された提案" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "提案のタイトル" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "提案" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "コミュニティメンバーが提出した提案はここに表示されます。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "提案するアクション" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "提案者" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "プロトコルの免責事項" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "処理待ち" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "レート" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "UNIについてもっと見る" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Uniswapガバナンスについてもっと見る" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "流動性提供についてもっと見る" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "サポートされていないアセットの詳細を見る" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "最近の取引" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "受取人" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "削除" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "<0/>と<1/>を削除" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "削除する数量" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "委任を削除" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "流動性を削除" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "リストを削除" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "{0} {1} と {2} {3} を解除中" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "{0} {1} と {2} {3} を削除" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "機能のリクエスト" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "戻る" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "トークン名またはアドレス" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "ペアを選択" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "ネットワークを選択" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "トークン選択" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "トークンを選択して、V2の流動性を見つけます。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "アクションの選択" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "設定した価格範囲" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "自分" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "自己委任する" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "価格範囲を設定" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "開始価格を設定" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "プールのシェア" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "プールのシェア:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Portisを表示" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "決済したポジションを表示" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "シンプル" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "スリッページの許容範囲" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "一部のトークンは、スマートコントラクトでうまく動作しないか、法的な理由で取引を許可できないため、このインターフェイスでは利用できません。" - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "何らかの問題が発生しました" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "ステップ1. UNI-V2流動性トークンを入手" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "新しい提案を出す" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "提案を提出中" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "投票を送信中" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "成功" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "成功" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "追加" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "{0} {1} と {2} {3} を追加中" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "スワップ" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "<0/> を <1/>にスワップ" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "問題発生の可能性があるが、スワップする" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "<0/>を<1/>にスワップ" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "スワップに失敗しました: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "{0} {1} を {2} {3} にスワップ中" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Uniswapコミュニティにご参加いただきありがとうございます <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "設定する手数料率" - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap不変式 x * y = kはスワップで満たされませんでした。これは通常、スワップするトークンの1つが転送時のカスタム動作を組み込んでいることを意味します。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "アプリは、グラフのホストされたサービスからブロックチェーンデータをフェッチします。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "アプリはオンチェーンデータをフェッチし、InfuraAPIを使用してコントラクト呼び出しを構築します。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "アプリは、UniswapLabsサーバーから最適な取引ルートを取得します。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "アプリは、時間の経過とともに改善するために、匿名化された使用統計をログに記録します。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "アプリはウォレットアドレスを安全に収集し、リスクとコンプライアンスの理由からTRM LabsInc。と共有します。" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "このトランザクションを送信するコストは、入力金額の値の半分以上です。" - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "L1でトランザクションを送信するための現在の高速ガス量。ガス料金はイーサリアムの自国通貨イーサリアム(ETH)で支払われ、GWEI建てです。" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "入力金額と出力金額のUSD値の推定差。" - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "売るトークンが転送できません。売るトークンに問題がある可能性があります。" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "市場価格が設定した価格範囲から外れています。単一トークンのみ預け入れできます。" - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "このネットワークの最新のブロック番号。価格はブロックごとに更新されます。" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "購入するトークンを転送できません。購入するトークンに問題がある可能性があります。" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "購入するトークンを転送できません。購入するトークンに問題がある可能性があります。注:転送時に手数料が発生するトークンおよびリベースするトークンは、UniswapV3と互換性がありません。" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "現在の価格は設定した価格範囲から外れています。そのため、現時点であなたのポジションは報酬を獲得しません。" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "現在の価格は設定した価格範囲に入っています。そのため、あなたの流動性は現在、報酬を獲得しています。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "追加するトークンの比率によって、プールの価格が決まります。" - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "期限が過ぎたため、取引を送信できませんでした。期限が短すぎないかご確認ください。" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "流動性データはありません。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "このアプリは、次のサードパーティAPIを使用します。" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "流動性を追加する前に、このプールを初期化する必要があります。初期化するには、プールの開始価格を選択します。次に、流動性の価格帯と預け入れ数量を入力します。初期化取引のため、ガス料金は通常より高くなります。" - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "このルートは、分割ルート、複数のホップ、および各ステップのガスコストを考慮して、総出力を最適化します。" - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "このトークンは、UniswapLabsアプリではサポートされていません" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "本ツールで {0} の流動性をV3に安全に移行します。このプロセスは以下によって特定の第三者を信用する必要が一切ないものになっています。" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "価格変動により、この取引は成功しません。スリッページの許容範囲を広げてみてください。注:転送時に手数料が発生するトークンおよびリベーストークンは、UniswapV3と互換性がありません。" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "この取引は、価格変動または転送時に手数料が発生するため、成功しません。スリッページの許容範囲を広げてみてください。" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "ヒント:カスタムトークンの設定はブラウザ内のローカルに保存されます" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "買うトークン" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "買うトークン(少なくとも)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "トークンはサポートされていません" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "トークン" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "合計預入数量" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "合計預入額" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "取引ルート" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "取引設定" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "取引が送信されました" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "で完了した取引" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "取引期限" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "取引が拒否されました" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "トークンを転送する" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "もう一度試す" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "エキスパートモードをオンにする" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNIの登場" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNIトークンはUniswapガバナンスにおける投票権を表します。各提案に対して自分で投票するか、もしくは第三者に投票を委任することができます。" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "削除される UNI {0}/{1}" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP トークンが必要です。 {0}-{1} プールに流動性を追加したら、このページに流動性トークンをステークできます。" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "未請求のUNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "未請求の報酬" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "未定" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "予期しないエラー。スワップのガスを見積もることができませんでした。" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "ガスの見積もりに関する予期しない問題。もう一度やり直してください。" - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswapのガバナンス" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "UniswapLabsの利用規約" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "利用可能言語: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswapのガバナンスは、レイヤー1でのみ使用できます。提案と投票を表示するために、ネットワークをEthereumメインネットに切り替えて下さい。" - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap流動性マイニング" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap移行コントラクト↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "不明なソース" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "不明なエラー{0}。スリッページの許容範囲を広げてみてください。注:転送時に手数料が発生するトークンおよびリベーストークンは、UniswapV3と互換性がありません。" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "投票のロックを解除" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "投票のロックを解除" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "投票のロックを解除中" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "サポートされていないトークン" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "サポートされていないアセット" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "タイトル未設定" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "アンラップ" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "<0/> から {0}アンラップします" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "委任を更新" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "リストを更新" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Uniswap Labs APIを使用して、より迅速な見積もりを取得します。" - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "ユーザー" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2はレイヤー2では使用できません。イーサリアムのレイヤー1に切り替えてください。" - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2の流動性" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3での {0} 価格:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "発生した報酬と分析を見る<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "リストを表示" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Etherscanで見る" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "エクスプローラーで見る" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "エクスプローラーで取引を表示する" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "投票" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "反対に投票" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "賛成に投票" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "提案 {proposalId} に反対票を入れる" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "提案 {proposalKey} に反対票を入れる" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "「{0} 」という理由で提案 {proposalKey} に反対票を投じる" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "提案 {proposalId} に賛成票を入れる" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "提案{proposalKey} に賛成票を入れる" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "「{0} 」という理由で提案 {proposalKey} に賛成票を入れる" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "提案{proposalId} を棄権する" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "提案{proposalKey} を棄権する" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "「{0} 」という理由で提案 {proposalKey} で棄権する" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "{0} に投票は終了しました" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "投票は {0} 頃に終了します" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "投票は約 {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "確認待ち" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "ウォレットアドレスまたはENS名" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "週次の報酬" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "チーム ユニコーンへようこそ" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "流動性を引き出すことなく、請求すると、流動性はマイニングプールに残ります。" - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "引き出すと、コントラクトはあなたに代わって自動的にUNIを請求します。" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "引き出すと、UNIが請求され、流動性はマイニングプールから削除されます。" - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "引き出す" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "引き出しと請求" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "預け入れた流動性を引き出す" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "{0} UNI-V2を引き出し中" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2を引き出しました" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "ラップ" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "<0/> から {0}ラップ" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "ネットワークが間違っています" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "すでにアクティブまたは保留中の提案があります" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "プールを作成しています" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "あなたはUniswap V3プールの最初の流動性提供者です。流動性は現在の {0} での価格で移行されます。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "あなたは最初の流動性プロバイダーです。" - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "各提案に対して自分で投票するか、または第三者に投票を委任することができます。" - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "{0}を取引できるようになりました" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "提案を提出するのに十分な票がありません" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "ネットワーク接続が失われた可能性があります。" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "このトランザクションを完了するには、ネットワーク料金が下がるまで待つことを検討してください。" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "アカウントに接続してください。" - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "{0}を使用するには、Uniswapスマートコントラクトに許可を与える必要があります。トークンごとに1回だけ行う必要があります。" - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "提案を提出するには、{formattedProposalThreshold}票が必要です" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Uniswap V3への流動性の預け入れは、正しいと思われる価格でのみ行ってください。<0/>もし価格が正しくないと思われる場合は、スワップをして価格を動かすか、他の人が同様のことをするのを待つことができます。" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "また、このポジションから得られた報酬も受け取ります。" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "受け取る数量" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "V2の流動性" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "アクティブなV3流動性ポジションがここに表示されます。" - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "預け入れた流動性" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "プールシェア:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "ポジション" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "あなたのポジションには流動性がないため、報酬を得られません。" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "あなたのポジションがここに表示されます。" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "あなたのポジションはこの価格の{0} で100%構成されます。" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "この価格であなたのポジションは100%の {0} になります。" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "市場価格が設定した価格範囲に入るまで、あなたのポジションは報酬を得られず、取引にも使われません。" - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "ポジション" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "あなたの価格" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "流動性トークン合計:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "プールを作成するガス代が含まれるため、取引コストははるかに高くなります。" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "あなたの取引はフロントランニングかもしれません" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "取引が失敗する可能性があります" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "取引がこの期間を超えても保留されている場合、取引は差し戻されます。" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "価格が設定したパーセンテージよりも不利な価格に変動した場合、取引は差し戻されます。" - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "取引履歴がここに表示されます..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "未請求のUNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "すべり後" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "確認する" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "賛成 {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "靴下の絵文字があります" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "ここ。" - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https://、ipfs://またはENS名" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "分" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "{0} から" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "{0} トークンリストから" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {トークンをインポート} other {トークンをインポート}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> / <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} カスタムトークン" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "預け入れる {0}" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} の獲得した報酬:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} 保留中" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / 週" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LPトークンが利用可能" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} の投票" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} / {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} トークン" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} 価格:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • ユーザーにより追加" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}%の手数料レベル" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}%プール" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}%が選択" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} の流動性マイニング" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LPトークン" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} トークン" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} トークンブリッジ" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} / {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "プール概要に戻る" - diff --git a/src/locales/ko-KR.po b/src/locales/ko-KR.po deleted file mode 100644 index 023f0b5b77..0000000000 --- a/src/locales/ko-KR.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: ko_KR\n" -"Language-Team: Korean\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: ko\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(탐색기에서보기)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(모두 지우기)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(편집)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- 받는 사람 제거" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / 주" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> 모든 제안" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> 투표" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0> 계정 분석 및 발생 수수료 <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> 현재 가격 : <1> <2 /> <3>{0} 당 {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> 팁 : 풀 토큰을 제거하면 풀 쉐어에 비례하여 현재 요율로 포지션을 기본 토큰으로 다시 전환합니다. 미지급 수수료는 귀하가 받는 금액에 포함됩니다." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> 팁 : 조치를 선택하고 커뮤니티에 대한 제안을 설명하십시오. 제안서는 제출 후 수정할 수 없으므로 제출하기 전에 모든 정보를 확인하십시오. 투표 기간은 즉시 시작되어 7 일 동안 지속됩니다. 사용자 지정 작업을 제안하려면 <1> 문서 읽기 ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> 팁 : 이 도구를 사용하여 인터페이스에 자동으로 표시되지 않는 v2 풀을 찾습니다." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> 팁 : 유동성을 추가하면 귀하의 포지션을 나타내는 풀 토큰을 받게됩니다. 이 토큰은 풀의 쉐어에 비례하여 자동으로 수수료를 획득하며 언제든지 사용할 수 있습니다." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0> 투표 잠금 해제 다음 제안을 준비합니다." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 Unicorn 팀에 오신 것을 환영합니다. :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "제안서를 제출하려면 총 UNI 공급량의 최소 0.25 %가 필요합니다." - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "정보" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "수락" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "계정" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "활성" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "추가" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Uniswap V2에 <0/> 및 <1/> 추가" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "대리인 추가 +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "유동성 추가" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "V2 유동성 추가" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "유동성 추가" - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "더 많은 유동성 추가" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "{0}을(를) Metamask에 추가<0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "{0}-{1} 유동성 추가" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "{0}/{1} V3 유동성 추가" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0} 추가됨" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "주소에 사용 가능한 청구가 없습니다." - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "반대" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "LP 토큰 마이그레이션 허용" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "높은 가격 영향 거래를 허용하고 확인 화면을 건너 뜁니다. 자신의 책임하에 사용하십시오." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Uniswap 프로토콜이 귀하의 {0}을(를) 사용하도록 허용" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "허용됨" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "금액" - -#: src/hooks/useSwapCallback.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." -msgstr "이 스왑을 실행하는 중에 오류가 발생했습니다. 미끄러짐 허용치를 높여야 할 수도 있습니다. 그래도 작동하지 않으면 거래중인 토큰과 호환되지 않을 수 있습니다. 참고 : 전송 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "승인" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "토큰 승인" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "{0} 승인" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "승인됨" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "승인 중" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "{0} 승인 중" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "아르비스칸" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "아비트룸 브리지" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum은 베타 버전이며 다운타임이 발생할 수 있습니다. 다운타임 동안 귀하의 포지션은 수수료를 받지 못하며 유동성을 제거할 수 없습니다. <0>더 읽어보세요." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "확실합니까?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Uniswap 커뮤니티의 회원으로서 UNI가 투표 및 거버넌스에 사용되도록 청구할 수 있습니다. <0/> <1/> <2> UN에 대해 자세히 알아보기" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "선택한 가격 범위로 인해 최소 {0} {1} 및 {2} {3} 이 지갑으로 환불됩니다." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "자동" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "자동 라우터 API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "입금 가능 : {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "균형: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "이국적인 쌍에 가장 적합합니다." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "대부분의 쌍에 가장 적합합니다." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "안정적인 쌍에 가장 적합합니다." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "매우 안정적인 쌍에 가장 적합합니다." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "최고의 가격 경로 비용은 ~{formattedGasPriceString} 가스입니다." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "차단된 주소" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "다리" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "유동성을 추가하면 풀 쉐어에 비례하여이 쌍에 대한 모든 거래의 0.3%를 벌 수 있습니다. 수수료는 풀에 추가되고 실시간으로 발생하며 유동성을 인출하여 청구할 수 있습니다." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "지갑을 연결하면 Uniswap Labs의 <0>서비스 약관 <1>프로토콜 면책 조항읽고 이해했음을 인정합니다." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "취소 된" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "변경" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "차트" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "네트워크 상태 확인" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "v3 LP 연습 및 마이그레이션 가이드를 확인하세요." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "청구" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "제 <0 />에 대한 {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "UNI 청구" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "UNI 토큰 청구" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "{0}대한 UNI 보상 받기" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "청구 수수료" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "UNI 토큰 청구" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "청구됨" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "청구된 UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "주장!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "청구 중" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "UNI 청구" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "{0} UNI 청구 중" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "모두 지우기" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "모두 지우기" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "닫기" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "닫힘" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "수집" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "WETH로 수집" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "수수료 징수" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "{0}/{1} 수수료를 수집" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "수집됨" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "수집 중" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "수수료 징수" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "수수료를 징수하면 현재 사용 가능한 수수료가 인출됩니다." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "확인" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "공급 확인" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "스왑 확인" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "지갑에서 이 거래를 확인하세요" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "지갑에서 거래 확인" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "지갑 연결" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "지갑 연결" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "지갑에 연결하여 풀 찾기" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "V2 유동성을 보려면 지갑에 연결하십시오." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "유동성을 보려면 지갑에 연결하십시오." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "{name}와(과) 연결됨" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "복사 됨" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "주소 복사" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "풀 생성 및 공급" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "제안 생성" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "쌍 만들기" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "풀 만들기" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "GitHub에서 문제 만들기" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "풀 만들기 및 {0}/{1} V3 유동성 추가" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "풀을 만듭니다." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "작성 {0}/{1} V3 풀을" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "현재 가격" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "현재 {0} 가격 :" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "어두운 테마" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "패배" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "위임 투표" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "투표권을 {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "위임 대상 :" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "투표 위임" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "예치" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "입금액" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "UNI-V2 LP 토큰 예치" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "예금 유동성" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "{label} 네트워크에 토큰을 예치합니다." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "유동성 제공자 토큰을 예치하여 Uniswap 프로토콜 거버넌스 토큰인 UNI를 받으십시오." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "예금 유동성 :" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "{0} UNI-V2 입금" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "유동성 입금" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "설명" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "자세히" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "세부 정보" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "연결 해제" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "해제" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "문서" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "v2 포지션 중 하나가 보이지 않습니까? <0>가져 오십시오." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "획득한 UNI 토큰은 Uniswap 거버넌스의 의결권을 나타냅니다." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "편집하다" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "효율성 비교" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "퍼센트를 입력하세요." - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "수령인을 입력하세요." - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "유효한 슬리피지 요율을 입력하세요." - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "UNI 청구를 트리거할 주소를 입력하십시오. 주소에 청구 가능한 UNI가 있으면 제출시 이체됩니다." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "금액을 입력하세요." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "유효한 목록 위치를 입력하세요." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "유효한 토큰 주소를 입력하세요." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "{0} 금액을 입력하세요" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "오류" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "연결 오류" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "연결 오류. 페이지를 새로 고침 해보세요." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "목록을 가져 오는 중에 오류가 발생했습니다." - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "지갑 가스 설정에 따라 견적이 다를 수 있습니다." - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "예상 네트워크 요금" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "이더스캔" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "실행" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "비활성 토큰 목록에서 확장된 결과" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "예상 출력" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "전문가 모드" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "전문가 모드를 사용하면 거래 확인창이 꺼지고 안 좋은 요율과 자금 손실을 초래하는 높은 슬리피지 거래를 허용할 수 있습니다." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "만료 됨" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Uniswap 분석을 살펴보십시오." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Uniswap 인터페이스에서 네트워크를 전환하지 못했습니다. {0}에서 Uniswap을 사용하려면 지갑에서 네트워크를 변경해야 합니다." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "수수료 등급" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "수수료 등급" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "최저가를 가져오는 중..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "찬성" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "아래 표시된 각 풀에 대해 마이그레이션을 클릭하여 Uniswap V2에서 유동성을 제거하고 Uniswap V3에 입금하십시오." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "스왑 전" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "스왑 전(최대)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "전체 범위" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "전체 범위 포지션은 집중 포지션보다 적은 수수료를 받을 수 있습니다. 여기에서 <0>자세히 알아보기 ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Discord에서 지원 받기" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "지원 센터" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "숨는 장소" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "마감된 포지션 숨기기" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "높은 가격 영향" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "이 앱이 API를 사용하는 방법" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "알겠습니다" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "이 목록에서 토큰을 구매하면, 다시 판매하지 못할 수 있습니다." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "수입" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "목록 가져오기" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "풀 가져 오기" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "V2 풀 가져 오기" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "자신의 책임하에 가져오기" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "범위 내" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "유동성 증가" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "초기 가격 및 풀 쉐어" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "초기화 중 ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "입력이 추정됩니다. 최대 <0>{0} {1}을(를) 팔거나 그렇지 않으면 거래가 취소됩니다." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "메타 마스크 설치" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "이 거래에 대한 유동성이 충분하지 않습니다." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "부족한 {0} 잔액" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "인터페이스 설정" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "잘못된 쌍" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "잘못된 쌍" - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "잘못된 가격 입력" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "잘못된 범위를 선택했습니다. 최소 가격은 최대 가격보다 낮아야합니다." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "잘못된 수령인" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "언어" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "학습" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "유동성 제공에 대해 알아보기" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "더 알아보기" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "법률 및 개인 정보 보호" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "밝은 테마" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "유동성" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "유동성 데이터를 사용할 수 없습니다." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "유동성 제공자 보상" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "유동성 제공자는 풀 점유율에 비례하여 모든 거래에 대해 0.3%의 수수료를받습니다. 수수료는 풀에 추가되고 실시간으로 발생하며 유동성을 인출하여 청구할 수 있습니다." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "목록" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "로딩 됨" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "로딩 중" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "최대" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "관리" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "보상 풀에서 유동성 관리" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "토큰 목록 관리" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "이 풀을 관리합니다." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "최대" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "최고 가격" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "최고 가격" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "최대 :" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "최대 이체" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "메뉴" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "마이그레이션" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "유동성을 V3로 마이그레이션" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "V2 유동성 마이그레이션" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "유동성 토큰을 Uniswap V2에서 Uniswap V3로 마이그레이션하십시오." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "마이그레이션 {0}/{1} V3 유동성" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "마이그레이션 중" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "최소 가격" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "최저 가격" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "최소 :" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "최소 수령됨" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "누락된 종속성" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "추가" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "네트워크 요금" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "네트워크 경고" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "네트워크 수수료가 스왑 금액의 50%를 초과합니다!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "새로운 위치" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "V2 유동성이 없습니다." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "활성 풀 없음" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "데이터 없음" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "설명이 없습니다." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "유동성이 없습니다." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "풀이 없습니다." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "제안이 없습니다." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "결과가 없습니다." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "생성되지 않음" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "수행중인 작업을 알고 있는 경우에만 이 모드를 사용하십시오." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Off" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "On" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "요율에 만족하면 공급을 클릭하여 검토하십시오." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "{0} 차단 이전에 자체 위임되었거나 다른 주소로 위임 된 UNI 투표만 투표할 수 있습니다." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "죄송합니다! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "낙관 게이트웨이" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "낙관론은 베타 버전이며 가동 중지 시간이 발생할 수 있습니다. 낙관론자는 가까운 장래에 네트워크를 업그레이드하기 위해 계획된 다운타임을 예상합니다. 다운타임 동안 귀하의 포지션은 수수료를 받지 못하며 유동성을 제거할 수 없습니다. <0>더 읽어보세요." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "낙관적 Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "범위를 벗어남" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "산출은 추정됩니다. 가격이 {0}% 이상 변경되면 거래가 취소됩니다." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "산출은 추정됩니다. 최소한 <0>{0} {1}을(를) 받거나 그렇지 않으면 거래가 취소됩니다." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "산출은 <0>{0}(으)로 이체됩니다" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "소유자" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "참여 풀" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "보류 중" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "REMOVE를 입력하여 이 목록을 제거할 것인지 확인하십시오." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "레이어 1 이더 리움에 연결하세요" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "적절한 이더리움 네트워크에 연결하십시오." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "전문가 모드를 사용하려면{confirmWord}\"이라는 단어를 입력하십시오." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "폴리곤 브리지" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "다각형 스캔" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "풀" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "풀을 찾았습니다!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "풀 요율" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "풀 요율" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "보상 풀의 풀 토큰 :" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "{0} 풀링 됨:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "풀 개요" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "시사" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "가격" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "가격 차이:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "가격 영향" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "가격 영향이 너무 높음" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "가격 업데이트됨" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "가격 범위" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "가격:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "가격 및 풀 쉐어" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "신청" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "제출 된 제안" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "제안 제목" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "제안" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "커뮤니티 멤버가 제출한 제안이 여기에 표시됩니다." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "제안 된 조치" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "제안자" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "프로토콜 면책 조항" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "대기 중" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "요율" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "UNI에 대해 자세히 알아보기" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Uniswap 거버넌스에 대해 자세히 알아보기" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "유동성 제공에 대해 자세히 알아보기" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "지원되지 않는 자산에 대해 자세히 알아보기" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "최근 거래" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "받는 사람" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "제거" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "<0/> 및 <1/> 제거" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "금액 제거" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "위임 제거하기" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "유동성 제거" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "목록 제거" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "{0} {1} 및 {2} {3} 제거 중" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "{0} {1} 및{2} {3}제거" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "기능 요청" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "반환" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "이름 검색 또는 주소 붙여 넣기" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "쌍 선택" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "네트워크 선택" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "토큰 선택" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "v2 유동성을 찾으려면 토큰을 선택하십시오." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "작업 선택" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "선택한 범위" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "본인" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "셀프 위임" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "가격 범위 설정" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "시작 가격 설정" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "풀 쉐어" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "풀 쉐어:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Portis 표시" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "마감된 위치 표시" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "단순한" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "슬리피지 허용 오차" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "일부 자산은 스마트 계약과 잘 작동하지 않거나 법적 이유로 거래를 허용할 수 없기 때문에 이 인터페이스를 통해 사용할 수 없습니다." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "문제가 발생했습니다" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "1 단계. UNI-V2 유동성 토큰 받기" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "새 제안 제출" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "제안 제출" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "투표 제출" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "성공" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "성공" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "공급" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "{0} {1} 및 {2} {3} 공급 중" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "스왑" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "<0/>을 정확히 <1/>로 바꿉니다." - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "어쨌든 스왑" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "<1/>에 대해 정확히 <0/> 스왑" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "스왑 실패: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "{0} {1} 을 {2} {3}(으)로 스왑" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Uniswap 커뮤니티에 참여해 주셔서 감사합니다. <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "수수료로받을 수있는 %입니다." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap 불변 x * y = k가 스왑에 의해 충족되지 않았습니다. 이는 일반적으로 스와핑하는 토큰 중 하나가 이체시 사용자 지정 동작을 통합함을 의미합니다." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "앱은 Graph의 호스팅 서비스에서 블록체인 데이터를 가져옵니다." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "앱은 온체인 데이터를 가져오고 Infura API를 사용하여 계약 호출을 구성합니다." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "앱은 Uniswap Labs 서버에서 최적의 무역 경로를 가져옵니다." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "앱은 시간이 지남에 따라 개선하기 위해 익명화된 사용 통계를 기록합니다." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "앱은 위험 및 규정 준수를 위해 지갑 주소를 안전하게 수집하고 TRM Labs Inc.와 공유합니다." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "이 거래를 보내는 비용은 입력 금액의 절반 이상입니다." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "L1에서 트랜잭션을 보내기 위한 현재 빠른 가스 양입니다. 가스 요금은 Ethereum의 기본 통화인 Ether(ETH)로 지불되며 GWEI로 표시됩니다." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "입력 금액과 출력 금액의 USD 값 간의 예상 차이입니다." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "입력 토큰을 이체할 수 없습니다. 입력 토큰에 문제가 있을 수 있습니다." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "시장 가격이 지정된 가격 범위를 벗어났습니다. 단일 자산 예금만." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "이 네트워크의 가장 최근 블록 번호입니다. 가격은 모든 블록에서 업데이트됩니다." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "산출 토큰을 이체할 수 없습니다. 산출 토큰에 문제가 있을 수 있습니다." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "산출 토큰을 이체할 수 없습니다. 산출 토큰에 문제가 있을 수 있습니다. 참고: 이체 수수료 및 리베이스 토큰이 Uniswap V3와 호환되지 않습니다." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "이 풀의 가격이 선택한 범위를 벗어났습니다. 귀하의 포지션은 현재 수수료를 벌고 있지 않습니다." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "이 풀의 가격은 선택한 범위 내에 있습니다. 귀하의 포지션은 현재 수수료를 받고 있습니다." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "추가하는 토큰의 요율이 이 풀의 가격을 설정합니다." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "기한이 지났기 때문에 거래를 보낼 수 없습니다. 거래 기한이 너무 낮지 않은지 확인하십시오." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "유동성 데이터가 없습니다." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "이 앱은 다음 타사 API를 사용합니다." - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "유동성을 추가하려면 이 풀을 초기화해야 합니다. 초기화하려면 풀의 시작 가격을 선택하십시오. 그런 다음 유동성 가격 범위와 예금 금액을 입력하십시오. 초기화 트랜잭션으로 인해 가스 요금이 평소보다 높아집니다." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "이 경로는 분할 경로, 다중 홉 및 각 단계의 가스 비용을 고려하여 총 출력을 최적화합니다." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "이 토큰은 Uniswap Labs 앱에서 지원되지 않습니다." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "이 도구로 {0} 유동성을 V3로 안전하게 마이그레이션할 수 있습니다. 이 과정은 다음 덕분에 신뢰할 수 있습니다." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "이 거래는 가격 변동으로 인해 성공하지 못합니다. 슬리피지 허용치를 높이십시오. 참고: 이체 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "이 거래는 가격 변동이나 이체 수수료로 인해 성공하지 못합니다. 슬리피지 허용치를 높이십시오." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "팁 : 사용자 지정 토큰은 브라우저에 로컬로 저장됩니다." - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "스왑 후" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "스왑 후(최소)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "지원되지 않는 토큰" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "토큰" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "총 입금" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "총 입금" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "무역로" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "거래 설정" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "제출된 거래" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "거래 완료" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "거래 마감 시간" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "거래가 거부되었습니다." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "이전 토큰" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "다시 시도하십시오" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "전문가 모드 켜기" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI가 도착했습니다" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI 토큰은 Uniswap 거버넌스의 의결권을 나타냅니다. 각 제안에 대해 직접 투표하거나 제3자에게 투표를 위임할 수 있습니다." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} 버닝" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP 토큰이 필요합니다. 유동성을 {0}-{1}풀에 추가하면 이 페이지에 귀하의 유동성 토큰을 스테이크할 수 있습니다." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "미 청구 UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "미 청구 수수료" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "분명치 않은" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "예기치 않은 오류. 스왑을 위한 가스를 추정할 수 없습니다." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "가스 추정에 예상치 못한 문제가 있습니다. 다시 시도해 주세요." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap 거버넌스" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs 서비스 약관" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap 사용 가능 : <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap 거버넌스는 레이어 1에서만 사용할 수 있습니다. 제안 및 투표를 보려면 네트워크를 이더 리움 메인 넷으로 전환하십시오." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap 유동성 채굴" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap 마이그레이션 계약 ↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "알 수 없는 출처" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "알 수 없는 오류 {0}. 슬리피지 허용치를 높이십시오. 참고: 이체 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "투표 잠금 해제" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "투표 잠금 해제" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "투표 잠금 해제" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "지원되지 않는 자산" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "지원되지 않는 자산" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "제목 없음" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "언랩" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "<0/> 에서 {0}풀기" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "위임 업데이트" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "목록 업데이트" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Uniswap Labs API를 사용하여 더 빠른 견적을 받으세요." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "사용자" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2는 레이어 2에서 사용할 수 없습니다. 레이어 1 이더 리움으로 전환합니다." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 유동성" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} 가격 :" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "발생한 수수료 및 분석 보기 <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "목록 보기" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Etherscan에서보기" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Explorer에서 보기" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Explorer에서 거래 보기" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "투표" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "반대 투표" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "찬성 투표" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "{proposalId} 제안에 반대 투표" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "{proposalKey}에 반대 투표" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "이유가 \"{0}\"인 {proposalKey} 에 반대 투표" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "{proposalId} 제안에 투표" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "제안 {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "이유가 \"{0}\"인 {proposalKey} 투표하십시오." - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "{proposalId}에 대한 기권 투표" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "{proposalKey}에 대한 기권 투표" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "이유가 \"{0}\"인 {proposalKey} 에 대해 기권 투표" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "투표 종료 {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "투표는 대략 {0}에 끝납니다" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "투표 시작 약 {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "확인을 기다리는 중" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "지갑 주소 또는 ENS 이름" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "주간 보상" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Team Unicorn에 오신 것을 환영합니다. :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "유동성을 인출하지 않고 청구하면 유동성이 채굴 풀에 남아 있습니다." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "인출하면 계약이 자동으로 귀하를 대신하여 UNI를 청구합니다!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "인출하면 UNI가 청구되고 유동성이 채굴 풀에서 제거됩니다." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "인출" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "인출 및 청구" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "예치된 유동성 인출" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "{0} UNI-V2 인출" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 인출!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "랩" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "<0/> 에서 {0}바꿈" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "잘못된 네트워크" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "이미 활성 또는 보류중인 제안이 있습니다." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "풀을 만들고 있습니다." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "귀하는 이 Uniswap V3 풀의 최초 유동성 제공자입니다. 유동성은 현재 {0} 가격으로 마이그레이션됩니다." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "귀하는 최초의 유동성 제공자입니다." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "각 제안에 대해 직접 투표하거나 제3자에게 투표를 위임할 수 있습니다." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "{0}을(를) 거래할 수 있습니다." - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "제안서를 제출할 수있는 표가 충분하지 않습니다." - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "네트워크 연결이 끊어졌을 수 있습니다." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "이 거래를 완료하기 위해 네트워크 수수료가 내려갈 때까지 기다리는 것을 고려할 수 있습니다." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "계정을 연결해야합니다." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "{0}을 사용하려면 Uniswap 스마트 계약에 권한을 부여해야합니다. 토큰 당 한 번만 이 작업을 수행하면 됩니다." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "제안서를 제출 {formattedProposalThreshold} 표가 있어야합니다." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "유동성을 Uniswap V3에 정확하다고 생각하는 가격으로 예치해야합니다. <0/> 가격이 잘못된 것 같으면 교환하여 가격을 이동하거나 다른 사람이 이동하기를 기다릴 수 있습니다." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "이 포지션에서 얻은 수수료도 징수합니다." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "다음을 받게 됩니다" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "V2 유동성" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "활성 V3 유동성 위치가 여기에 표시됩니다." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "유동성 예금" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "내 풀 쉐어:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "내 위치" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "귀하의 포지션에는 유동성이 없으며, 수수료를 벌지 않습니다." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "귀하의 위치가 여기에 표시됩니다." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "이 가격에서 귀하의 포지션은 100% {0}(으)로 구성됩니다" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "이 가격에서 귀하의 포지션은 100% {0}이(가) 됩니다." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "귀하의 포지션은 시장 가격이 귀하의 범위로 이동할 때까지 수수료를 받거나 거래에 사용되지 않습니다." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "내 포지션" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "내 요율" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "총 풀 토큰 :" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "풀을 만드는 데 필요한 가스가 포함되어 있으므로 거래 비용이 훨씬 더 높을 것입니다." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "귀하의 거래는 프론트런일 수 있습니다" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "거래가 실패할 수 있습니다" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "이 기간 이상 보류중인 거래는 취소됩니다." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "가격이 이 요율 이상으로 불리하게 변경되면 거래가 취소됩니다." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "거래 내역이 여기에 표시됩니다 ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "내 미 청구 UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "미끄러진 후" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "확인" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "{0}에 찬성" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "그웨이" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "양말 이모티콘 있음" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "여기." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// 또는 ipfs:// 또는 ENS 이름" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "분" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "{0} 경유" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "{0} 토큰 목록을 통해" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {토큰 가져 오기} other {토큰 가져 오기}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> / <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} 사용자 지정 토큰" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} 예치됨" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} 수수료 적립됨:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} 보류 중" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / 주" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP 토큰 사용 가능" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} 투표" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0}/{1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} 토큰" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} 가격 :" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • 사용자가 추가" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% 수수료 등급" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% 풀" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% 선택" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} 유동성 채굴" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP 토큰" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} 토큰" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} 토큰 브릿지" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} / {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← 풀 개요로 돌아 가기" - diff --git a/src/locales/nl-NL.po b/src/locales/nl-NL.po deleted file mode 100644 index 36b52775e7..0000000000 --- a/src/locales/nl-NL.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: nl_NL\n" -"Language-Team: Dutch\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: nl\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Bekijken in Verkenner)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(alles wissen)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(bewerken)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Ontvanger verwijderen" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / week" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Alle voorstellen" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Stemmen" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Account analyse en opgebouwde vergoedingen <1>↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Huidige prijs: <1><2/> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Tip: Het verwijderen van pool tokens zet uw positie weer om in onderliggende tokens tegen de huidige koers, in verhouding tot uw aandeel in de pool. Opgebouwde kosten zijn inbegrepen in de bedragen die u ontvangt." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Tip: Selecteer een actie en beschrijf je voorstel voor de community. Het voorstel kan na indiening niet meer worden gewijzigd, dus controleer alle informatie voordat u het indient. De stemperiode begint onmiddellijk en duurt 7 dagen. Om een aangepaste actie voor te stellen, <1>lees de documenten ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Tip: Gebruik deze tool om v2-pools te vinden die niet automatisch in de interface verschijnen." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Tip: Wanneer u liquiditeit toevoegt, ontvangt u pool tokens die uw positie vertegenwoordigen. Deze tokens verdienen automatisch inkomsten in verhouding tot uw aandeel in de pool, en kunnen op elk moment worden ingewisseld tegen de onderliggende tokens." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Ontgrendel het stemmen om het volgende voorstel voor te bereiden." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Welkom bij team Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Een minimumdrempel van 0,25% van het totale UNI-aanbod is vereist om voorstellen in te dienen" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Over" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Accepteren" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Rekening" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Actief" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Toevoegen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Voeg <0/> en <1/> toe aan Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Gemachtigde toevoegen +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Liquiditeit toevoegen" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "V2 Liquiditeit toevoegen" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Voeg liquiditeit toe." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Voeg meer liquiditeit toe" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "{0} toevoegen aan Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Voeg {0}-{1} liquiditeit toe" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Voeg {0}/{1} V3 liquiditeit toe" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Toegevoegd {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adres heeft geen beschikbare claim" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Tegen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "LP token migratie toestaan" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Sta transacties met hoge prijsimpact toe en sla het bevestigingsscherm over. Gebruiken op eigen risico." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Sta het Uniswap Protocol toe om uw {0} te gebruiken" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Toegestaan" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Bedrag" - -#: src/hooks/useSwapCallback.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." -msgstr "Er is een fout opgetreden bij het uitvoeren van deze swap. Mogelijk moet u uw sliptolerantie verhogen. Als dat niet werkt, is er mogelijk een incompatibiliteit met het token dat u verhandelt. Let op: kosten voor overdracht en rebase tokens zijn niet compatibel met Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Goedkeuren" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Token goedkeuren" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Keur {0} goed" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Goedgekeurd" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Goedkeuren" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "{0} goedkeuren" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrumbrug" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum is in bèta en kan downtime ervaren. Tijdens downtime ontvangt uw positie geen vergoedingen en kunt u geen liquiditeit verwijderen. <0>Lees meer." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Weet u het zeker?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Als lid van de Uniswap gemeenschap kunt u claimen dat UNI wordt gebruikt voor stemmen en bestuur.<0/><1/><2>Lees meer over UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Tenminste {0} {1} en {2} {3} zullen worden teruggestort naar uw portemonnee vanwege het geselecteerde prijsbereik." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automatisch" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Automatische router-API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Beschikbaar om te storten: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Het beste voor exotische paren." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Het beste voor de meeste paren." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Het beste voor stabiele paren." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Het beste voor zeer stabiele paren." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Beste prijs route kost ~{formattedGasPriceString} in gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Geblokkeerd adres" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Brug" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Door liquiditeit toe te voegen, verdient u 0,3% van alle transacties op dit paar in verhouding tot uw aandeel in de pool. Vergoedingen worden aan de pool toegevoegd, worden in realtime opgebouwd en kunnen worden opgeëist door uw liquiditeit op te nemen." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Door een portemonnee te koppelen, gaat u akkoord met de <0>Servicevoorwaarden van Uniswap Labs en bevestigt u dat u de Disclaimer<1>protocol hebt gelezen en begrepen." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Geannuleerd" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Wijzigen" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafieken" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Controleer netwerkstatus" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Bekijk onze v3 LP handleidingen en migratiegidsen." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Claim" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Claim <0/> voor {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Claim UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Claim UNI-token" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Claim UNI-beloning voor {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Vergoedingen opeisen" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Claim uw UNI-tokens" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Opgeëist" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI opgeëist!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Geclaimd!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Opeisen" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "UNI opeisen" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Opeisen van {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Alles wissen" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Alles wissen" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Sluiten" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Gesloten" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Verzamel" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Verzamel als WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Vergoedingen innen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Verzamel {0}/{1} kosten" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Geïnd" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Innen" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Incassokosten" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Incassokosten zullen de momenteel beschikbare kosten voor u opnemen." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Bevestigen" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Bevestig levering" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Bevestig wissel" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Bevestig deze transactie in uw portemonnee" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Bevestig transactie in portemonnee" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Verbind Portemonnee" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Verbind een portemonnee" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Maak verbinding met een portemonnee om pools te vinden" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Maak verbinding met een portemonnee om uw V2 liquiditeit te bekijken." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Maak verbinding met een portemonnee om uw liquiditeit te bekijken." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Verbonden met {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Gekopieerd" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Adres kopiëren" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Maak pool en levering aan" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Voorstel maken" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Maak een paar aan" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Maak een pool aan" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Maak een issue aan op GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Creëer een groep en voeg {0}/{1} V3 liquiditeit toe" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Maak een pool aan." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Maak {0}/{1} V3 pool" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Huidige prijs" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Huidige {0} prijs:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Donker thema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Verslagen" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Stemmen overdragen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Stemrecht delegeren aan {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Overgedragen aan:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Overdragen van stemmen" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Storting" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Stortingsbedragen" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Stort UNI-V2 LP Tokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Stort liquiditeit" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Stort tokens op het {label} netwerk." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Stort uw Liquidity Provider tokens om UNI te ontvangen, de Uniswap protocol governance token." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Gestorte liquiditeit:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "{0} UNI-V2 gestort" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Liquiditeit storten" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Beschrijving" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Gedetailleerd" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Details" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Verbinding verbreken" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Onenigheid" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Afwijzen" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documenten" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Ziet u één van uw v2 posities niet? <0>Importeer deze." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Verdiende UNI-tokens vertegenwoordigen stemgerechtigde aandelen in Uniswap-bestuur." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Bewerk" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Efficiëntie vergelijking:" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Voer een percentage in" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Voer een ontvanger in" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Voer een geldig slippage-percentage in" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Voer een adres in om een UNI-claim te activeren. Als het adres een claimbare UNI heeft, wordt deze na indiening naar hen verzonden." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Voer een bedrag in" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Voer een geldige lijstlocatie in" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Voer geldig tokenadres in" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Voer {0} bedrag in" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Foutmelding" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Fout bij verbinden" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Fout bij het verbinden. Probeer de pagina te vernieuwen." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Fout bij importeren lijst" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Schatting kan verschillen als gevolg van de gasinstellingen van uw portemonnee" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Geschatte netwerkkosten" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Uitgevoerd" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Expert modus" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "In de Expertmodus wordt de prompt voor het bevestigen van de transactie uitgeschakeld en hoge slippage-verhandelingen, die vaak leiden tot slechte tarieven en verloren geld, toegestaan." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Niet meer geldig" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Ontdek Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Kan niet van netwerk wisselen vanaf de Uniswap-interface. Om Uniswap op {0}, moet u het netwerk in uw portemonnee wijzigen." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Vergoedingsniveau" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Vergoedingslaag" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Beste prijs ophalen..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Voor" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Klik voor elke hieronder weergegeven pool op migreren om uw liquiditeit uit Uniswap V2 te verwijderen en in Uniswap V3 te storten." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Vanaf" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Vanaf (ten hoogste)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Volledig bereik" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Full-range posities kunnen minder kosten opleveren dan geconcentreerde posities. Lees <0>hier meer ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Ontvang ondersteuning op Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Helpcentrum" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Zich verstoppen" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Verberg gesloten posities" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Hoge prijsimpact" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Hoe deze app API's gebruikt" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Ik begrijp het" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Als u een token van deze lijst koopt, kunt u deze mogelijk niet meer terugverkopen." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importeren" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Lijst importeren" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Pool importeren" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "V2-pool importeren" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importeer op eigen risico" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "In bereik" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Verhoog liquiditeit" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Initiële prijzen en poolaandeel" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Initialiseren..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Invoer wordt ingeschat. U verkoopt maximaal <0>{0} {1} of de transactie wordt teruggedraaid." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Metamask installeren" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Onvoldoende liquiditeit voor deze transactie." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Onvoldoende saldo {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Interface-instellingen" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Ongeldig paar" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Ongeldig paar." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ongeldige prijsinvoer" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Ongeldig bereik geselecteerd. De minimumprijs moet lager zijn dan de maximumprijs." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Ongeldige ontvanger" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Taal" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Leren" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Meer informatie over het verstrekken van liquiditeit" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Kom meer te weten" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Juridisch en privacy" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Licht thema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquiditeit" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Liquiditeitsgegevens niet beschikbaar." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Beloningen van liquiditeitsverschaffer" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Liquidity providers verdienen een vergoeding van 0,3% op alle transacties in verhouding tot hun aandeel in de pool. Vergoedingen worden toegevoegd aan de pool, worden in realtime opgebouwd en kunnen worden opgeëist door uw liquiditeit terug te trekken." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Lijsten" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Geladen" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Aan het laden" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Beheren" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Liquiditeit beheren in beloningspool" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Beheer tokenlijsten" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Beheer deze pool." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Max." - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Max. prijs" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maximale prijs" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Max:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximaal verzonden" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migreer" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Liquiditeit migreren naar V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migreer V2-liquiditeit" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migreer uw liquiditeitstokens van Uniswap V2 naar Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrate {0}/{1} liquiditeitscategorie V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migreren" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Min. prijs" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimale prijs" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum ontvangen" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Ontbrekende afhankelijkheden" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Meer" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Netwerkkosten" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Netwerkwaarschuwing" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "De netwerkkosten bedragen meer dan 50% van het swapbedrag!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nieuwe positie" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Geen V2-liquiditeit gevonden." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Geen actieve pools" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Geen informatie" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Geen beschrijving." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Geen liquiditeit gevonden." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Geen pool gevonden." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Geen voorstellen gevonden." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Geen resultaten gevonden." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Niet gemaakt" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "UIT" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "AAN" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "GEBRUIK DEZE MODUS ALLEEN ALS U WEET WAT U DOET." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Uit" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Aan" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Zodra u tevreden bent met het tarief, klikt u op het aanbod om te beoordelen." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Alleen UNI-stemmen die zelf zijn gedelegeerd of gedelegeerd aan een ander adres voor blok {0} komen in aanmerking voor stemming." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Oeps! Er is een onbekende fout opgetreden. Ververs de pagina of bezoek vanaf een andere browser of apparaat." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimisme Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimisme bevindt zich in de bètafase en kan downtime ervaren. Optimism verwacht dat geplande downtime het netwerk in de nabije toekomst zal upgraden. Tijdens downtime ontvangt uw positie geen vergoedingen en kunt u geen liquiditeit verwijderen. <0>Lees meer." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistische Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Buiten bereik" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Uitvoer wordt geschat. Als de prijs met meer dan {0}% wijzigt, wordt uw transactie teruggedraaid." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Uitvoer wordt ingeschat. U ontvangt ten minste <0>{0} {1} of de transactie wordt teruggedraaid." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Uitvoer zal worden verzonden naar <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Eigenaar" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Deelnemende pools" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "In afwachting" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Bevestig dat u deze lijst wilt verwijderen door REMOVE . te typen" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Maak verbinding met Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Maak verbinding met het juiste Ethereum-netwerk." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Typ het woord \"{confirmWord}\" om expertmodus in te schakelen." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygoonbrug" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Veelhoekscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool gevonden!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Pooltarief" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Pooltarief" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Pooltokens in beloningenpool:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Gepoold {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Pools overzicht" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Voorbeeld" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Prijs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Prijsverschil:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Prijsimpact" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Prijsimpact te hoog" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Prijs bijgewerkt" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Prijsbereik" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Prijs:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Prijzen en aandeel in pool" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Voorstel" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Voorstel ingediend" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Titel van het voorstel" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Voorstellen" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Voorstellen die zijn ingediend door gemeenschapsleden zullen hier verschijnen." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Voorgestelde actie" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Indiener voorstel" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protocol Disclaimer" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "In de wachtrij" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tarieven" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Lees meer over UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Lees meer over Uniswap-bestuur" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Lees meer over het verstrekken van liquiditeit" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Lees meer over niet-ondersteunde middelen" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Recente transacties" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Ontvanger" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Verwijderen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Verwijder <0/> en <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Bedrag verwijderen" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Verwijder gedelegeerde" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Verwijder liquiditeit" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Verwijder lijst" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Verwijderen van {0} {1} en {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Verwijderen {0} {1} en{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Functies aanvragen" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Terug" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Zoek naam of plak adres" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Selecteer Koppel" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Selecteer een netwerk" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Selecteer een token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Selecteer een token om uw v2-liquiditeit te vinden." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Selecteer een actie" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Geselecteerd bereik" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Eigen" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Zelf gedelegeerd" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Stel prijsbereik in" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Stel startprijs in" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Aandeel in pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Aandeel in pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Toon Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Toon gesloten posities" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Eenvoudig" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Slippage tolerantie" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Sommige activa zijn niet beschikbaar via deze interface omdat ze mogelijk niet goed werken met de smart contracts of omdat we om juridische redenen geen handel kunnen toestaan." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Er is iets fout gegaan" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Stap 1. Verkrijg UNI-V2 liquiditeitstokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Nieuw voorstel indienen" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Voorstel indienen" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Indienen van stem" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Geslaagd" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Succes" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Levering" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "{0} {1} en {2} {3} aanbieden" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Wisselen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Verwissel <0/> voor precies <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Toch wisselen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Wissel exact <0/> in voor <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Wissel mislukt: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "{0} {1} ruilen voor {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Bedankt dat u deel uitmaakt van de Uniswap-gemeenschap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Het % dat u aan vergoedingen verdient." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Aan de Uniswap-invariant x * y = k werd door de swap niet voldaan. Dit betekent meestal dat een van de tokens die u ruilt, aangepast gedrag bij overdracht bevat." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "De app haalt blockchain-gegevens op van de gehoste service van The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "De app haalt on-chain data op en bouwt contractaanroepen op met een Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "De app haalt de optimale handelsroute op van een Uniswap Labs-server." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "De app registreert geanonimiseerde gebruiksstatistieken om deze in de loop van de tijd te verbeteren." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "De app verzamelt veilig uw portemonnee-adres en deelt het met TRM Labs Inc. voor risico- en nalevingsredenen." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "De kosten voor het verzenden van deze transactie bedragen meer dan de helft van de waarde van het invoerbedrag." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Het huidige snelgasbedrag voor het verzenden van een transactie op L1. Gaskosten worden betaald in Ethereum's eigen valuta Ether (ETH) en uitgedrukt in GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Het geschatte verschil tussen de USD-waarden van input- en outputbedragen." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "De input-token kan niet worden overgedragen. Er is mogelijk een probleem met de input-token." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "De marktprijs ligt buiten uw opgegeven prijsbereik. Alleen single-activa storten." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Het meest recente bloknummer op dit netwerk. Prijzen update op elk blok." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "De output-token kan niet worden overgedragen. Er is mogelijk een probleem met de output-token." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "De output token kan niet worden overgedragen. Er is mogelijk een probleem met de output token. Let op: kosten voor overdracht en rebase tokens zijn niet compatibel met Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "De prijs van deze pool valt buiten het door u geselecteerde bereik. Uw positie verdient momenteel geen vergoedingen." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "De prijs van deze pool valt binnen het door u geselecteerde bereik. Uw positie verdient momenteel vergoedingen." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "De verhouding van tokens die u toevoegt zal de prijs van deze pool bepalen." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "De transactie kan niet worden verzonden omdat de deadline is verstreken. Controleer of uw transactiedeadline niet te laag is." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Er zijn geen liquiditeitsgegevens." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Deze app gebruikt de volgende API's van derden:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Deze pool moet worden geïnitialiseerd voordat u liquiditeit kunt toevoegen. Selecteer een startprijs voor het zwembad om te initialiseren. Voer vervolgens uw liquiditeitsprijsbereik en stortingsbedrag in. Vanwege de initialisatietransactie zullen de gaskosten hoger zijn dan normaal." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Deze route optimaliseert uw totale output door rekening te houden met gesplitste routes, meerdere hops en de gaskosten van elke stap." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Deze tool zal uw {0} liquiditeit veilig migreren naar V3. Het proces is volledig betrouwbaar dankzij de" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Deze transactie zal niet slagen vanwege prijsbewegingen. Probeer uw slippage tolerantie te vergroten. Let op: kosten voor overdracht en rebasetokens zijn niet compatibel met Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Deze transactie zal niet slagen vanwege prijsbewegingen of kosten bij overdracht. Probeer uw slipping tolerantie te vergroten." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tip: Aangepaste tokens worden lokaal opgeslagen in uw browser" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Naar" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Naar (ten minste)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token niet ondersteund" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Totaal gestort" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Totale stortingen" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Handelsroute" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Transactie-instellingen" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transactie verzonden" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transactie voltooid in" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Transactiedeadline" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transactie afgewezen." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token overdragen" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Probeer opnieuw" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Schakel Expertmodus in" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI is gearriveerd" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI tokens vertegenwoordigen stemaandelen in het bestuur van Uniswap. U kunt zelf over elk voorstel stemmen of uw stemmen aan een derde partij overdragen." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} verbrand" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP tokens zijn vereist. Zodra u uw liquiditeit aan de {0}-{1} pool heeft toegevoegd, kunt u uw liquiditeitstokens op deze pagina inzetten." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Onopgeëiste UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Niet-opgeëiste vergoedingen" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Onbepaald" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Onverwachte fout. Kon het gas voor de swap niet schatten." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Onverwacht probleem met het schatten van het gas. Probeer het opnieuw." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap-bestuur" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Servicevoorwaarden van Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap beschikbaar in: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-governance is alleen beschikbaar op laag 1. Schakel uw netwerk over naar Ethereum Mainnet om voorstellen te bekijken en te stemmen." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap liquidity mining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap migratiecontract↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Onbekende bron" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Onbekende fout{0}. Probeer uw slippage tolerantie te vergroten. Let op: kosten voor overdracht en rebase tokens zijn niet compatibel met Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Ontgrendel stemmen" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Ontgrendel de stemming" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Ontgrendelen van stemmen" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Niet-ondersteunde activa" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Niet-ondersteunde activa" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Ongetiteld" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Uitpakken" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Uitpakken <0/> tot {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Werk delegatie bij" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Lijst bijwerken" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Gebruik de Uniswap Labs API om snellere offertes te krijgen." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Gebruiker" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 is niet beschikbaar op Layer 2. Schakel over naar Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2-liquiditeit" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} prijs:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Opgebouwde vergoedingen en analytics bekijken<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Lijst bekijken" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Bekijk op Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Weergeven op Verkenner" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Bekijk transactie op Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Stem" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Stem tegen" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Stem voor" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Stem tegen voorstel {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Stem tegen voorstel {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem tegen voorstel {proposalKey} met reden \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Stem op voorstel {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Stem op voorstel {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem op voorstel {proposalKey} met reden \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Stem onthouding op voorstel {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Stem onthouding op voorstel {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem tegen voorstel {proposalKey} met reden \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Stemmen beëindigd {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Stemmen eindigt ongeveer {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Stemmen begint ongeveer {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Wachten op bevestiging" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Portemonnee-adres of ENS-naam" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Wekelijkse beloningen" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Welkom bij team Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Wanneer u claimt zonder uw liquiditeit terug te trekken, blijft u in de mining pool." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Als u opneemt, zal het contract automagisch UNI voor u claimen!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Wanneer u opneemt, wordt uw UNI geclaimd en wordt uw liquiditeit verwijderd uit de mining pool." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Opnemen" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Opnemen & opeisen" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Neem gedeponeerde liquiditeit op" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Opnemen van {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 opgenomen!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Omloop" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Wikkel <0/> tot {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Verkeerd netwerk" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "U heeft al een actief of in behandeling zijnd voorstel" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "U maakt een pool aan" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "U bent de eerste liquiditeitsaanbieder voor deze Uniswap V3 pool. Uw liquiditeit zal migreren tegen de huidige {0} prijs." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "U bent de eerste liquiditeitsverschaffer." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "U kunt zelf over elk voorstel stemmen of uw stemmen overdragen aan een derde partij." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "U kunt nu {0} beleggen" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Je hebt niet genoeg stemmen om een voorstel in te dienen" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "U heeft nog geen liquiditeit in deze pool." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "U kunt overwegen te wachten tot de netwerkkosten zijn gedaald om deze transactie te voltooien." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "U dient een account te koppelen." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "U dient de Uniswap smart contracten toestemming te geven om uw {0} te gebruiken. U hoeft dit slechts eenmaal per token te doen." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "U moet {formattedProposalThreshold} stemmen hebben om een voorstel in te dienen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "U dient alleen liquiditeit in Uniswap V3 te storten tegen een prijs die u correct acht. <0/>Als de prijs onjuist lijkt, kunt u een wissel uitvoeren om de prijs te bewegen of wachten tot iemand anders dit doet." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "U zult ook vergoedingen innen die vanuit deze positie zijn verdiend." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "U ontvangt" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Uw V2-liquiditeit" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Uw actieve V3-liquiditeitsposities verschijnen hier." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Uw liquiditeitsstortingen" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Uw pool-aandeel:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Uw positie" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Uw positie heeft 0 liquiditeit en levert geen vergoedingen op." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Uw positie zal hier verschijnen." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Uw positie zal 100% bestaan uit {0} tegen deze prijs" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Uw positie zal 100% {0} tegen deze prijs zijn." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Uw positie zal geen vergoedingen opleveren of worden gebruikt in transacties totdat de marktprijs binnen uw bereik komt." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Uw posities" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Uw tarief" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Uw totale pooltokens:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Uw transactiekosten zullen veel hoger zijn omdat het het gas bevat om de pool aan te maken." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Uw transactie kan vooraf worden uitgevoerd" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Uw transactie kan mislukken" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Uw transactie zal worden teruggedraaid als deze langer dan deze periode in behandeling is." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Uw transactie zal terugdraaien als de prijs onvoordelig met meer dan dit percentage verandert." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Uw transacties zullen hier verschijnen..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Uw niet-opgeëiste UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "na slippen" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "bevestig" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "voor {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "heeft sokken emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "hier." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // of ipfs: // of ENS-naam" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuten" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "via {0} tokenlijst" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Import token} other {Import tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} aangepaste tokens" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} gestort" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} vergoedingen verdiend:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} in behandeling" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / week" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP tokens beschikbaar" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} stemmen" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} prijs:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Toegevoegd door gebruiker" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% vergoedingsniveau" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% zwembad" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% selecteren" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Liquidity Mining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP-tokens" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} tokens" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} tokenbrug" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Terug naar poolsoverzicht" - diff --git a/src/locales/no-NO.po b/src/locales/no-NO.po deleted file mode 100644 index 849b76ae46..0000000000 --- a/src/locales/no-NO.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: no_NO\n" -"Language-Team: Norwegian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: no\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Vis på Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(fjern alle)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(rediger)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Fjern mottaker" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / uke" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Alle forslag" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Stemmer" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Konto-analyser og påløpte avgifter<1> :up-″: " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Gjeldende pris: <1> <2 /> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Tips: Fjerning av pottpolletter konverterer din posisjon tilbake til underliggende polletter i nåværende hastighet, proporsjonal med din andel av potten. Påløpte avgifter er inkludert i beløpet du mottar." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Tips: Velg en handling og beskriv forslaget ditt for samfunnet. Forslaget kan ikke endres etter innsending, så verifiser all informasjon før du sender det. Valgperioden begynner umiddelbart og varer i 7 dager. For å foreslå en tilpasset handling, les <1> dokumentene ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Tips: Bruk dette verktøyet til å finne v2-potter som ikke automatisk vises i grensesnittet." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Tips: Når du legger til likviditet, vil du motta samlingpotter som representerer din posisjon. Disse pollettene tar automatisk gebyr proporsjonal med din andel av potten, og kan innløses når som helst." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Lås opp stemme for å forberede neste forslag." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Velkommen til team Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "En minimumsterskel på 0,25% av den totale UNI-forsyningen kreves for å sende inn forslag" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Om" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Godta" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Konto" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktiv" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Legg til" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Legg til <0/> og <1/> i Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Legg til delegat +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Legg til likviditet" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Legg til V2-likviditet" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Legg til likviditet." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Legg til mer likviditet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Legg til {0} til metamaske <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Legg til {0}-{1} likviditet" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Legg til {0}/{1} V3-likviditet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Lagt til {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adressen har ikke noen tilgjengelig krav" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Mot" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Tillat migrering av LP-pollett" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Tillat høyprispåvirkede handel og hopp over bekreftelsesskjermen. Bruk på egen risiko." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Tillat Uniswap-protokollen å bruke din {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Tillatt" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Beløp" - -#: src/hooks/useSwapCallback.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." -msgstr "Det oppstod en feil under forsøket på å utføre dette byttet. Det kan hende du må øke glidetoleransen. Hvis det ikke fungerer, kan det være en inkompatibilitet med symbolet du handler. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Godkjenn" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Godkjenn token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Godkjenn {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Godkjent" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Godkjenner" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Godkjenner {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum Bridge" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum er i Beta og kan oppleve nedetid. I nedetid vil tjenesten din ikke tjene gebyrer, og du vil ikke kunne fjerne likviditet. <0> Les mer." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Som medlem av Uniswap-fellesskapet kan du hevde at UNI skal brukes til stemmegivning og styring. <0/><1/><2>Les mer om UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Minst {0} {1} og {2} {3} vil bli refundert til lommeboken på grunn av valgt prisintervall." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Tilgjengelig for innskudd: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Best for eksotiske par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Beste for de fleste par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Beste for stabile par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Best for veldig stabile par." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Beste pris rute koster ~{formattedGasPriceString} i gass." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Blokkert adresse" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Bro" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Ved å tilføre likviditet tjener du 0,3 % av alle handler på dette paret proporsjonal med din andel av reserven. Gebyr legges til potten, periodisering i sanntid og hentes ved å trekke ut likviditeten." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Ved å koble til en lommebok godtar du Uniswap Labs' <0>vilkår for bruk og erkjenner at du har lest og forstått Uniswap <1>Protocol Ansvarsfraskrivelse." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Avlyst" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Endre" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Diagrammer" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Sjekk nettverksstatus" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Sjekk ut våre v3 LP-gjennomgangs- og migrasjonsguider." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Hent" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Gjør krav på <0/> for {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Hent UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Hent UNI-pollett" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Krev UNI -belønning for {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Hent gebyrer" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Hent dine UNI-polletter" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Påtatt" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Hentet UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Påstått!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Henter" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Henter UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Henter {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Fjern alle" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Fjern alle" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Lukk" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Lukket" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Samle" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Samle som WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Samle inn avgifter" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Samle {0}/{1} avgifter" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Samlet" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Samler" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Henter avgifter" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Innsamling av avgifter trekker tilbake tilgjengelige gebyrer for deg." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Bekreft" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Bekreft levering" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Bekreft bytte" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Bekreft denne transaksjonen i lommeboken din" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Bekreft transaksjonen i lommeboken" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Koble til lommebok" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Koble til en lommebok" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Koble til en lommebok for å finne potter" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Koble til en lommebok for å se V2-likviditeten." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Koble til en lommebok for å se innholdet ditt." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Koblet til med {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopiert" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopier adresse" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Opprett samling & forsyning" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Lag et forslag" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Opprett et par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Lag en pott" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Opprett et problem på GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Opprett pott og legg til {0}/{1} V3-likviditet" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Opprett pott." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Opprett {0}/{1} V3 basseng" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Nåværende pris" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Nåværende {0} pris:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Mørkt tema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Nedkjempet" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegere stemmer" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegere stemmerett til {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegert til:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegerer stemmer" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Innskudd" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Innskuddsbeløp" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Sett inn UNI-V2 LP-polletter" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Innskuddslikviditet" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Sett inn tokens til {label} nettverket." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Sett inn din likviditetsleverandørs polletter for å motta UNI, the Uniswap-protokollens styrende pollett." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Innskutt likviditet:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Innskutt {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Innskuddslikviditet" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Beskrivelse" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detaljert" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detaljer" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Frakoble" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Splid" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Avvis" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumenter" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Ser du ikke en av dine v2-posisjoner? <0>Importer den." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Opptjent UNI-polletter representerer stemmeaksjer i Uniswap-styring." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Redigere" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Effektivitetssammenligning" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Oppgi en prosent" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Oppgi en mottaker" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Oppgi en gyldig glideprosent" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Skriv inn en adresse for å aktivere en UNI-henting. Hvis adressen har noe skadelig. vil den bli sendt til dem for innsending." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Oppgi et beløp" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Oppgi gyldig plassering for listen" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Oppgi gyldig pollettadresse" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Skriv inn {0} beløp" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Feil" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Feil ved tilkobling" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Feil under tilkobling. Prøv å oppdatere siden." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Feil ved import av liste" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Estimatet kan variere på grunn av gassinnstillingene i lommeboken" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Estimert nettverksavgift" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Henrettet" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Ekspert modus" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Ekspertmodus deaktiverer ledeteksten for transaksjonen og gir mulighet for høy glidehandel som ofte resulterer i dårlige priser og tapte midler." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Utløpt" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Utforsk Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Kunne ikke bytte nettverk fra Uniswap-grensesnittet. For å bruke Uniswap på {0}må du endre nettverket i lommeboken." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Gebyrnivå" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Avgiftsnivå" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Får best pris..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "For" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "For hver pott vist nedenfor, klikker du på migrering for å fjernee likviditeten fra Uniswap V2 og sette den til Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Fra" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Fra (til mest)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Hele spekteret" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Fulltidsstillinger kan tjene mindre avgifter enn konsentrerte stillinger. Lær mer <0> her ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Få støtte på Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Hjelpesenter" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Gjemme seg" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Skjul avsluttede posisjoner" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Høy pris konsekvens" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Hvordan denne appen bruker APIer" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Jeg forstår" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Hvis du kjøper en pollett fra denne listen, kan det hende du ikke kan selge den tilbake." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Import" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importer liste" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importer pott" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importer V2-pott" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importer på eget ansvar" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Innenfor rekkevidde" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Øk likviditet" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Innledende priser og pottandel" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Initialiserer ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Inndata estimert. Du vil selge maksimalt <0>{0} {1} eller transaksjonen vil tilbakestilles." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Installer metamaske" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Utilstrekkelig likviditet for denne handelen." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Utilstrekkelig {0} saldo" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Grensesnittsinnstillinger" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Ugyldig par" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Ugyldig par." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ugyldig prisinngang" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Ugyldig område valgt. Minsteprisen må være lavere enn maks prisen." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Ugyldig mottaker" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Språk" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Finn ut mer" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Lær om å skaffe likviditet" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Lære mer" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Juridisk og personvern" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Lys tema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likviditet" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likviditetsdata ikke tilgjengelig." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Tilbudspremier for likviditetsleverandør" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likviditetsleverandører får 0,3 % avgift på alle handler proporsjonalt med andelen av reserven. Gebyr legges til potten, periodisering i sanntid og kan hentes ved å trekke ut likviditeten." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Lister" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Lastet" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Laster" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAKS" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Administrer" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Behandle likviditet i belønningspott" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Behandle pollettlister" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Administrere denne reserven." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maks" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maks pris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maks pris" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maks:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksimum sendt" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Meny" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrere" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Overfør likviditet til V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrer V2-likviditet" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Overføre likviditetspolletten din fra Uniswap V2 til Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Overfør {0}/{1} likviditet til V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrerer" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Min pris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Min pris" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum mottatt" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Mangler avhengigheter" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mer" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Nettverksavgift" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Advarsel om nettverk" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Nettverksavgifter overstiger 50 % av byttebeløpet!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Ny posisjon" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Ingen V2-likviditet funnet." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Ingen aktive potter" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Ingen data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Ingen beskrivelse." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Ingen likviditet funnet." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Ingen potter funnet." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Ingen forslag funnet." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Ingen resultater." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Ikke opprettet" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "AV" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "PÅ" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "BARE BRUK DENNE MODUSEN DERSOM DU VET HVA DU GJØR." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Av" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "På" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Når du er fornøyd med satsen, klikker du på lever for å gjennomgå." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Bare UNI-stemmer som ble delegert eller delegert til annen adresse før blokk {0} kvalifiserer for å stemme." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Det oppstod en ukjent feil. Oppdater siden, eller besøk fra en annen nettleser eller enhet." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimisme er i Beta og kan oppleve nedetid. Optimism forventer planlagt nedetid for å oppgradere nettverket i nær fremtid. Under nedetid vil posisjonen din ikke tjene gebyrer, og du vil ikke kunne fjerne likviditet. <0>Les mer." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistisk Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Utenfor rekkevidde" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Utdata er estimert. Hvis prisen endrer seg med mer enn {0} % vil transaksjonen tilbakestilles." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Utgangen er estimert. Du vil motta minst <0>{0} {1} eller transaksjonen vil tilbakestilles." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Utgangen vil bli sendt til <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Eier" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Deltagende samlinger" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Avventer" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Bekreft at du vil fjerne denne listen ved å skrive FJERN" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Vennligst koble til Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Koble til det riktige Ethereum-nettverket." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Skriv inn ordet \"{confirmWord}\" for å aktivere ekspertmodus." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygonbro" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonskanning" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pott" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pott funnet!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Pottpris" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Pottpris" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Pottpolletter i belønningspott:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Pott {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Oppsamlingsoversikt" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Forhåndsvisning" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Pris" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Prisdifferanse:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Prispåvirkning" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "For høy prispåvirkning" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Pris oppdatert" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Prisintervall" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Pris:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Priser og pottandel" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Forslag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Forslaget ble sendt inn" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Forslagets tittel" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Forslag" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Forslag som sendes inn av medlemmer i fellesskapet vil vises her." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Foreslått handling" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Foreslå" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokoll Ansvarsfraskrivelse" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "I kø" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Priser" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Les mer om UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Les mer om Uniswap-styring" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Les mer om likviditetstilførsel" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Les mer om ikke-støttede ressurser" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Nylige transaksjoner" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Mottaker" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Fjern" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Fjern <0/> og <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Fjern beløp" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Fjern delegat" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Fjern likviditet" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Fjern liste" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Fjerner {0} {1} og {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Fjerner {0} {1} og{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Be om funksjoner" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Retur" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Søk navn eller lim inn adresse" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Velg Par" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Velg et nettverk" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Velg en pollett" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Velg en pollett for å finne din v2-likviditet." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Velg en handling" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Valgt område" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Selv" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Selvdelegat" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Angi prisområde" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Angi startpris" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Andel av pott" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Deling av pott:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Vis portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Vis lukkede stillinger" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Enkel" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Toleranse for sammenføyning" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Noen aktiva er ikke tilgjengelige gjennom dette grensesnittet fordi de kanskje ikke fungerer bra med de smarte kontraktene, eller vi ikke tillater handel av juridiske årsaker." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Noe gikk galt" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Trinn 1. Få UNI-V2-likviditetspolletter" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Send inn nytt forslag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Innlevering av forslag" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Sender inn stemme" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Lyktes" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Suksess" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Levering" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Leverer {0} {1} og {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Bytt" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Bytt <0/> for nøyaktig <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Bytt uansett" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Bytt nøyaktig <0/> for <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Bytting mislyktes: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Bytte {0} {1} mot {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Takk for at du er en del av Uniswap-fellesskapet <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% Du vil tjene i gebyrer." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap-invarianten x * y = k ble ikke tilfreds med byttet. Dette betyr vanligvis at en av pollettene du bytter inneholder tilpasset oppførsel ved overføring." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Appen henter blokkjededata fra The Graphs vertstjeneste." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Appen henter kjededata og konstruerer kontraktanrop med et Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Appen henter den optimale handelsruten fra en Uniswap Labs-server." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Appen logger anonymisert bruksstatistikk for å forbedre seg over tid." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Appen samler sikkert lommebokadressen din og deler den med TRM Labs Inc. av risiko- og samsvarsgrunner." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Kostnaden for å sende denne transaksjonen er mer enn halvparten av verdien av inngående beløp." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Gjeldende hurtiggassbeløp for å sende en transaksjon på L1. Gassavgifter betales i Ethereums opprinnelige valuta Ether (ETH) og denominert i GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Den estimerte forskjellen mellom USD-verdiene for inn- og utgående beløp." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Inngangspolletten kan ikke overføres. Det kan være et problem med inndatapolletten." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Markedsprisen er kun utenfor ditt angitte prisintervall." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Det siste blokknummeret på dette nettverket. Prisene oppdateres for hver blokk." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Utgangspolletten kan ikke overføres. Det kan være et problem med utgangspolletten." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Utgangstokenet kan ikke overføres. Det kan være et problem med utgangstokenet. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Prisen på denne potten er utenfor ditt valgte nivå. Din posisjon er ikke for tiden som gir avgifter." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Prisen på denne potten er innenfor ditt valgte område. Din posisjon er for øyeblikket tjener avgifter." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Forholdet mellom symboler du legger til vil angi prisen på denne potten." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Transaksjonen kunne ikke sendes fordi fristen er passert. Kontroller at transaksjonsfristen ikke er for lav." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Det er ingen likviditetsdata." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Denne appen bruker følgende tredjeparts APIer:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Dette bassenget må initialiseres før du kan tilføre likviditet. For å initialisere, velg en startpris for bassenget. Deretter angir du likviditetsprisklasse og innskuddsbeløp. Bensinavgifter vil være høyere enn vanlig på grunn av initialiseringstransaksjonen." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Denne ruten optimaliserer din totale produksjon ved å vurdere delte ruter, flere hopp og gasskostnadene for hvert trinn." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Dette tokenet støttes ikke i Uniswap Labs-appen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Dette verktøyet vil trygt migrere din {0} likviditeten til V3. Prosessen er fullstendig pålitelig takket være" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Denne transaksjonen vil ikke lykkes på grunn av prisbevegelse. Prøv å øke glidetoleransen. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Denne transaksjonen vil ikke lykkes på grunn av prisbevegelse eller gebyr ved overføring. Prøv å øke glidetoleransen." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tips: Egendefinerte polletter lagres lokalt i din nettleser" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Til" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Til (minst)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token støttes ikke" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Polletter" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Totalt avsatt" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Totale innskudd" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Handelsrute" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Transaksjonsinnstillinger" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaksjon sendt" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaksjonen fullført i" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Transaksjons frist" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaksjonen ble avvist." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Overfør token" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Prøv igjen" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Skru på ekspertmodus" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI har kommet" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI-polleter representerer stemmeaksjer i Uniswap-styring. Du kan stemme på hvert forslag selv eller delegere dine stemmer til en tredjepart." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} brent" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP-polletter er nødvendig. Når du har tilført likviditet til {0}-{1}-potten, kan du dele dine likviditetspolletter på denne siden." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Uavvisst UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Avgifter som ikke belastes" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Ubestemt" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Uventet feil. Kunne ikke estimere gass for byttet." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Uventet problem med estimering av gassen. Vær så snill, prøv på nytt." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap-styring" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs sine vilkår for bruk" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap er tilgjengelig om: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-styring er bare tilgjengelig i lag 1. Bytt nettverket til Ethereum Mainnet for å se forslag og stemme." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Ikke-velfungerende likviditetsmining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap-migrasjonskontrakt↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Ukjent kilde" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ukjent feil{0}. Prøv å øke glattoleransen. Merk: gebyr ved overføring og rebase -tokens er inkompatibelt med Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Lås opp stemmer" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Lås opp stemmegivning" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Låser opp stemmer" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Ustøttet aktiva" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Ikke støttede aktiva" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Uten navn" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Pakk opp" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Pakk ut <0/> til {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Oppdater delegasjon" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Oppdater liste" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Bruk Uniswap Labs API for å få raskere tilbud." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Bruker" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 er ikke tilgjengelig på lag 2. Bytt til lag 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2-likviditet" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} pris:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Vis påløpte gebyrer og analyser<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Se liste" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Utsikt på Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Se på Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Se transaksjonen på Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Stem" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Stem mot" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Stem på" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Stem mot forslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Stem mot forslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem mot forslag {proposalKey} med grunn \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Stem på forslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Stem på forslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem på forslag {proposalKey} med grunn \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Stem for å avstå fra forslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Stem for å avstå fra forslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Stem for å avstå fra forslag {proposalKey} med grunn \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Stemmegivningen avsluttet {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Avstemming slutter om {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Avstemningen starter ca {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Venter på bekreftelse" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Lommebokadresse eller ENS-navn" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Ukentlige belønninger" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Velkommen til team Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Når du hevder uten å trekke ut likviditeten din, er du igjen i miningpotten." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Når du trekker ut, vil kontrakten automatisk kreve at UNI er på dine vegne!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Når du trekker ut, hevdes jeg at du har fått likviditet fra miningpotten." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Trekk" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Trekk tilbake & få" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Trekk tilbake innskuddslikviditet" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Trekker tilbake {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Avsluttet UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Bryt" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Pakk <0/> til {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Feil nettverk" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Du har allerede et aktivt eller ventende forslag" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Du lager en pott" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Du er den første likviditetsleverandøren til denne Uniswap V3-potten. Likviditeten din vil migrere til gjeldende {0}-pris." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Du er den første likviditetsleverandøren." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Du kan enten stemme på hvert forslag selv eller delegere stemmene til en tredjepart." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Du kan nå handle {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Du har ikke nok stemmer til å sende inn et forslag" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Du har ikke likviditet i denne potten ennå." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Du kan vurdere å vente til nettverksavgiftene går ned for å fullføre denne transaksjonen." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Du må koble til en konto." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Du må gi Uniswap smartkontrakter tillatelse til å bruke din {0}. Du må bare gjøre dette en gang per pollett." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Du må ha {formattedProposalThreshold} stemmer for å sende inn et forslag" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Du bør kun sette likviditeten inn i Uniswap V3 til en pris du mener er korrekt. <0/>Hvis prisen virker feil kan du enten bytte prisen for å bevege deg på pris, eller vente til noen andre gjør det." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Du vil også samle inn gebyrer tjent fra denne posisjonen." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Du vil motta" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Din V2-likviditet" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Dine aktive V3-likviditetsposisjoner vil vises her." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Dine likviditetsinnskudd" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Din del av potten:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Din posisjon" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Posisjonen din har 0 likviditet, og tjener ikke avgifter." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Din stilling vil vises her." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Din posisjon vil bli 100 % sammensatt av {0} til denne prisen" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Posisjonen din vil være 100 % {0} for denne prisen." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Posisjonen din vil ikke tjene avgifter eller brukes i handler før markedsprisen beveger seg inn i ditt nivå." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Dine posisjoner" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Din sats" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Din totale polletter:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Transaksjonskostnadene vil bli mye høyere fordi det inkluderer gassen for å lage potten." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Transaksjonen kan være forkjørt" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Din transaksjon kan mislykkes" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Transaksjonen din vil endres hvis den venter mer enn denne tidsperioden." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Transaksjonen din vil bli gjenopprettet hvis prisendringene er vesentlig mer enn denne prosentandelen." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Dine transaksjoner vil vises her ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Ditt uavklarte UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "etter utglidning" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "bekreft" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "for {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "har sokker emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "her." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // eller ipfs: // eller ENS-navn" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minutter" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "via {0} pollett-liste" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importer token} other {Importer tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Egendefinerte poletter" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Innskutt" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Gebyr tjent:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} venter" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / uke" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP-pollettenes tilgjengelig" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Stemmer" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} symboler" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Pris:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Lagt til av bruker" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0} %" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% avgiftsnivå" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% basseng" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% velg" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} likviditetsmining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP-polletter" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} poletter" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token bridge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider} %" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "+ Tilbake til pottoversikt" - diff --git a/src/locales/pl-PL.po b/src/locales/pl-PL.po deleted file mode 100644 index 22649eab3b..0000000000 --- a/src/locales/pl-PL.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: pl_PL\n" -"Language-Team: Polish\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: pl\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Wyświetl w Eksploratorze)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(wyczyść wszystkie)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(edytować)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Usuń odbiorcę" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / tydzień" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Wszystkie wnioski" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/>Głosów" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Analiza konta i naliczone opłaty<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Aktualna cena: <1><2/> <3>{0} na {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Wskazówka: Usuwanie tokenów puli konwertuje Twoją pozycję z powrotem na podstawowe tokeny w bieżącym tempie, proporcjonalnie do Twojego udziału w puli. Naliczone opłaty są wykazywane w kwotach, które otrzymałeś." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Wskazówka: Wybierz działanie i opisz swoją propozycję dla społeczności. Propozycji nie można modyfikować po jej złożeniu, dlatego przed przesłaniem prosimy o sprawdzenie wszystkich informacji. Okres głosowania rozpocznie się natychmiast i trwa 7 dni. Aby zaproponować niestandardową akcję, <1>przeczytaj dokumentację ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Wskazówka: Użyj tego narzędzia, aby znaleźć pule v2, które nie pojawiają się automatycznie w interfejsie." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Wskazówka: Kiedy dodasz płynność, otrzymasz tokeny puli reprezentujące Twoją pozycję. Te tokeny automatycznie zarabiają opłaty proporcjonalne do Twojego udziału w puli, i mogą zostać umorzone w każdej chwili." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Odblokuj głos aby przygotować się do następnej propozycji." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Witamy w zespole Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Minimalny próg 0,25% całkowitej podaży UNI jest wymagany do składania ofert" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "O programie" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Zaakceptuj" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Konto" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktywne" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Dodaj" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Dodaj <0/> i <1/> do Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Dodaj Delegata +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Dodaj płynność" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Dodaj płynność V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Dodaj płynność." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Dodaj więcej płynności" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Dodaj {0} do Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Dodaj {0}-{1} płynność" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Dodaj płynność {0}/{1} V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Dodano {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adres nie posiada dostępnych włości" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Przeciwko" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Zezwalaj na migrację tokenu LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Pozwól na transakcje o wysokim wpływie cenowym i pominąć ekran potwierdzający. Używaj na własne ryzyko." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Zezwól protokołowi Uniswap na używanie {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Dozwolone" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Kwota" - -#: src/hooks/useSwapCallback.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." -msgstr "Wystąpił błąd podczas próby wykonania tej wymiany. Może być konieczne zwiększenie tolerancji na poślizg. Jeśli to nie zadziała, może występować niezgodność z tokenem, którym handlujesz. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Zatwierdź" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Zatwierdź token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Zatwierdź {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Zatwierdzone" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Zatwierdzanie" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Zatwierdzanie {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Most Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum jest w fazie beta i może wystąpić przestój. W czasie przestoju Twoja pozycja nie będzie generować opłat i nie będziesz w stanie usunąć płynności. <0>Czytaj więcej." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Jesteś pewien?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Jako członek społeczności Uniswap możesz żądać UNI do głosowania i zarządzania.<0/><1/><2>Dowiedz się więcej o UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Co najmniej {0} {1} i {2} {3} zostaną zwrócone do twojego portfela z powodu wybranego zakresu cen." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Interfejs API automatycznego routera" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Dostępne do wpłaty: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Najlepsze dla par egzotycznych." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Najlepsze dla większości par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Najlepsze dla stabilnych par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Najlepsze dla bardzo stabilnych par." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Najlepsza trasa cenowa kosztuje ~{formattedGasPriceString} w gazie." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Zablokowany adres" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Most" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Dodając płynność zarabiasz 0,3% wszystkich transakcji na tej parze proporcjonalnie do udziału w puli. Opłaty są dodawane do puli, naliczane w czasie rzeczywistym i mogą być pobierane poprzez wycofanie płynności." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Podłączając portfel, zgadzasz się na Warunki korzystania z usługi <0> i potwierdzasz, że przeczytałeś i zrozumiałeś Zastrzeżenie dotyczące protokołu <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Anulowany" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Zmiana" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Wykresy" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Sprawdź stan sieci" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Zapoznaj się z naszym przewodnikiem po wersji 3 LP i przewodnikami migracji." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Claim" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Roszczenie <0/> za {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Claim UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Claim UNI Token" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Odbierz nagrodę UNI za {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Opłaty pobierane" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Odbierz swoje tokeny UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Domniemana" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Zgłoszono UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Przejęte!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Roszczenie" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Twierdzenie UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Odzyskiwanie {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Wyczyść wszystko" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Wyczyść wszystko" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Zamknij" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Zamknięte" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Zbierz" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Zbierz jako WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Pobieraj opłaty" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Zbierz {0}/{1} opłat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Zebrane" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Zbieranie" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Pobieranie opłat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Pobieranie opłat spowoduje wypłatę obecnie dostępnych dla Ciebie opłat." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Potwierdź" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Potwierdź dostawę" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Potwierdź zamianę" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Potwierdź tę transakcję w swoim portfelu" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Potwierdź transakcję w portfelu" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Połącz portfel" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Połącz portfel" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Połącz się z portfelem, aby znaleźć pule" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Połącz się z portfelem, aby zobaczyć płynność V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Połącz się z portfelem, aby zobaczyć płynność." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Połączony z {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Skopiowano" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopiuj adres" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Utwórz Pulę i Zaopatrzenie" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Utwórz propozycję" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Utwórz parę" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Utwórz pulę" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Utwórz problem na GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Utwórz pulę i dodaj płynność {0}/{1} V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Utwórz pulę." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Utwórz pulę {0}/{1}" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Aktualna cena" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Aktualna cena {0}:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Ciemny schemat" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Pokonany" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Deleguj głosy" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Oddeleguj siłę głosu do {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegowane do:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegowanie głosów" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Wpłata" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Kwoty wpłat" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Depozyt UNI-V2 LP Tokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Depozyt płynności" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Wpłacaj tokeny do sieci {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Wpłać tokeny dostawcy płynności, aby otrzymać UNI, token zarządzania protokołem Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Zbywalna płynność:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Zdeponowane {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Depozyt z tytułu płynności" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Opis" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Szczegółowy" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Szczegóły" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Rozłącz" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Odrzuć" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumentacja" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Nie widzisz jednej z pozycji v2? <0>Importuj ją." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Zarobione tokeny UNI reprezentują udziały w głosowaniu w zarządzaniu Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Edytować" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Porównanie wydajności" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Wpisz procent" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Wprowadź odbiorcę" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Wprowadź prawidłowy procent poślizgu" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Wprowadź adres do uruchomienia UNI. Jeśli adres ma jakiekolwiek roszczenia UNI, zostanie on wysłany do niego po złożeniu." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Wprowadź kwotę" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Wprowadź poprawną lokalizację listy" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Wprowadź prawidłowy adres tokenu" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Wpisz kwotę {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Błąd" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Błąd połączenia" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Błąd połączenia. Spróbuj odświeżyć stronę." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Błąd importowania listy" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Oszacowanie może się różnić ze względu na ustawienia gazu w portfelu" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Szacowana opłata sieciowa" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Wykonany" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Tryb ekspercki" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Tryb ekspercki wyłącza monit potwierdzania transakcji i umożliwia transakcje o wysokim poślizgu, które często skutkują złymi stawkami i straconymi środkami." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Przedawniony" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Poznaj Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Nie udało się przełączyć sieci z interfejsu Uniswap. Aby korzystać z Uniswap na {0}, musisz zmienić sieć w swoim portfelu." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Poziom prowizji" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Poziom opłat" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Pobieranie najlepszej ceny..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Dla" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Dla każdej puli pokazanej poniżej, kliknij migruj, aby usunąć swoją płynność z Uniswap V2 i wpłacić ją do Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Od" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Od (maksymalnie)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Pełny zasięg" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Pozycje z pełnym zakresem mogą generować mniejsze opłaty niż pozycje skoncentrowane. . Dowiedz się więcej <0>tutaj ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Uzyskaj wsparcie na Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centrum pomocy" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Ukryć" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ukryj zamknięte pozycje" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Wpływ Wysokiej Ceny" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Jak ta aplikacja korzysta z interfejsów API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Rozumiem" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Jeśli kupisz token z tej listy, możesz nie być w stanie go odsprzedać." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importuj" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importuj listę" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importuj Pulę" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importuj pulę V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importuj na własne ryzyko" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "W zakresie" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Zyski lub straty z tytułu aktywów i zobowiązań finansowych przeznaczonych do obrotu, netto" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Ceny początkowe i udział w pule" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inicjowanie..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Dane wejściowe są szacowane. Sprzedawasz najwyżej <0>{0} {1} lub transakcja zostanie przywrócona." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Zainstaluj Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Niewystarczająca płynność na tę transakcję." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Niewystarczające saldo {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Ustawienia interfejsu" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Nieprawidłowa para" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Nieprawidłowa para." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Nieprawidłowa cena wprowadzona" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Wybrano nieprawidłowy zakres. Minimalna cena musi być niższa niż maksymalna cena." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Nieprawidłowy odbiorca" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Język" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Ucz się" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Dowiedz się, jak zapewnić płynność" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Ucz się więcej" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Prawo i prywatność" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Jasny motyw" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Płynność" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Brak danych dotyczących płynności." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Nagrody za płynność" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Dostawcy płynności otrzymują opłatę w wysokości 0,3 % od wszystkich transakcji proporcjonalnie do ich udziału w puli. Opłaty są dodawane do puli, naliczane w czasie rzeczywistym i mogą być pobierane poprzez wycofanie płynności." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listy" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Załadowano" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Ładowanie" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Zarządzaj" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Zarządzaj płynnością w puli nagród" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Zarządzaj listami tokenów" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Zarządzaj tą pulą." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maks." - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Cena maksymalna" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Cena maksymalna" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maks.:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksymalna wysłana" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migruj" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Przenieś płynność do V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migracja płynności V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migracja tokenów płynności z Uniswap V2 do Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migracja {0}/{1} płynność V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migracja" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Minimalna cena" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimalna cena" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Otrzymane minimum" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Brakujące zależności" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Więcej" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Opłata sieciowa" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Ostrzeżenie sieciowe" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Opłaty sieciowe przekraczają 50% kwoty swapu!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nowa pozycja" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Nie znaleziono płynności V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Brak aktywnych pul" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Brak danych" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Bez opisu." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Nie znaleziono płynności." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Nie znaleziono puli." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nie znaleziono propozycji." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nie znaleziono wyników." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Nie utworzono" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "POZA" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "NA" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "TYLKO WYKORZYSTUJ TEGO TRYBUNAŁU JEŚLI KOLEJ, JEŚLI KOLEJ." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Poza" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Na" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Gdy będziesz zadowolony z kursu, kliknij przycisk zaopatrzenia, aby przejrzeć." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Do głosowania kwalifikują się tylko głosy UNI, które zostały samodzielnie przekazane lub przekazane na inny adres przed blokiem {0}." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ups! Wystąpił nieznany błąd. Odśwież stronę lub odwiedź z innej przeglądarki lub urządzenia." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Brama optymizmu" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optymizm jest w fazie beta i może wystąpić przestój. Optymizm spodziewa się, że planowane przestoje w niedalekiej przyszłości zmodernizują sieć. W czasie przestoju Twoja pozycja nie będzie generować opłat i nie będziesz w stanie usunąć płynności. <0>Czytaj więcej." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optymistyczny Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Poza zasięgiem" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Wyjście jest szacowane. Jeśli cena zmieni się o ponad {0}%, Twoja transakcja zostanie przywrócona." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Wartość wyjściowa jest szacowana. Otrzymasz co najmniej <0>{0} {1} lub transakcja zostanie przywrócona." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Wyjście zostanie wysłane do <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Właściciel" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Uczestniczące grupy" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "W oczekiwaniu" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Potwierdź, że chcesz usunąć tę listę, wpisując USUŃ" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Połącz się z Ethereum warstwy 1" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Połącz się z odpowiednią siecią Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Proszę wpisać słowo \"{confirmWord}\", aby włączyć tryb eksperta." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Most wielokątny" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Skanowanie wielokątów" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Zbiór" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Znaleziono Pulę!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Współczynnik puli" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Stawka puli" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Zbiór tokenów pul nagród:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Połączone {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Przegląd puli" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Zapowiedź" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Cena" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Różnica cenowa:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Wpływ na cenę" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Wpływ cenowy za wysoki" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Cena zaktualizowana" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Zakres cen" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Cena" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Ceny i udział w pule" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Wniosek" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Przesłano propozycję" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Tytuł propozycji" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propozycje" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Tutaj pojawią się propozycje przesłane przez członków społeczności." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Proponowane działanie" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Wniosek" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Zastrzeżenie dotyczące protokołu" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "W kolejce" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Stawki" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Dowiedz się więcej o UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Przeczytaj więcej o zarządzaniu Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Dowiedz się więcej o zapewnieniu płynności" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Przeczytaj więcej o nieobsługiwanych zasobach" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Ostatnie transakcje" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Odbiorca" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Usuń" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Usuń <0/> i <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Usuń kwotę" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Usuń Delegata" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Usuń płynność" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Usuń listę" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Usuwanie {0} {1} i {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Usuwanie {0} {1} i{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Poproś o funkcje" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Powrót" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Wyszukaj nazwę lub wklej adres" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Wybierz parę" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Wybierz sieć" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Wybierz token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Wybierz token, aby znaleźć płynność v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Wybierz akcję" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Wybrany zakres" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Samego siebie" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Własny Delegat" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Ustaw zakres cenowy" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Ustaw początkową cenę" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Udział puli" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Udział w puli:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Show Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Pokaż zamknięte pozycje" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Prosty" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolerancja poślizgu" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Niektóre aktywa nie są dostępne za pośrednictwem tego interfejsu, ponieważ mogą nie działać prawidłowo z inteligentnymi kontraktami lub nie możemy pozwolić na handel ze względów prawnych." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Coś poszło nie tak" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Krok 1. Pobierz tokeny płynności UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Prześlij nową propozycję" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Składanie propozycji" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Wysyłanie głosu" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Udało się" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Sukces" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Dostawa" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Dostarczanie {0} {1} i {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Zamień" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Zamień <0/> na dokładnie <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Zamień mimo to" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Zamień dokładnie <0/> na <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Zamiana nie powiodła się: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Zamiana {0} {1} na {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Dziękujemy za bycie częścią społeczności Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "%, który zarobisz na opłatach." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Niezmiennik Uniswap x * y = k nie został spełniony przez zamianę. Zwykle oznacza to, że jeden z wymienianych tokenów ma niestandardowe zachowanie podczas transferu." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Aplikacja pobiera dane łańcucha bloków z hostowanej usługi The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Aplikacja pobiera dane w łańcuchu i konstruuje wywołania kontraktów za pomocą interfejsu API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Aplikacja pobiera optymalną trasę handlową z serwera Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Aplikacja rejestruje anonimowe statystyki użytkowania, aby z czasem ulegać poprawie." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Aplikacja bezpiecznie gromadzi Twój adres portfela i udostępnia go TRM Labs Inc. ze względu na ryzyko i zgodność." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Koszt wysłania tej transakcji to ponad połowa wartości kwoty wejściowej." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Aktualna ilość gazu szybkiego do wysłania transakcji na L1. Opłaty za gaz są uiszczane w rodzimej walucie Ethereum Ether (ETH) i denominowane w GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Szacowana różnica między wartościami USD kwot wejściowych i wyjściowych." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Nie można przenieść tokena wejściowego. Być może wystąpił problem z tokenem wejściowym." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Cena rynkowa znajduje się poza Twoim zakresem cenowym. Tylko depozyt pojedynczego aktywa." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Najnowszy numer bloku w tej sieci. Aktualizacja cen na każdym bloku." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Nie można przenieść tokenu wyjściowego. Może wystąpić problem z tokenem wyjściowym." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Nie można przenieść tokena wyjściowego. Może występować problem z tokenem wyjściowym. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Cena tej puli jest poza wybranym przez Ciebie zakresem. Twoja pozycja nie zarabia obecnie opłat." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Cena tej puli mieści się w wybranym przez Ciebie zasięgu. Twoja pozycja obecnie zarabia opłaty." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Współczynnik dodanych tokenów ustawi cenę tej puli." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Nie można wysłać transakcji, ponieważ upłynął termin. Sprawdź, czy termin transakcji nie jest zbyt krótki." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Brak danych o płynności." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Ta aplikacja korzysta z następujących interfejsów API innych firm:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Ta pula musi zostać zainicjowana, zanim będzie można dodać płynność. Aby zainicjować, wybierz cenę wywoławczą dla puli. Następnie wprowadź zakres cen płynności i kwotę depozytu. Opłaty za gaz będą wyższe niż zwykle ze względu na transakcję inicjalizacji." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Ta trasa optymalizuje całkowitą wydajność, biorąc pod uwagę podzielone trasy, wiele przeskoków i koszt gazu na każdym kroku." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "To narzędzie będzie bezpiecznie migrować Twoją płynność {0} do V3. Proces jest całkowicie pozbawiony zaufania dzięki" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ta transakcja nie powiedzie się z powodu ruchu cen. Spróbuj zwiększyć swoją tolerancję na poślizg. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ta transakcja nie powiedzie się ze względu na ruch cen lub opłatę za transfer. Spróbuj zwiększyć tolerancję na poślizg." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Wskazówka: Niestandardowe tokeny są przechowywane lokalnie w przeglądarce" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Do" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Co najmniej do" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token nie jest obsługiwany" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokeny" - -#: src/components/SearchModal/CurrencyList.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 baseny" - -#: src/components/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Całkowita wpłata" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Depozyty ogółem" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Szlak handlowy" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Ustawienia transakcji" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transakcja przesłana" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transakcja zakończona w" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Termin transakcji" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transakcja odrzucona." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Transfer tokena" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Spróbuj ponownie" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Włącz tryb eksperta" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI przybył" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Tokeny UNI reprezentują udziały z prawem głosu w zarządzaniu Uniswap. Możesz sam głosować na każdą propozycję lub przekazać swoje głosy stronie trzeciej." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Spalone" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Żetony UNI-V2 LP są wymagane. Po dodaniu płynności do puli {0}-{1} możesz wziąć udział w tokenach płynności na tej stronie." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Nieodebrane UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Nieodebrane opłaty" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Nieokreślony" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Niespodziewany błąd. Nie udało się oszacować gazu do wymiany." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Nieoczekiwany problem z szacowaniem gazu. Proszę spróbuj ponownie." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Zarządzanie uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Warunki korzystania z usługi Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap dostępny w: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Zarządzanie Uniswap jest dostępne tylko w warstwie 1. Przełącz swoją sieć na Ethereum Mainnet, aby wyświetlić propozycje i głosować." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Wydobycie płynności Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Umowa o migracji Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Nieznane źródło" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Nieznany błąd{0}. Spróbuj zwiększyć swoją tolerancję na poślizg. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Odblokuj głosy" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Odblokuj głosowanie" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Odblokowanie głosów" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Nieobsługiwany zasób" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Nieobsługiwane zasoby" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Nieuprawny" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Rozpakuj od <0/> do {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Zaktualizuj delegację" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Aktualizuj listę" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Skorzystaj z interfejsu API Uniswap Labs, aby uzyskać szybsze wyceny." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Użytkownik" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "Wersja 2 nie jest dostępna w warstwie 2. Przełącz się na warstwę 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 płynność" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Cena V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Zobacz naliczone opłaty i analizy<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Zobacz listę" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Zobacz na Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Zobacz w Eksploratorze" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Zobacz transakcję na Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Głosować" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Głosuj przeciwko" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Głosować na" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Głosuj przeciwko wnioskowi {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Głosuj przeciwko propozycji {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Głosuj przeciwko propozycji {proposalKey} z powodem \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Głosuj na propozycję {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Głosuj na propozycję {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Głosuj na propozycję {proposalKey} z powodem \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Głosuj za wstrzymaniem się od propozycji {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Głosuj za wstrzymaniem się od propozycji {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Zagłosuj za wstrzymaniem się od wniosku {proposalKey} z powodem „{0}”" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Głosowanie zakończyło się {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Głosowanie kończy się około {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Głosowanie zaczyna się około {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Oczekiwanie na potwierdzenie" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Adres portfela lub nazwa ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Tygodniowe Nagrody" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Witaj w zespole Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Kiedy żądasz bez wycofywania swojej płynności pozostaje w puli wydobywczej." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Po odstąpieniu od umowy automatycznie zażąda UNI w Twoim imieniu!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Kiedy wypłacisz Twoje konto UNI jest odebrane i twoja płynność jest usuwana z puli wydobywczej." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Wycofaj" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Wycofaj i włącz" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Wycofanie zdeponowanej płynności" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Wycofanie {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Wycofano UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Zawijanie" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Zawijaj od <0/> do {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Nieprawidłowa sieć" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Masz już aktywną lub oczekującą propozycję" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Tworzysz pulę" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Jesteś pierwszym dostawcą płynności dla tej puli Uniswap V3. Twoja płynność zostanie zmigrowana po bieżącej cenie {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Jesteś pierwszym dostawcą płynności." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Możesz samodzielnie głosować na każdy wniosek lub przekazać swoje głosy osobie trzeciej." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Możesz teraz handlować {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Nie masz wystarczającej liczby głosów, aby przesłać propozycję" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Nie masz jeszcze płynności w tej puli." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Możesz rozważyć poczekanie, aż opłaty sieciowe spadną, aby zakończyć tę transakcję." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Musisz połączyć konto." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Musisz przyznać Uniswap inteligentne kontrakty na korzystanie z twojego {0}. Musisz to zrobić tylko raz na token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Aby przesłać propozycję, musisz mieć {formattedProposalThreshold}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Powinieneś wpłacać płynność do Uniswap V3 tylko po cenie uznanej przez Ciebie za prawidłową. <0/>Jeśli cena wydaje się niepoprawna, możesz albo dokonać swapu, aby przenieść cenę lub poczekać na to, aby ktoś inny to zrobił." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Będziesz również pobierać opłaty zarobione na tej pozycji." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Otrzymasz" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Twoja płynność V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Twoje aktywne pozycje płynności V3 pojawią się tutaj." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Twoje depozyty płynności" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Twoja pula udostępniona:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Twoja pozycja" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Twoja pozycja ma 0 płynność i nie zarabia opłat." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Twoja pozycja pojawi się tutaj." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Twoja pozycja będzie w 100% złożona z {0} w tej cenie" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Twoja pozycja będzie w 100% {0} w tej cenie." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Twoja pozycja nie będzie zarabiana ani nie będzie używana w transakcjach, dopóki cena rynkowa nie wejdzie w Twój zakres." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Twoje pozycje" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Twój kurs" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Twoje łączne tokeny puli:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Twój koszt transakcji będzie znacznie wyższy, ponieważ zawiera gaz do utworzenia puli." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Twoja transakcja może być typu frontrun" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Twoja transakcja może się nie powieść" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Twoja transakcja zostanie przywrócona, jeśli trwa dłużej niż ten okres." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Twoja transakcja zostanie przywrócona, jeśli cena zmieni się niekorzystnie o więcej niż ten procent." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Twoje transakcje pojawią się tutaj..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Twój nieodebrany UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "po poślizgu" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "potwierdź" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "dla {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "ma emoji skarpetki" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "tutaj." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // lub ipfs: // lub nazwa ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuty" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "przez {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "przez {0} listy tokenów" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importuj token} other {Importuj tokeny}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> na <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} żetonów niestandardowych" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} zdeponowane" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "Zarobiono {0} opłat:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Oczekujące" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / tydzień" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} dostępnych tokenów LP UNI-V2" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Głosów" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} na {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokenów" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Cena {0} {1}:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Dodane przez użytkownika" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% poziom opłat" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% puli" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% wybierz" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "Górnictwo płynności {0}-{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} Żetony LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} tokenów" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} mostek tokenów" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} za {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "◆ Powrót do podsumowania pul" - diff --git a/src/locales/pt-BR.po b/src/locales/pt-BR.po deleted file mode 100644 index 2ce0be5bdd..0000000000 --- a/src/locales/pt-BR.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: pt_BR\n" -"Language-Team: Portuguese, Brazilian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: pt-BR\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Ver no Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(limpar tudo)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(editar)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Remover destinatário" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI/semana" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Todas as propostas" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Votos" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Análise de contas e taxas acumuladas<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Preço atual: <1> <2 /> <3>{0} por {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Dica: A remoção de tokens em lotes converte sua posição de volta a tokens secundários à taxa atual, proporcionalmente ao seu compartilhamento do lote. As taxas acumuladas estão incluídas nos valores que você receber." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Dica: Selecione uma ação e descreva sua proposta para a comunidade. A proposta não pode ser modificada após o envio, portanto, verifique todas as informações antes de enviar. O período de votação começará imediatamente e durará 7 dias. Para propor uma ação personalizada, <1> leia a documentação ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Dica: Use esta ferramenta para encontrar lotes V2 que não são exibidos automaticamente na interface." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Dica: Quando você adiciona liquidez, você recebe tokens em lotes que representam sua posição. Esses tokens têm taxas de rendimento automaticamente proporcionais ao seu compartilhamento do lote, e podem ser resgatados a qualquer momento." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Votação de desbloqueio para se preparar para a próxima proposta." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Seja bem-vindo à Equipe Unicórnio :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Um limite mínimo de 0,25% do fornecimento total da UNI é necessário para enviar propostas" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "SOBRE" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Aceitar" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Conta" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Ativa" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Adicionar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Adicione <0 /> e <1 /> ao Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Adicionar Delegado +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Adicionar Liquidez" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Adicionar Liquidez V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Adicione liquidez." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Adicione mais liquidez" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Adicione {0} ao Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Adicionar liquidez de {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Adicionar liquidez V3 de {0}/{1}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0} adicionados" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "O endereço tem não resgates disponíveis" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Contra" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Permitir a migração de tokens LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Permitir negociações de preço de alto impacto e ignorar a tela de confirmação. Use por sua conta e risco." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Permitir que o Protocolo Uniswap utilize seu {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Permitido" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Valor" - -#: src/hooks/useSwapCallback.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." -msgstr "Ocorreu um erro ao tentar executar esta troca. Pode ser necessário aumentar sua tolerância ao deslizamento. Se isso não funcionar, pode haver uma incompatibilidade com o token que você está negociando. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Aprovar" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Aprovar token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Aprovação {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Aprovado" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Aprovando" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Aprovando {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Ponte Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "O Arbitrum está na versão Beta e pode passar por um período de inatividade. Durante o tempo de inatividade, sua posição não receberá taxas e você não poderá remover a liquidez. <0> Leia mais." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Tem certeza?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Como membro da comunidade Uniswap, você pode resgatar UNI a serem utilizados para votação e governança.<0/><1/><2>Leia mais sobre as UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Pelo menos {0} {1} e {2} {3} serão reembolsados na sua carteira, devido à faixa de preços selecionada." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automático" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API Auto Router" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponível para depósito: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Melhor para pares exóticos." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Melhor para a maioria dos pares." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Melhor para pares estáveis." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Melhor para pares muito estáveis." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "A rota do melhor preço custa ~{formattedGasPriceString} no gás." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Endereço bloqueado" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Ponte" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Ao acrescentar liquidez, você ganha 0,3% de todas as negociações com esse par, proporcionalmente ao seu compartilhamento do lote. As taxas são adicionadas ao lote, são provisionadas em tempo real e podem ser resgatadas por meio de saques de sua liquidez." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Ao conectar uma carteira, você concorda com os Termos de Serviço <0>e reconhece que leu e entendeu a Isenção <1>Responsabilidade do Protocolodo Uniswap 2." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Cancelado" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Alterar" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Gráficos" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Verifique o status da rede" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Confira nosso passo-a-passo e o guia de migração da V3 do LP." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Resgatar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Reivindicar <0 /> para {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Resgatar UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Resgatar Tokens UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Reivindicar recompensa UNI por {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Resgatar taxas" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Resgatar seus tokens UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Resgatadas" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI Resgatadas!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Reivindicado!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Resgatando" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Resgatando {0} UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Reivindicando {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Limpar Tudo" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Limpar tudo" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Fechar" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Fechado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Coletar" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Coletar como WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Coletar taxas" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Recolha {0}/{1} taxas" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Coletado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Coletando" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Coletando taxas" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "A coleta das taxas gera um saque das taxas disponíveis atualmente para você." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Confirmar" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Confirmar fornecimento" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Confirmar a conversão" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Confirmar esta operação na sua carteira" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Confirme a transação na carteira" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Conectar-se à carteira" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Conectar-se a uma carteira" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Conectar-se a uma carteira para localizar lotes" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Conectar-se a uma carteira para ver sua Liquidez V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Conectar-se a uma carteira para ver sua liquidez." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Conectado a {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copiado" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copiar endereço" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Criar Lote e Fornecimento" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Criar Proposta" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Criar um par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Criar um lote" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Abrir um chamado no GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Criar um lote e adicionar liquidez V3 de {0}/{1}" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Criar lote." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Criar {0}/{1} piscina V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Preço atual" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Preço {0} atual:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema escuro" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Derrotado" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegar votos" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegar poder de voto para {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegado para:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegando votos" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Depósito" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Valores do depósito" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Depositar tokens LP UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Liquidez do depósito" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Depositar tokens na rede {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Deposite sua tokens de Fornecedores com Liquidez para receber UNI, o token de governança do Protocolo Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Liquidez depositada:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "{0} UNI-V2 depositados" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Liquidez dos depósitos" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Descrição:" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detalhado" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detalhes" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Desconectar" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discordar" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Dispensar" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Docs" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Não está vendo uma de suas posições V2? <0>Importe-a." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Os tokens UNI recebidos representam capital votante na governança do Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Editar" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Comparação de Eficiência" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Digite um percentual" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Digite um destinatário" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Digite um percentual de discrepância válido" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Digite um endereço para solicitar um resgate de UNI. Se o endereço tiver qualquer UNI resgatável, ele será enviado para os endereços mediante confirmação." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Digite um valor" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Digite uma localização válida para a lista" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Digite um endereço válido para os tokens" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Insira o valor {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Erro" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Erro de conexão" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Erro de conexão. Tente atualizar a página." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Erro ao importar a lista" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "A estimativa pode ser diferente devido às configurações de gás da carteira" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Taxa de rede estimada" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Executado" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Modo especialista" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "O modo Expert desativa o prompt de confirmação da operação e permite negociações com altas taxas de discrepância, que muitas vezes resultam em taxas ruins e perda de fundos." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Expirado" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Explore o Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Falha ao alternar redes da interface Uniswap. Para usar o Uniswap em {0}, você deve alterar a rede em sua carteira." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Nível das taxas" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Nível de taxa" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Buscando o melhor preço ..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Para" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Para cada lote exibido abaixo, clique em migrar para remover sua liquidez do Uniswap V2 e depositá-la it no Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "De" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "De (no máximo)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Gama completa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "As posições completas podem render menos taxas do que as posições concentradas. Saiba mais <0> aqui ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Obtenha suporte em caso de Discordância" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centro de ajuda" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Esconder" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ocultar posições fechadas" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Impacto de preços altos" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Como este aplicativo usa APIs" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Entendi" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Se você comprar um token desta lista, pode não ser possível vendê-lo novamente." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importar" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importar Lista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importar Lote" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importar Lote V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importar por sua conta e risco" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Na faixa" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Aumentar a liquidez" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Preços iniciais e compartilhamento do lote" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inicializando..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Os valores lançados são estimativas. Você deve vender no máximo <0>{0} {1} ou a operação será revertida." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Instalar o Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Liquidez insuficiente para esta negociação." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo insuficiente {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Configurações de Interface" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Par inválido" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Par inválido." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Preço lançado inválido" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Faixa selecionada inválida. O preço mín deve ser inferior ao preço máx." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Destinatário inválido" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Língua" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Aprender" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Aprenda sobre como fornecer liquidez" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Saber mais" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Legal e privacidade" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema claro" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquidez" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Dados de liquidez não disponíveis." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Recompensas por liquidez de fornecedores" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Fornecedores com liquidez geram uma taxa de 0,3% em todas as negociações, proporcionalmente ao seu compartilhamento do lote. As taxas são adicionadas ao lote, são provisionadas em tempo real e podem ser resgatadas por meio de saques de sua liquidez." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listas" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Carregadas" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Carregando" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gerenciar" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gerenciar a liquidez no Lote de Recompensas" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Gerenciar listas de tokens" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Gerenciar este lote." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Máx" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Preço Máx" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Preço Máx" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Máx:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Máximo enviado" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Cardápio" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrar" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrar Liquidez para V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrar Liquidez V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrar seus tokens de liquidez do Uniswap V2 para o Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrar {0}/{1} liquidez para V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrando" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Preço Mín" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Preço Mín" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Mín:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Mínimo recebido" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependências ausentes" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mais" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Taxa de rede" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Aviso de rede" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "As taxas de rede excedem 50% do valor da troca!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nova Posição" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Nenhuma liquidez V2 encontrada." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Nenhum lote ativo" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Sem dados" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Sem descrição." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Nenhuma liquidez encontrada." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Nenhum lote encontrado." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nenhuma proposta encontrada." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nenhum resultado encontrado." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Não criado" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "DESLIGADO" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "SOBRE" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "USE ESTE MODO SOMENTE SE TIVER CERTEZA DO QUE ESTÁ FAZENDO." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Desligado" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Ligado" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Quando estiver satisfeito com a taxa, clique em fornecimento para analisar." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Somente votos de UNI autodelegados ou delegados para outro endereço antes do bloqueio {0} serão aprovados para votação." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Opa! Ocorreu um erro desconhecido. Atualize a página ou visite-a em outro navegador ou dispositivo." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Portal do Otimismo" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "O otimismo está em Beta e pode passar por um período de inatividade. O otimismo espera um tempo de inatividade planejado para atualizar a rede em um futuro próximo. Durante o tempo de inatividade, sua posição não receberá taxas e você não poderá remover a liquidez. <0>Leia mais." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan otimista" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Fora da faixa" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Os resultados são estimativas. Se o preço for alterado em de {0}%, sua operação será revertida." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Os resultados são estimativas. Você receberá pelo menos <0>{0} {1} ou a operação será revertida." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "O resultado será enviado para <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Proprietário" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Lotes participantes" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Pendente" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Confirme que deseja remover esta lista digitando REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Conecte-se à Camada 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Conecte-se à Ethereum correta." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Digite a palavra \"{confirmWord}\" para habilitar o modo Expert." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Ponte Poligonal" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Lote" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Lote encontrado!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Taxa do lote" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Taxa do lote" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Tokens em lotes no lote de recompensas:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Em lote {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Visão geral dos lotes" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Antevisão" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Preço" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Diferença de Preço:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impacto do preço" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Impacto do preço muito alto" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Preço atualizado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Intervalo de preço" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Preço:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Compartilhamento de preços e lotes" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Proposta Enviada" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Título da Proposta" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propostas" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Propostas apresentadas por membros da comunidade serão exibidas aqui." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Ação Proposta" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Proponente" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Isenção de responsabilidade do protocolo" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Na fila" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Taxas" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Leia mais sobre as UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Ler mais sobre governança no Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Ler mais sobre geração de liquidez" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Ler mais sobre ativos incompatíveis" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Operações recentes" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Destinatário" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Remover" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Remova <0 /> e <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Remover Valor" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Remover Delegado" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Remover Liquidez" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Remover lista" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Removendo {0} {1} e {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Removendo {0} {1} e{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Solicitar recursos" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Voltar" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Pesquise o nome ou cole o endereço" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Selecione Par" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Selecione uma rede" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Selecione um token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Selecione um token para calcular sua liquidez V2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Selecione uma ação" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Faixa selecionada" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Auto" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Autodelegação" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Definir faixa de preços" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Definir preço inicial" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Compartilhamento de Lotes" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Compartilhamento do Lote:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Exibir Portas" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Mostrar posições fechadas" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Simples" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolerância a discrepâncias" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Alguns ativos não estão disponíveis nesta interface, porque não funcionam bem com os contrato inteligentes, ou não foi possível permitir as negociações por motivos legais." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Ocorreu um erro" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Etapa 1. Obtenha Tokens de Liquidez UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Envie uma nova proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Enviando proposta" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Enviando Voto" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Bem sucedido" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Sucesso" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Fornecimento" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Fornecendo {0} {1} e {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Conversão" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Troque <0 /> exatamente por <1 />" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Converter assim mesmo" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Troque exatamente <0 /> por <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "A troca falhou: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Convertendo {0} {1} para {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Obrigado por fazer parte da comunidade Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "A% que você receberá em taxas." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "A invariante x*y=k do Uniswap não foi observada na conversão. Isto geralmente significa que um dos tokens que você está convertendo tem um comportamento de transferência personalizado." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "O aplicativo busca dados de blockchain do serviço hospedado do Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "O aplicativo busca dados na cadeia e constrói chamadas de contrato com uma API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "O aplicativo busca a rota comercial ideal de um servidor Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "O aplicativo registra estatísticas de uso anônimas para melhorar ao longo do tempo." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "O aplicativo coleta com segurança o endereço da sua carteira e o compartilha com a TRM Labs Inc. por motivos de risco e conformidade." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "O custo de envio desta transação é mais da metade do valor do valor de entrada." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "A quantidade atual de gás rápido para enviar uma transação em L1. As taxas de gás são pagas na moeda nativa do Ethereum, éter (ETH) e denominadas em GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "A diferença estimada entre os valores em dólares dos valores de entrada e saída." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "O token lançado não pode ser transferido. Pode haver um problema com o token lançado." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "O preço de mercado está fora da faixa de preço especificada. Somente para depósito de um único ativo." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "O número de bloqueio mais recente nesta rede. Preços atualizados em cada bloco." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "O token resultante não pode ser transferido. Pode haver um problema com o token resultante." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "O token de saída não pode ser transferido. Pode haver um problema com o token de saída. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "O preço desse lote está fora da faixa selecionada. Sua posição atual não está recebendo taxas." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "O preço deste lote está dento da faixa selecionada. Sua posição atual está recebendo taxas." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "A proporção de tokens que você adicionar determina o preço deste lote." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "A operação não pode ser enviada após a data-limite. Confirme se a data-limite da operação não é cedo demais." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Não há dados de liquidez." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Este aplicativo usa as seguintes APIs de terceiros:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Este pool deve ser inicializado antes que você possa adicionar liquidez. Para inicializar, selecione um preço inicial para o pool. Em seguida, insira sua faixa de preço de liquidez e o valor do depósito. As taxas de gás serão mais altas do que o normal devido à transação de inicialização." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Essa rota otimiza sua produção total, considerando rotas divididas, vários saltos e o custo do gás de cada etapa." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Esta ferramenta fará a migração da sua liquidez {0} em segurança para V3. O processo não é inteiramente confiável, devido ao" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Esta transação não terá sucesso devido ao movimento do preço. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Esta operação não será realizada, devido às alterações nos preços ou à taxa de transferência. Tente aumentar sua tolerância a discrepâncias." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Dica: Tokens personalizados são armazenados localmente no seu navegador" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Para" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Para (pelo menos)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token não suportado" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total depositado" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Total dos depósitos" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Rota comercial" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Configurações das operações" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Operação enviada" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transação concluída em" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Data-limite da operação" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transação rejeitada." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token de transferência" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Tente novamente" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Ativar o Modo Expert" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "A UNI chegou" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Os tokens de UNI representam capital votante na governança do Uniswap. Você mesmo pode votar em cada proposta ou pode delegar seu voto a terceiros." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} queimados" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Tokens LP UNI-V2 são necessários. Uma vez adicionada a liquidez ao lote {0}-{1}, você poderá negociar seus tokens de liquidez nesta página." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI não resgatadas" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Taxas não resgatadas" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Indeterminado" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Erro inesperado. Não foi possível estimar o gás para a troca." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema inesperado com a estimativa do gás. Por favor, tente novamente." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Governança do Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Termos de serviço do Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponível em: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "A governança Uniswap está disponível apenas na camada 1. Alterne sua rede para Ethereum Mainnet para visualizar propostas e votar." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Mineração de liquidez no Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Contrato de migração no Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Fonte desconhecida" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Erro desconhecido{0}. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Desbloquear votos" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Desbloquear votação" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Desbloqueando votos" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Ativo incompatível" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Ativos incompatíveis" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Sem título" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Desacobertar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Desembrulhe <0/> a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Atualizar Delegação" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Atualizar lista" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Use a API Uniswap Labs para obter orçamentos mais rápidos." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Usuário" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 não está disponível na camada 2. Alterne para a camada 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Liquidez V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Preço V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Visualizar análises e taxas acumuladas<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Ver a lista" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Ver no Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Visualizar no Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Visualizar a operação no Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Votar" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Votar contra" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Votar a favor" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Vote contra a proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Votar contra a proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote contra a proposta {proposalKey} com o motivo \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Votar na proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Votar na proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote na proposta {proposalKey} com motivo \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Vote para se abster na proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Vote para se abster na proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote para se abster na proposta {proposalKey} com razão \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Votação encerrada {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "A votação se encerra aproximadamente às {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "A votação começa aproximadamente {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Aguardando a confirmação" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Endereço da carteira ou nome ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Recompensas Semanais" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Seja bem-vindo à equipe Unicórnio :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Quando você resgata sem sacar, sua liquidez permanece no lote de mineração." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Quando você sacar, o contrato resgata automaticamente as UNI que estiverem em seu nome!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Quando você sacar, suas UNI serão resgatadas e sua liquidez será removida do lote de mineração." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Sacar" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Sacar e Reivindicar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Sacar liquidez depositada" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Sacar {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Sacou UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Cobrir" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Wrap <0/> a {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Rede incorreta" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Você já tem uma proposta ativa ou pendente" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Você está abrindo um novo lote" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Você é o primeiro fornecedor com liquidez neste lote do Uniswap V3. Sua liquidez será migrada ao preço atual de {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Você é o primeiro fornecedor com liquidez." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Você mesmo pode votar em cada proposta ou delegar seu voto para um terceiro." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Agora você pode negociar {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Você não tem votos suficientes para enviar uma proposta" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Você ainda não tem liquidez neste lote." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Você pode considerar esperar até que as taxas de rede diminuam para concluir esta transação." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "É preciso conectar-se a uma conta." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "É preciso conceder a permissão ao recurso de contratos inteligentes do Uniswap para que possa utilizar seu {0}. Basta efetuar a operação uma vez para cada token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Você deve ter {formattedProposalThreshold} votos para enviar uma proposta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "A liquidez deve ser depositada apenas no Uniswap V3 ao preço que você julgar correto. <0/>Se o preço parecer incorreto, você pode fazer uma conversão para alterar o preço ou aguardar até que outra pessoa o faça." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Você também receberá as taxas auferidas nessa posição." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Você receberá" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Sua liquidez V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Suas posições de liquidez V3 ativas aparecerão aqui." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Seus depósitos de liquidez" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Seu compartilhamento de lotes:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Sua posição" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Sua posição tem 0 de liquidez e não está recebendo taxas." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Sua posição aparecerá aqui." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Sua posição será 100% composta de {0} com esse preço" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Sua posição será 100% de {0} com esse preço." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Sua posição não receberá taxas nem será utilizada em negociações até que o preço de mercado mude na sua faixa." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Suas posições" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Sua taxa" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Seu total de tokens em lote:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "O custo da sua operação será muito mais alto porque inclui os insumos para criação do lote." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Sua operação pode ser de front-running" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Pode ocorrer uma falha na sua operação" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Sua operação será revertida se estiver pendente há mais tempo do que o previsto." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Sua operação será revertida se o preço sofrer alteração desfavorável acima deste percentual." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Suas operações serão exibidas aqui..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Suas UNI não resgatadas" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "após derrapagem" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "confirmar" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "para {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "Gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "tem emoji de meias" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "aqui." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // ou ipfs: // ou nome ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "Minutos" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "por meio de {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "por meio da lista de tokens {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Import token} other {Import tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> por <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Tokens Personalizados" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Depositados" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Taxas Auferidas:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Pendentes" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI/semana" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} tokens UNI-V2 LP disponíveis" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} votos" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} por {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Preço de {0} {1}:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Adicionado pelo usuário" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Nível de taxa de {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% pool" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% selecionar" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "Mineração de liquidez de {0}-{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "LP NFT de {0}/{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "Tokens LP de {0}/{1}" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} tokens" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "Ponte {label}" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} por {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "Voltar à Visão Geral dos Lotes" - diff --git a/src/locales/pt-PT.po b/src/locales/pt-PT.po deleted file mode 100644 index d101871909..0000000000 --- a/src/locales/pt-PT.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: pt_PT\n" -"Language-Team: Portuguese\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: pt-PT\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Ver no Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(limpar tudo)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(editar)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Remover destinatário" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / semana" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Todas as propostas" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Votos" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Análise da conta e comissões acumuladas<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Preço atual: <1> <2 /> <3>{0} por {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Dica: Remover tokens de pool converte a sua posição em tokens subjacentes à taxa atual, proporcional à sua participação na pool. As comissões acumuladas estão incluídas no valor que recebe." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Dica: Selecione uma ação e descreva sua proposta para a comunidade. A proposta não pode ser modificada após o envio, portanto, verifique todas as informações antes de enviar. O período de votação começará imediatamente e durará 7 dias. Para propor uma ação personalizada, <1> leia a documentação ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Dica: Use esta ferramenta para encontrar pools v2 que não aparecem automaticamente na interface." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Dica: Quando adicionar liquidez, receberá tokens de pool que representam a sua posição. Estes tokens ganham automaticamente comissões proporcionais à sua parcela da pool, e podem ser resgatados a qualquer momento." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Desbloqueie a votação para se preparar para a próxima proposta." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Bem-vindo à equipa Unicórnio :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Um limite mínimo de 0,25% do fornecimento total da UNI é necessário para enviar propostas" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Sobre" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Aceitar" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Conta" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Ativo" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Adicionar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Adicione <0 /> e <1 /> ao Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Adicionar Delegado +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Adicionar Liquidez" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Adicionar Liquidez V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Adicione liquidez." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Adicione mais liquidez" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Adicionar {0} à Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Adicionar {0}-{1} de liquidez" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Adicionar {0}/{1} de liquidez V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Adicionado {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "O endereço não tem reivindicação disponível" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Contra" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Permitir migração de token LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Permitir negociações de alto impacto nos preços e ignorar o ecrã de confirmação. Use por sua conta e risco." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Permitir que o Protocolo Uniswap use o seu {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Permitido" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Quantia" - -#: src/hooks/useSwapCallback.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." -msgstr "Ocorreu um erro ao tentar executar esta troca. Pode ser necessário aumentar sua tolerância ao deslizamento. Se isso não funcionar, pode haver uma incompatibilidade com o token que você está negociando. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Aprovar" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Aprovar token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Aprovar {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Aprovado" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "A aprovar" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "A aprovar {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Ponte Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "O Arbitrum está na versão Beta e pode passar por um período de inatividade. Durante o tempo de inatividade, sua posição não receberá taxas e você não poderá remover a liquidez. <0> Leia mais." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Tem certeza?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Como membro da comunidade Uniswap, você pode reivindicar UNI para ser usada para votos e governança.<0/><1/><2>Leia mais sobre UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Pelo menos {0} {1} e {2} {3} serão reembolsados para a sua carteira devido à faixa de preço selecionada." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automático" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API Auto Router" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponível para depositar: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Melhor para pares exóticos." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Melhor para a maioria dos pares." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Melhor para pares estáveis." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Melhor para pares muito estáveis." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "A rota do melhor preço custa ~{formattedGasPriceString} no gás." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Endereço bloqueado" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Ponte" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Ao adicionar liquidez, você ganhará 0,3% de todas as negociações neste par proporcional à sua participação na pool. As comissões são adicionadas à pool, acumulam em tempo real e podem ser reivindicadas retirando a sua liquidez." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Ao conectar uma carteira, você concorda com os Termos de Serviço <0>e reconhece que leu e entendeu a Isenção <1>Responsabilidade do Protocolodo Uniswap 2." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Cancelado" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Alterar" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Tabelas" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Verifique o status da rede" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Consulte os nossos guias passo-a-passo v3 LP e guias de migração." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Reivindicar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Reivindicar <0 /> para {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Reivindicar UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Reivindicar token UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Reivindicar recompensa UNI por {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Reivindicar comissões" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Reivindicar os seus tokens UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Reivindicado" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI reivindicado!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Reivindicado!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "A reivindicar" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "A reivindicar UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "A reivindicar {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Limpar Tudo" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Limpar tudo" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Fechar" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Fechado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Recolher" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Recolher como WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Recolher comissões" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Recolha {0}/{1} taxas" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Recolhido" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "A recolher" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "A recolher comissões" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "A recolha de comissões irá retirar para si as comissões disponíveis atualmente." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Confirmar" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Confirmar fornecimento" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Confirmar troca" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Confirmar esta transação na sua carteira" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Confirme a transação na carteira" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Ligar Carteira" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Ligar uma carteira" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Ligar a uma carteira para encontrar pools" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Ligar a uma carteira para ver a sua liquidez V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Ligar a uma carteira para ver sua liquidez." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Ligado com {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copiado" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copiar Endereço" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Criar Pool e Oferta" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Criar Proposta" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Criar um par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Criar uma pool" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Criar um problema no GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Criar pool e adicionar {0}/{1} liquidez V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Criar pool." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Criar {0}/{1} piscina V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Preço atual" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Preço atual {0}:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema escuro" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Derrotado" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegar votos" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegar poder de voto para {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegado a" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "A delegar votos" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Depósito" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Depositar montantes" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Depositar Tokens UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Depositar liquidez" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Depositar tokens na rede {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Deposite os seus tokens de Fornecedor de Liquidez para receber UNI, o token de governança do protocolo Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Liquidez depositada:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Depositado {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "A Depositar Liquidez" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Descrição" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detalhada" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detalhes" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Desligar" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Descartar" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documentação" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Não vê uma das suas posições v2? <0>Importar." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Os tokens UNI ganhos representam ações de voto na governação da Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Editar" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Comparação de Eficiência" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Insira uma percentagem" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Insira um destinatário" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Insira uma percentagem de deslizamento válida" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Insira um endereço para acionar uma reivindicação UNI. Se o endereço tiver alguma UNI reivindicável, esta será enviada aos mesmos aquando do envio." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Inserir um montante" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Insira um local de lista válido" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Insira um endereço de token válido" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Insira o valor {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Erro" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Erro ao ligar" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Erro ao ligar. Tente atualizar a página." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Erro ao importar a lista" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "A estimativa pode ser diferente devido às configurações de gás da carteira" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Taxa de rede estimada" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Executado" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Modo especialista" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "O modo Especialista desativa o pedido de confirmação de transação e permite negociações de deslizamento elevado que muitas vezes resultam em taxas más e perda de fundos." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Expirado" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Explore o Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Falha ao alternar redes da interface Uniswap. Para usar o Uniswap em {0}, você deve alterar a rede em sua carteira." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Escalão gratuíto" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Nível de taxa" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Buscando o melhor preço ..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Para" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Para cada pool apresentada abaixo, clique em migrar para remover a sua liquidez do Uniswap V2 e depositá-la no Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "De" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "De (no máximo)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Gama completa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "As posições completas podem render menos taxas do que as posições concentradas. Saiba mais <0> aqui ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Obtenha suporte no Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centro de ajuda" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Esconder" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ocultar posições fechadas" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Impacto de preço elevado" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Como este aplicativo usa APIs" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Eu compreendo" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Se comprar um token desta lista, pode não conseguir vendê-lo de volta." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importar" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importar Lista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importar Pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importar pool V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importar por sua conta e risco" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Dentro do intervalo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Aumentar Liquidez" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Preços iniciais e parcela da pool" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "A inicializar..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "O valor inserido é estimado. Irá vender no máximo <0>{0} {1} ou a transação será revertida." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Instalar Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Liquidez insuficiente para esta troca." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insuficiente" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Configurações de Interface" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Par inválido" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Par inválido." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Entrada de preço inválida" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Intervalo selecionado inválido. O preço mínimo deve ser inferior ao preço máximo." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Destinatário inválido" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Língua" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Aprender" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Aprenda sobre como fornecer liquidez" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Saber mais" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Legal e privacidade" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema claro" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Liquidez" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Dados de liquidez não disponíveis." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Recompensas do fornecedor de liquidez" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Os fornecedores de liquidez ganham uma taxa de 0,3% em todas as trocas, proporcional à sua participação na pool. As comissões são adicionadas à pool, acumulam em tempo real e podem ser reivindicadas retirando a sua liquidez." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listas" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Carregado" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "A carregar" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gerir" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gerir Liquidez na Pool de Recompensas" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Gerir listas de tokens" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Gerir esta pool." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Máximo" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Preço Máximo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Preço máximo" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Máx:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Máximo enviado" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Cardápio" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrar" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrar Liquidez para V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrar Liquidez V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migre os seus tokens de liquidez do Uniswap V2 para Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrar {0}/{1} liquidez para V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "A migrar" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Preço Mínimo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Preço mínimo" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Mín:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Mínimo recebido" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependências ausentes" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mais" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Taxa de rede" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Aviso de rede" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "As taxas de rede excedem 50% do valor da troca!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nova Posição" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Nenhuma liquidez V2 encontrada." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Não existem pools ativas" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Sem dados" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Sem descrição." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Nenhuma liquidez encontrada." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Nenhuma pool encontrada." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nenhuma proposta encontrada." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nenhum resultado encontrado." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Não criado" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "DESLIGADO" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "LIGADO" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "USE ESTE MODO APENAS SE SOUBER O QUE ESTÁ A FAZER." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Desligado" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Ligado" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Quando estiver satisfeito com a taxa, clique em fornecer para rever." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Apenas os votos UNI que foram auto delegados ou delegados em outro endereço antes do bloco {0} são elegíveis para votação." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ups! Ocorreu um erro desconhecido. Por favor, atualize a página, ou visite a partir de outro navegador ou dispositivo." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Portal do Otimismo" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "O otimismo está em Beta e pode passar por um período de inatividade. O otimismo espera um tempo de inatividade planejado para atualizar a rede em um futuro próximo. Durante o tempo de inatividade, sua posição não receberá taxas e você não poderá remover a liquidez. <0>Leia mais." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan otimista" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Fora do intervalo" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "A saída é estimada. Se o preço mudar em mais de {0}% a sua transação será revertida." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "A saída é estimada. Irá receber pelo menos <0>{0} {1} ou a transação será revertida." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "A saída será enviada para <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Proprietário" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Pools participantes" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Pendente" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Confirme que deseja remover esta lista digitando REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Conecte-se à Camada 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Por favor, ligue-se à rede Ethereum apropriada." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Por favor, digite a palavra \"{confirmWord}\" para ativar o modo de especialista." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Ponte Poligonal" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool encontrada!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Taxa da Pool" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Taxa da pool" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Tokens da pool na pool de recompensas:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Na pool {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Visão Geral de Pools" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Antevisão" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Preço" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Diferença de Preço:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impacto de preço" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Impacto nos preços muito alto" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Preço Atualizado" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Intervalo de preço" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Preço:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Preços e participação na pool" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Proposta Enviada" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Título da Proposta" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propostas" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "As propostas apresentadas por membros da comunidade aparecerão aqui." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Ação Proposta" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Propositor" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Isenção de responsabilidade do protocolo" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Na fila" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Taxas" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Leia mais sobre a UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Leia mais sobre a governança Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Leia mais sobre o fornecimento de liquidez" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Leia mais sobre ativos não suportados" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Transações recentes" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Destinatário" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Remover" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Remova <0 /> e <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Remover Quantia" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Remover Delegar" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Remover Liquidez" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Remover lista" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "A remover {0} {1} e {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Removendo {0} {1} e{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Solicitar recursos" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Voltar" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Pesquisar nome ou colar endereço" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Selecione Par" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Selecione uma rede" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Selecione um token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Selecione um token para encontrar sua liquidez v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Selecione uma ação" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Intervalo Selecionado" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Auto" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Auto Delegar" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Definir Intervalo de Preço" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Definir Preço Inicial" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Parcela da Pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Parcela da Pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Apresentar Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Mostrar posições fechadas" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Simples" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Tolerância de Deslizamento" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Alguns ativos não estão disponíveis através desta interface porque podem não funcionar bem com os contratos inteligentes ou não podemos permitir a transação por razões legais." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Ocorreu um problema" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Passo 1. Obtenha tokens de Liquidez UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Envie uma nova proposta" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Enviando proposta" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "A Enviar Voto" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Bem sucedido" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Sucesso" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Fornecer" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "A fornecer {0} {1} e {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Trocar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Troque <0 /> exatamente por <1 />" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Trocar mesmo assim" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Troque exatamente <0 /> por <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "A troca falhou: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "A Trocar {0} {1} por {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Obrigado por fazer parte da comunidade Uniswap <0 />" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "A% que você receberá em taxas." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "O invariante Uniswap x * y = k não foi satisfeito pela troca. Isso geralmente significa que um dos tokens que está a trocar incorpora um comportamento personalizado aquando da transferência." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "O aplicativo busca dados de blockchain do serviço hospedado do Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "O aplicativo busca dados na cadeia e constrói chamadas de contrato com uma API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "O aplicativo busca a rota comercial ideal de um servidor Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "O aplicativo registra estatísticas de uso anônimas para melhorar ao longo do tempo." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "O aplicativo coleta com segurança o endereço da sua carteira e o compartilha com a TRM Labs Inc. por motivos de risco e conformidade." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "O custo de envio desta transação é mais da metade do valor do valor de entrada." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "A quantidade atual de gás rápido para enviar uma transação em L1. As taxas de gás são pagas na moeda nativa do Ethereum, éter (ETH) e denominadas em GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "A diferença estimada entre os valores em dólares dos valores de entrada e saída." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "O token de entrada não pode ser transferido. Pode haver um problema com o token de entrada." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "O preço de mercado está fora do seu intervalo de preços especificado. Apenas depósito de ativo único." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "O número de bloqueio mais recente nesta rede. Preços atualizados em cada bloco." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "O token de saída não pode ser transferido. Pode haver um problema com o token de saída." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "O token de saída não pode ser transferido. Pode haver um problema com o token de saída. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "O preço desta pool está fora do intervalo selecionado. A sua posição não está atualmente a ganhar comissões." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "O preço desta pool está dentro do seu intervalo selecionado. A sua posição está a ganhar comissões." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "A proporção de tokens que adicionar irá definir o preço desta pool." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "A transação não pôde ser enviada porque o prazo expirou. Verifique se o prazo da transação não é muito reduzido." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Não há dados de liquidez." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Este aplicativo usa as seguintes APIs de terceiros:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Este pool deve ser inicializado antes que você possa adicionar liquidez. Para inicializar, selecione um preço inicial para o pool. Em seguida, insira sua faixa de preço de liquidez e o valor do depósito. As taxas de gás serão mais altas do que o normal devido à transação de inicialização." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Esta rota otimiza sua produção total, considerando rotas divididas, vários saltos e o custo do gás de cada etapa." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Esta ferramenta migrará com segurança a sua liquidez {0} para V3. O processo é completamente autónomo graças à" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Esta transação não terá sucesso devido ao movimento do preço. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Esta transação não terá sucesso devido ao movimento do preço ou à comissão sobre transferência. Tente aumentar a sua tolerância ao deslizamento." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Dica: Os tokens personalizados são armazenados localmente no seu navegador" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Para" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Para (no mínimo)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token não suportado" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total depositado" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Total de depósitos" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Rota comercial" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Configurações de transação" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transação Enviada" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transação concluída em" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Prazo de transação" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transação rejeitada." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Token de transferência" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Tente novamente" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Ativar Modo Especialista" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI chegou" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Os tokens da UNI representam participações de voto na governança da Uniswap. Pode votar em cada proposta você mesmo ou delegar os seus votos a um terceiro." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Queimado" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "São necessários tokens LP UNI-V2. Uma vez que adicionou liquidez à pool {0}-{1} pode usarr os seus tokens de liquidez para participação nesta página." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI Não Reivindicada" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Comissões não reivindicadas" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Indeterminado" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Erro inesperado. Não foi possível estimar o gás para a troca." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema inesperado com a estimativa do gás. Por favor, tente novamente." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap Governança" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Termos de serviço do Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponível em: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "A governança Uniswap está disponível apenas na camada 1. Alterne sua rede para Ethereum Mainnet para visualizar propostas e votar." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap mineração de liquidez" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap contrato de migração↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Fonte desconhecida" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Erro desconhecido{0}. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Desbloquear votos" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Desbloquear Votação" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "A desbloquear votos" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Ativo não suportado" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Ativos não suportados" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Sem título" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Desembrulhar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Desembrulhe <0/> a {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Atualizar Delegação" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Atualizar lista" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Use a API Uniswap Labs para obter orçamentos mais rápidos." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Utilizador" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 não está disponível na camada 2. Alterne para a camada 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Liquidez V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Preço:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Ver comissões acumuladas e análises<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Ver lista" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Ver no Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Ver no Explorador" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Ver transação no Explorador" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Votar" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Votar contra" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Vote a favor" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Votar contra a proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Votar contra a proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote contra a proposta {proposalKey} com o motivo \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Votar a favor da proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Votar na proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote na proposta {proposalKey} com motivo \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Vote para se abster na proposta {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Vote para se abster na proposta {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Vote para se abster na proposta {proposalKey} com razão \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Votação terminada {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "A votação termina aproximadamente em {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "A votação começa aproximadamente {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "A aguardar confirmação" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Endereço da carteira ou nome ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Recompensas Semanais" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Bem-vindo à equipa Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Quando reivindica sem levantar, a sua liquidez permanece na pool de mineração." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Quando levanta, o contrato automaticamente reivindicará a UNI em seu nome!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Quando retirar, a sua UNI é reivindicada e a sua liquidez é removida do pool de mineração." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Levantar" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Levantar e Reivindicar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Levantar liquidez depositada" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Retirando {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Levantou UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Embrulhar" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Wrap <0/> a {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Rede errada" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Você já tem uma proposta ativa ou pendente" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Está a criar uma pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "É o primeiro fornecedor de liquidez desta pool Uniswap V3. A sua liquidez irá migrar ao preço atual {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "É o primeiro fornecedor de liquidez." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Pode votar em cada uma das propostas ou delegar os seus votos num terceiro." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Agora pode negociar {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Você não tem votos suficientes para enviar uma proposta" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Ainda não tem liquidez nesta pool." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Você pode considerar esperar até que as taxas de rede diminuam para concluir esta transação." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Deve ligar uma conta." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Tem de dar permissão aos contratos inteligentes do Uniswap para usarem o seu {0}. Só precisa de fazer isso uma vez por token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Você deve ter {formattedProposalThreshold} votos para enviar uma proposta" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Só deve depositar liquidez no Uniswap V3 por um preço que acredite estar correto. <0/>Se o preço parecer incorreto, pode fazer uma troca para mover o preço ou esperar que outra pessoa o faça." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Também irá cobrar comissões obtidas nesta posição." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Irá receber" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "A sua liquidez V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Suas posições de liquidez V3 ativas aparecerão aqui." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Os seus depósitos de liquidez" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "A sua parcela na pool:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "A sua posição" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "A sua posição tem 0 liquidez, e não está a ganhar comissões." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Sua posição aparecerá aqui." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "A sua posição será 100% composta por {0} a este preço" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "A sua posição será de 100% {0} a este preço." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "A sua posição não receberá comissões ou será usada em negociações até que o preço do mercado se mova para o seu intervalo." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "As suas posições" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "A sua comissão" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "O seu total de tokens da pool:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "O seu custo de transação será muito mais elevado, já que inclui o combustível para criar a pool." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "A sua transação pode ser primária" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "A sua transação pode falhar" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "A sua transação será revertida se estiver pendente por mais do que este período de tempo." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "A sua transação será revertida se o preço mudar desfavoravelmente, mais do que esta percentagem." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "As suas transações aparecerão aqui..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "As suas UNI não reivindicadas" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "após derrapagem" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "confirmar" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "para {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "Gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "tem meias emojis" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "aqui." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// ou ipfs:// ou nome ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minutos" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "através de {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "através de {0} lista de token" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importar tokens} other {Importar token}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> por <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} tokens personalizados" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Depositado" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Comissões Ganhas:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Pendente" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / semana" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} tokens UNI-V2 LP disponíveis" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} votos" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} por {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Preço:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Adicionado pelo utilizador" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Nível de taxa de {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% pool" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% selecionar" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Mineração de Liquidez" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} Tokens LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} tokens" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "Ponte {label}" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} por {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Voltar à Visão Geral de Pools" - diff --git a/src/locales/ro-RO.po b/src/locales/ro-RO.po deleted file mode 100644 index 63a9e98d56..0000000000 --- a/src/locales/ro-RO.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: ro_RO\n" -"Language-Team: Romanian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: ro\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Vezi pe Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(elimină tot)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(editează)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Eliminați destinatarul" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / săptămână" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Toate propunerile" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "Voturi <0/>" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Statisticile contului și comisioane acumulate<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Preț curent: <1> <2 /> <3>{0} pe {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Sfat: Eliminarea tokenurilor de rezervă convertește poziția ta înapoi în token-uri de bază, la rata actuală, proporțională cu cota ta din rezervă. Taxele acumulate sunt incluse în sumele pe care le primești." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Sfat: Selectați o acțiune și descrieți-vă propunerea pentru comunitate. Propunerea nu poate fi modificată după trimitere, deci vă rugăm să verificați toate informațiile înainte de a trimite. Perioada de votare va începe imediat și va dura 7 zile. Pentru a propune o acțiune personalizată, <1> citiți documentele ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Sfat: Utilizați acest instrument pentru a găsi pool-uri v2 care nu apar automat în interfață." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Sfat: Când adaugi lichiditate, vei primi tokeni de rezervă care reprezintă poziția ta. Aceste jetoane câștigă automat taxe proporțional cu cota ta din pool, și pot fi răscumpărate oricând." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Deblochează votul pentru a se pregăti pentru următoarea propunere." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Bine ai venit la echipa Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Pentru depunerea propunerilor este necesar un prag minim de 0,25% din totalul aprovizionării UNI" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Despre" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Acceptă" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Cont" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Activ" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Adăugare" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Adăugați <0 /> și <1 /> la Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Adaugă Delegat +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Adaugă lichiditate" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Adaugă lichiditate V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Adaugă lichiditate." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Adăugați mai multă lichiditate" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Adaugă {0} la Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Adaugă {0}-{1} lichiditate" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Adaugă {0}/{1} lichiditate V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Adăugat {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adresa nu are nici o cerere disponibilă" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Împotrivă" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Permite migrarea token-ului LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Permite tranzacțiile cu impact asupra prețurilor mari și sari peste ecranul de confirmare. Utilizează pe propriul risc." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Permite Protocolului Uniswap să îți utilizeze {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Permis" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Sumă" - -#: src/hooks/useSwapCallback.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." -msgstr "A apărut o eroare la încercarea de a executa acest swap. Este posibil să fie nevoie să vă măriți toleranța la alunecare. Dacă acest lucru nu funcționează, poate exista o incompatibilitate cu jetonul pe care îl tranzacționați. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Aprobă" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Aprobați jetonul" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Aprobă {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Aprobat" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Aprobare" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Aprobare {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Podul Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrul este în versiune beta și poate suferi perioade de nefuncționare. În timpul perioadelor de nefuncționare, poziția dvs. nu va câștiga taxe și nu veți putea elimina lichiditatea. <0> Citiți mai multe." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Ești sigur?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Ca membru al comunității Uniswap poți pretinde ca UNI să fie folosit pentru vot și guvernanță.<0/><1/><2>Citește mai multe despre UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Cel puțin {0} {1} și {2} {3} vor fi rambursați în portofelul tău datorită intervalului de preț selectat." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automat" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Disponibil pentru depunere: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Sold: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Cel mai bun pentru perechi exotice." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Cel mai bun pentru majoritatea perechilor." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Cel mai bun pentru perechi stabile." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Cel mai bun pentru perechi foarte stabile." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Ruta cu cel mai bun preț costă ~{formattedGasPriceString} în benzină." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Adresă blocată" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Pod" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Prin adăugarea de lichidități vei câștiga 0.3% din toate tranzacțiile din această pereche proporțional cu cota ta de grup. Taxele sunt adăugate în rezervă, se acumulează în timp real şi pot fi revendicate prin retragerea lichidităţii." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Prin conectarea unui portofel, sunteți de acord cu <0>Termenii și condițiile și confirmați că ați citit și înțeles Declinarea răspunderii privind protocolul <1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Anulat" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Schimbă" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Diagramele" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Verificați starea rețelei" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Vezi ghicurile noastre v3 LP de utilizare și migrare." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Solicitare" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Revendicați <0 /> pentru {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Revendică UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Revendicați jetonul UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Revendicați recompensa UNI pentru {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Revendică taxe" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Revendică-ți jetoanele UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Revendicat" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI Revendicate!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Revendicat!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Revendicare" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Revendicare UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Revendicare {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Șterge tot" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Șterge tot" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Închide" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Închis" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Colectează" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Colectează ca WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Colectează taxe" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Collect {0}/{1} taxele" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Colectat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Colectare" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Colectarea taxelor" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Colectarea taxelor va retrage taxele disponibile în prezent pentru tine." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Confirmare" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Confirmă Aprovizionarea" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Confirmă Schimbul" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Confirmă această tranzacție în portofelul tău" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Confirmați tranzacția în portofel" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Conectează Portofelul" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Conectează un portofel" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Conectează-te la un portofel pentru a găsi rezerve" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Conectează-te la un portofel pentru a vizualiza lichiditatea V2 a ta." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Conectează-te la un portofel pentru a vizualiza lichiditatea ta." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Conectat cu {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Copiat" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Copiază Adresa" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Crează Rezervă & Aprovizionare" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Creați o propunere" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Creează o pereche" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Creează o rezervă" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Creează o problemă pe GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Creează rezervă și adaugă {0}/{1} V3 lichiditate" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Creează grup." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Creează {0}/{1} piscina V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Prețul actual" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Prețul actual {0}:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Tema întunecată" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Învins" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Voturi delegate" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegă puterea de vot la {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegat către:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Voturi delegate" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Depozit" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Sume de depozit" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Depune Jetoane UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Lichiditate de depozit" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Depuneți jetoane în rețeaua {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Depune jetoanele Furnizorului tău de Lichidități pentru a primi UNI, jetonul de guvernare al protocolului Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Lichiditate depozitată:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "{0} UNI-V2 Depozitat" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Depunerea Lichiditate" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Descriere" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detaliat" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detalii" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Deconectare" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discordanță" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Respinge" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Documente" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Nu vezi una dintre pozițiile tale v2? <0>Import-o." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Jetoanele UNI câștigate reprezintă acțiunile cu drept de vot în guvernarea Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Editați | ×" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Compararea eficienței" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Introdu un procent" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Introdu un destinatar" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Introdu un procentaj valid de alunecare" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Introdu o adresă pentru a declanșa o revendicare UNI. Dacă adresa are o UNI revendicabilă, aceasta va fi trimisă la depunerea ei." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Introdu o sumă" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Introdu o listă valabilă a locației" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Introdu o adresă valabilă a grupului" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Introduceți {0} sumă" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Eroare" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Eroare de conectare" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Eroare la conectare. Încearcă să reîncarci pagina." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Eroare la importarea listei" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Estimarea poate diferi din cauza setărilor de gaz pentru portofel" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Taxa de rețea estimată" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Executat" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Modul expert" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Modul Expert dezactivează prompt tranzacția de confirmare și permite tranzacțiile cu derapaj ridicat, care duc adesea la rate nefavorabile și la pierderi de fonduri." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Expirat" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Explorați Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Schimbarea rețelelor de la interfața Uniswap a eșuat. Pentru a utiliza Uniswap pe {0}, trebuie să schimbați rețeaua din portofel." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Nivelul Taxei" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Nivelul taxei" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Se aduc cel mai bun preț..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Pentru" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Pentru fiecare grup indicat mai jos, dă clic pe migrare pentru a elimina lichiditatea de la Uniswap V2 și depune-l în Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "De la" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "De la (cel mult)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Gamă completă" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Pozițiile din gama completă pot câștiga mai puține comisioane decât pozițiile concentrate. Aflați mai multe <0> aici ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Obține asistență pentru Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Centru de ajutor" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Ascunde" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ascunde pozițiile închise" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Impact Preț Ridicat" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Cum folosește această aplicație API-urile" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Înţeleg" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Dacă cumperi un jeton din această listă, s-ar putea să nu îl poți vinde înapoi." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importă" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importă Lista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importă Grupul" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importă Grupul V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importă pe propriul risc" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "În interval" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Crește Lichiditatea" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Prețurile inițiale și cota din grup" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Se inițializează..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Intrarea este estimată. Vei vinde cel mult <0>{0} {1} sau tranzacția se va relua." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Instalează Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Lichiditate insuficientă pentru această tranzacție." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Sold {0} insuficient" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Setări Interfață" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Pereche nevalidă" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Pereche nevalidă." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Introducere de preț nevalidă" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Interval invalid selectat. Prețul minim trebuie să fie mai mic decât prețul maxim." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Destinatar nevalid" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Limba" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Învață" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Aflați despre furnizarea de lichiditate" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Află mai multe" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Legal și confidențialitate" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Tema luminii" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Lichiditate" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Datele privind lichiditatea nu sunt disponibile." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Recompense furnizor de lichidități" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Furnizorii de lichidități câștigă o taxă de 0,3 % pentru toate tranzacțiile proporționale cu cota lor din grup. Taxele sunt adăugate în grup, se acumulează în timp real şi pot fi revendicate prin retragerea lichidităţii." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Liste" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Încărcat" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Se încarcă" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Gestionează" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Gestionează Lichiditatea în Grupul de Recompense" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Gestionează Lista de Jetoane" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Gestionează acest grup." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maxim" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Preț Maxim" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Preț maxim" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Max:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximum trimis" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Meniul" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrare" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrare Lichiditate la V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrare Lichiditate V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrează jetoanele tale de lichiditate de la Uniswap V2 la Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrare {0}/{1} lichiditate la V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrare" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Preț minim" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Preț minim" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Min:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum primit" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependențe lipsă" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mai mult" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Taxa de retea" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Avertisment rețea" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Taxele de rețea depășesc 50% din valoarea swapului!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Poziție nouă" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Nu s-a găsit nicio Lichiditate V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Nu există grupuri active" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Nu există date" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Fără descriere." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Nu a fost găsită nicio lichiditate." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Nu a fost găsit niciun grup." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Nicio propunere găsită." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Nici un rezultat găsit." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Nu a fost creat" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "DEZACTIVAT" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "PORNIT" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "UTILIZEAZĂ DOAR ACEST MOD DACĂ ȘTII CE TREBUIE SĂ FACI." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Dezactivat" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Activat" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Odată ce ești mulțumit de rata de schimb fă clic pe ofertă pentru a o examina." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Doar voturile UNI care au fost auto-delegate sau delegate la o altă adresă înainte ca blocul {0} sunt eligibile pentru vot." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ups! A avut loc o eroare necunoscută. Reîmprospătează pagina, sau vizitează un alt browser sau dispozitiv." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimismul este în versiune beta și poate avea timp de nefuncționare. Optimism se așteaptă ca timpul de nefuncționare planificat să actualizeze rețeaua în viitorul apropiat. În timpul nefuncționării, poziția dvs. nu va câștiga comisioane și nu veți putea elimina lichiditatea. <0>Citește mai mult." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan optimist" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Prea departe" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Ieșirea este estimată. Dacă prețul se schimbă cu mai mult de {0}% tranzacția ta se va anula." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Ieșirea este estimată. Vei primi cel puțin <0>{0} {1} sau tranzacția va reveni." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Ieșirea va fi trimisă la <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Proprietar" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Grupuri participante" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "In asteptarea" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Vă rugăm să confirmați că doriți să eliminați această listă tastând ELIMINARE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Vă rugăm să vă conectați la Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Vă rugăm să vă conectați la rețeaua Ethereum adecvată." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Te rugăm să introduci cuvântul \"{confirmWord}\" pentru a activa modul expert." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Podul poligonului" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Grup" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Grup Găsit!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tarif de Grup" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tarif de grup" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Jetoane de grup în recompense de grup:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Grupat {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Prezentare Generală Grupuri" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "previzualizare" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Preț" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Diferență de Preț:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Impactul Prețului" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Impact de Preț este Prea Mare" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Preț Actualizat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Interval de preț" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Preț:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Prețuri și partajare grup" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Propunere" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Propunere trimisă" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Titlul propunerii" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Propuneri" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Propunerile depuse de membrii comunității vor apărea aici." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Acțiunea propusă" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Propunător" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Disclaimer privind protocolul" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "În așteptare" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tarife" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Citește mai multe despre UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Citește mai multe despre guvernarea Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Citește mai multe despre furnizarea de lichidități" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Citește mai multe despre activele neacceptate" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Tranzacții recente" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Destinatar" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Elimină" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Eliminați <0 /> și <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Elimină Suma" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Elimină Delegatul" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Elimină Lichiditatea" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Elimină lista" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Se elimină {0} {1} și {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Se elimină {0} {1} și{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Solicitați caracteristici" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Întoarcere" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Caută nume sau lipește adresa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Selectați Pair" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Selectați o rețea" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Selectează un grup/jeton" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Selectează un grup/jeton pentru a-ți găsi lichiditatea v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Selectați o acțiune" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Gama Selectată" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Sine" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Auto Delegare" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Setează Intervalul de Preț" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Setează Prețul de Început" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Cota de Grup" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Cota de Grup:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Arată Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Afișați pozițiile închise" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Simplu" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Toleranță derapaj" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Unele active nu sunt disponibile prin intermediul acestei interfețe deoarece este posibil să nu funcționeze bine cu contractele inteligente sau nu putem permite tranzacționarea din motive legale." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Ceva nu a funcţionat corect" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Pasul 1. Obține jetoane de Lichiditate UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Trimiteți o nouă propunere" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Trimiterea propunerii" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Se trimite votul" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Reușit" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Succes" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Furnizare" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Se furnizează {0} {1} și {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Schimbă" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Schimbați <0 /> pentru exact <1 />" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Schimbă Oricum" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Schimbați exact <0 /> cu <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Schimbarea a eșuat: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Se schimbă {0} {1} cu {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Îți mulțumim că faci parte din comunitatea Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Procentul pe care îl veți câștiga în taxe." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Invariantul Uniswap x*y=k nu a fost satisfăcut de schimbare. Acest lucru înseamnă, de obicei, că unul dintre jetoanele pe care le schimbi încorporează un comportament personalizat la transfer." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Aplicația preia date blockchain de la serviciul găzduit The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Aplicația preia date în lanț și construiește apeluri contractuale cu un API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Aplicația preia ruta comercială optimă de pe un server Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Aplicația înregistrează statistici de utilizare anonimizate pentru a se îmbunătăți în timp." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Aplicația vă colectează în siguranță adresa portofelului și o partajează cu TRM Labs Inc. din motive de risc și de conformitate." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Costul trimiterii acestei tranzacții este mai mult de jumătate din valoarea sumei de intrare." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Suma curentă rapidă de gaz pentru trimiterea unei tranzacții pe L1. Taxele pentru gaze sunt plătite în moneda nativă Ethereum (ETH) și sunt denominate în GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Diferența estimată între valorile USD ale sumelor de intrare și de ieșire." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Jetonul de intrare nu poate fi transferat. Este posibil să existe o problemă cu jetonul de intrare." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Prețul de piață este în afara intervalului de preț specificat. Doar depozitul de active unice." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Cel mai recent număr de bloc din această rețea. Prețurile se actualizează la fiecare bloc." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Jetonul de ieșire nu poate fi transferat. S-ar putea să existe o problemă cu simbolul de ieșire." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Jetonul de ieșire nu poate fi transferat. S-ar putea să existe o problemă cu simbolul de ieșire. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Prețul acestui jeton este în afara intervalului selectat. Poziția ta nu câștigă taxe/onorarii în prezent." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Prețul acestui pool se încadrează în intervalul selectat. Poziția dvs. câștigă în prezent." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Raportul dintre jetoanele adăugate va stabili prețul acestui grup." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Tranzacția nu a putut fi trimisă deoarece termenul a trecut. Te rugăm să verifici dacă termenul limită al acestei tranzacției nu este prea mic." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Nu există date privind lichiditatea." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Această aplicație folosește următoarele API-uri terță parte:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Acest pool trebuie inițializat înainte de a putea adăuga lichidități. Pentru a inițializa, selectați un preț de pornire pentru piscină. Apoi, introduceți intervalul de preț al lichidității și suma depozitului. Taxele pe gaz vor fi mai mari decât de obicei datorită tranzacției de inițializare." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Această rută vă optimizează producția totală, luând în considerare rutele împărțite, mai multe salturi și costul gazului pentru fiecare pas." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Acest instrument va migra în siguranță lichiditatea ta {0} în V3. Procesul este complet lipsit de încredere datorită" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Această tranzacție nu va reuși din cauza mișcării prețurilor. Încercați să vă măriți toleranța la alunecare. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Această tranzacție nu va reuși nici din cauza mișcării prețului, nici a comisioanelor la transfer. Încearcă să îți sporești toleranța la alunecare." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Sfat: Jetoanele personalizate sunt stocate local în browser" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "La" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "La (cel puțin)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Tokenul nu este acceptat" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Jetoane" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Total depozitat" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Depozite totale" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Rută comercială" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Setări Tranzacție" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Tranzacție Trimisă" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Tranzacție finalizată în" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Termen limită tranzacție" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Tranzacția respinsă." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Jeton de transfer" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Încearcă din nou" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Activează Modul Expert" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI a sosit" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Jetoanele UNI reprezintă acțiunile cu drept de vot în guvernarea Uniswap. Poți vota pentru fiecare propunere sau poți să delegi voturile unui terț." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Ars(e)" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Sunt necesare jetoane UNI-V2. Odată ce ai adăugat lichiditate în rezerva {0}-{1} poți distribui jetoanele de lichiditate pe această pagină." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI nesolicitate" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Taxe nesolicitate" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Nedeterminat" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Eroare neașteptată. Nu s-a putut estima gazul pentru swap." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problemă neașteptată cu estimarea gazului. Vă rugăm să încercați din nou." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Guvernare Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Termenii și condițiile Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap disponibil în: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Guvernarea Uniswap este disponibilă numai pe stratul 1. Comutați-vă rețeaua la Ethereum Mainnet pentru a vizualiza propuneri și voturi." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Exploatare de lichidități Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Contract de migrare Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Sursă Necunoscută" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Eroare necunoscută{0}. Încercați să vă măriți toleranța la alunecare. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Deblochează Voturi" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Deblochează Votarea" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Se deblochează Voturile" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Activ Nesusținut" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Active Nesusținute" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Fără titlu" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Despachetează" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Desfaceți <0/> la {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Actualizează Delegarea" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Actualizare listă" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Utilizați API-ul Uniswap Labs pentru a obține cotații mai rapide." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Utilizator" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 nu este disponibil în Layer 2. Treceți la Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Lichiditate V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Preț V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Vizualizează taxele acumulate și statisticile<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Vizualizează lista" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Vizualizare pe Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Vizualizează pe Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Vizualizează tranzacția în Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Votează" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Votează Împotrivă" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Vot pentru" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Votează împotriva propunerii {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Votează împotriva propunerii {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Votează împotriva propunerii {proposalKey} cu motivul „{0}”" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Votează pentru propunerea {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Vot pentru propunerea {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Votează pentru propunerea {proposalKey} cu motivul „{0}”" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Votați pentru a vă abține la propunerea {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Votați pentru a vă abține la propunerea {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Votați pentru a vă abține la propunerea {proposalKey} cu motivul „{0}”" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Votarea s-a încheiat {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Votarea se termină aproximativ {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Votarea începe cu aproximativ {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "În Așteptarea Confirmării" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Adresa portofelului sau numele ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Recompense Săptămânale" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Bine ai venit la echipa Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Când revendici fără să retragi, lichiditatea ta rămâne în rezerva de exploatare." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Când retragi, contractul va solicita automat UNI în numele tău!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Când retragi, UNI este revendicată și lichiditatea ta este eliminată din rezerva de exploatare." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Retrage" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Retrage & Solicită" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Retrage lichiditatea depozitată" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Retragere {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "S-au retras UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Împachetează" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Înfășurați <0/> la {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Rețea Greșită" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Aveți deja o propunere activă sau în așteptare" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Creezi o rezervă" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Ești primul furnizor de lichidități pentru această rezervă Uniswap V3. Lichiditatea ta va migra la prețul actual de {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Ești primul furnizor de lichidități." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Poți fie să votezi pentru fiecare propunere personală sau să delegi voturile către un terț." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Acum poți tranzacționa {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Nu aveți suficiente voturi pentru a trimite o propunere" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Încă nu ai lichidități în această rezervă." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "S-ar putea să vă gândiți să așteptați până când taxele de rețea scad pentru a finaliza această tranzacție." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Trebuie să conectezi un cont." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Trebuie să acorzi permisiunea contractelor inteligente Uniswap de a-ți utiliza {0}. Trebuie să faci asta o singură dată per jeton." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Trebuie să aveți {formattedProposalThreshold} voturi pentru a trimite o propunere" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Ar trebui să depozitați doar lichiditatea în Uniswap V3 la un preț pe care îl crezi corect. <0/>Dacă prețul pare incorect, poți fie să faci un schimb pentru a muta prețul, fie să aștepți ca altcineva să facă acest lucru." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "De asemenea, vei colecta taxele câștigate din această poziție." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Vei primi" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Lichiditatea ta V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Pozițiile dvs. active de lichiditate V3 vor apărea aici." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Depozitele tale de lichiditate" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Partajarea rezervorului tău:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Poziţia ta" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Poziţia ta are 0 lichidităţi şi nu dobândește onorarii." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Poziția dvs. va apărea aici." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Poziţia ta va fi 100% compusă din {0} la acest preţ" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Poziţia ta va fi de 100% {0} la acest preţ." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Poziția dvs. nu va câștiga taxe sau nu va fi utilizată în tranzacții până când prețul de piață nu se va muta în intervalul tău." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Pozițiile tale" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Rata ta" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Totalul jetoanelor grupului tău:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Costul tranzacției tale va fi mult mai mare deoarece include gazul necesar creării rezervorului." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Tranzacția poate fi anticipată" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Tranzacția ta poate eșua" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Tranzacția ta va fi reluată dacă este în așteptare mai mult de această perioadă de timp." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Tranzacția dvs. va fi reluată dacă prețul se modifică nefavorabil cu mai mult de acest procent." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Tranzacțiile tale vor apărea aici..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "UNI nerevendicate de tine" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "după alunecare" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "confirmă" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "pentru {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "are emoji cu șosete" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "Aici." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// sau ipfs:// sau numele ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minute" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "prin {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "prin {0} lista de jetoane" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Importă jetonul} other {Importă jetoane}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> pe <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Jetoane Personalizate" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Depozitate" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Taxe Câștigate:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} În așteptare" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / săptămână" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} Jetoane UNI-V2 LP disponibile" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Voturi" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} pe {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} jetoane" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Preț:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Adăugat de utilizator" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Nivel comision {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% bazin" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% selectează" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Exploatare de Lichiditate" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} Jetoane LP" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} jetoane" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token bridge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Înapoi la Rezumatul Grupurilor" - diff --git a/src/locales/ru-RU.po b/src/locales/ru-RU.po deleted file mode 100644 index 163d61cd56..0000000000 --- a/src/locales/ru-RU.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-24 21:06\n" -"Last-Translator: \n" -"Language: ru_RU\n" -"Language-Team: Russian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: ru\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Просмотреть в обозревателе)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(очистить всё)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(изменить)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Удалить получателя" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI в неделю" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Все предложения" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Голоса" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Аналитика по аккаунту и начисленные комиссии<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Текущая цена: <1> <2/> <3>{0} за {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Подсказка: Погашение токенов пула преобразует вашу позицию обратно в исходные токены по текущему курсу пропорционально вашей доле в пуле. Начисленные комиссии включаются в суммы, которые вы получите." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Подсказка: выберите действие и опишите свое предложение для сообщества. Предложение невозможно изменить после подачи, поэтому, пожалуйста, проверьте всю информацию перед отправкой. Период голосования начнется немедленно и продлится 7 дней. Чтобы предложить собственное действие, <1> прочтите документацию." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Подсказка: Используйте этот инструмент для поиска пулов в V2, которые не отображаются автоматически в интерфейсе." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Подсказка: При добавлении ликвидности вы получите токены пула, представляющие вашу позицию. Эти токены автоматически зарабатывают комиссию пропорционально вашей доле в пуле и могут быть погашены в любое время." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Разблокируйте голосование, чтобы подготовиться к следующему предложению." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Добро пожаловать в команду единорогов :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Для внесения предложений требуется минимальный порог в 0,25% от общего предложения UNI" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "О протоколе" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Принять" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Аккаунт" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Активный" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Добавить" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Добавить <0/> и <1/> в Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Добавить делегата +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Добавить ликвидность" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Добавить ликвидность в V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Добавить ликвидность." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Добавить ещё ликвидность" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Добавить {0} в MetaMask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Добавить ликвидность {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Добавить ликвидность {0}/{1} в V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Добавлено {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "У адреса нет прав требования" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Против" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Разрешить перенос LP-токенов" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Разрешить сделки с высоким влиянием на цену и не показывать экран подтверждения. Используйте на свой страх и риск." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Разрешить протоколу Uniswap использовать ваши {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Разрешено" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Сумма" - -#: src/hooks/useSwapCallback.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." -msgstr "Произошла ошибка при попытке произвести этот обмен. Возможно, нужно увеличить допустимое проскальзывание. Если это не сработает, возможно, имеет место несовместимость с токеном, которым вы торгуете. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Одобрить" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Одобрить токен" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Одобрить {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Одобрено" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Идёт одобрение" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Идёт одобрение {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Мост в Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum находится на стадии бета-тестирования, возможны перерывы в его работе. Во время перерыва ваша позиция не будет зарабатывать комиссии, и вы не сможете удалить ликвидность. <0>Читать дальше." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Вы уверены?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Как член сообщества Uniswap, вы можете востребовать токены UNI, которые используются для голосования и управления.<0/><1/><2>Подробнее об UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Не менее {0} {1} и {2} {3} будут возвращены на ваш кошелёк из-за выбранного диапазона цен." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Авто" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API автомаршрутизатора" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Доступно для внесения: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Баланс: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Подходит для экзотических пар." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Подходит для большинства пар." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Подходит для стабильных пар." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Подходит для очень стабильных пар." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Стоимость газа в маршруте с лучшей ценой составит ~{formattedGasPriceString}." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Заблокированный адрес" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Мост" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Добавив ликвидность, вы будете зарабатывать 0,3% от всех сделок на этой паре пропорционально вашей доле в пуле. Комиссии добавляются в пул, начисляются в режиме реального времени и могут быть востребованы путём вывода вашей ликвидности." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Подключая кошелёк, вы соглашаетесь с <0>Условиями предоставления услуг Uniswap Labs и подтверждаете, что прочитали и поняли <1>Отказ от претензий протокола Uniswap." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Отменено" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Изменить" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Графики" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Проверьте состояние сети" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Ознакомьтесь с нашими руководствами по предоставлению и переносу ликвидности в V3." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Востребовать" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Востребовать <0/> за {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Востребовать UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Claim UNI Token" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Востребовать награду в UNI за {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Востребовать комиссии" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Востребуйте свои токены UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Востребовано" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Вы востребовали UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Востребовано!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Востребование" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Востребование UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Востребование {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Очистить всё" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Очистить всё" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Закрыть" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Закрыто" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Получить" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Получить как WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Получить комиссии" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Получить комиссии {0}/{1}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Получено" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Получение" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Получение комиссий" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Получение комиссий выведет начисленные для вас комиссии." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Подтвердить" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Подтвердить внесение" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Подтвердить обмен" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Подтвердите эту транзакцию в своём кошельке" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Подтвердите транзакцию в кошельке" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Подключить кошелёк" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Подключить кошелёк" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Подключите кошелёк, чтобы найти пулы" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Подключите кошелёк, чтобы просмотреть вашу ликвидность в V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Подключите кошелёк, чтобы просмотреть вашу ликвидность." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Подключено к {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Скопировано" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Копировать адрес" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Создать пул и внести" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Создать предложение" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Создать пару" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Создать пул" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Создать проблему на GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Создать пул и добавить ликвидность {0}/{1} в V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Создать пул." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Создать пул {0}/{1} в V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Текущая цена" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Текущая цена {0}:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Тёмная тема" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Отклонено" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Делегировать голоса" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Делегировать право голоса {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Делегировано кому:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Делегирование голосов" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Внести" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Внесите суммы" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Внести LP-токены UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Внести ликвидность" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Внесите токены в сеть {label}." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Внесите токены поставщика ликвидности, чтобы получать UNI, токен управления протоколом Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Внесённая ликвидность:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Внесено {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Внесение ликвидности" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Описание" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Подробно" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Подробности" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Отключить" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Закрыть" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Документация" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Не видите какую-то из ваших позиций в V2? <0>Импортируйте её." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Заработанные токены UNI представляют собой права голоса в управлении Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Изменить" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Сравнение эффективности" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Введите процент" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Введите получателя" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Введите корректный процент проскальзывания" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Введите адрес, чтобы востребовать UNI. Если у адреса есть права требования на UNI, они будут высланы на него при отправке транзакции." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Введите сумму" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Введите правильное расположение списка" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Введите правильный адрес токена" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Введите сумму в {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Ошибка" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Ошибка подключения" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Ошибка подключения. Попробуйте обновить страницу." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Ошибка при импорте списка" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Оценка может отличаться в зависимости от настроек газа в вашем кошельке" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Приблизительная комиссия сети" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Исполнено" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "Расширенные результаты из неактивных списков токенов" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "Ожидается к получению" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Экспертный режим" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Экспертный режим отключает экран подтверждения транзакции и позволяет совершать сделки с большим проскальзыванием, что часто приводит к плохим обменным курсам и потере средств." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Истёк срок" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Изучите Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Не удалось переключить сеть через интерфейс Uniswap. Чтобы использовать Uniswap в {0}, вам нужно переключить сеть в своем кошельке." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Уровень комиссии" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Уровень комиссий" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Получение лучшей цены..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "За" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Для каждого указанного ниже пула нажмите «Перенести», чтобы удалить ликвидность из Uniswap V2 и внести её в Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Обменять токены" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Обменять токены (максимум)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Полный диапазон" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Позиции полного диапазона могут зарабатывать меньше комиссий, чем концентрированные позиции. Узнайте подробнее <0> здесь." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Получите поддержку в Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Центр поддержки" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Скрыть" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Скрыть закрытые позиции" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Высокое влияние на цену" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Как это приложение использует API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Я понимаю" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Если вы купите токен из этого списка, есть вероятность, что вы не сможете продать его обратно." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Импортировать" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Импортировать список" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Импортировать пул" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Импортировать пул из V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Импортируйте на свой риск" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "В диапазоне" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Увеличить ликвидность" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Начальные цены и доля в пуле" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Инициализация..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Сумма к продаже — оценочная. Вы продадите максимум <0>{0} {1}, или транзакция откатится." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Установить MetaMask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Недостаточно ликвидности для этой сделки." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Баланс {0} недостаточен" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Настройки интерфейса" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Неверная пара" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Неверная пара." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Цена указана неверно" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Выбран неверный диапазон. Минимальная цена должна быть меньше, чем максимальная цена." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Неверный получатель" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Язык" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Узнать больше" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Узнать подробнее о предоставлении ликвидности" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Узнать больше" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Юридическая информация и политика конфиденциальности" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Светлая тема" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Ликвидность" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Данные о ликвидности отсутствуют." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Вознаграждения для поставщика ликвидности" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Поставщики ликвидности зарабатывают 0,3% от всех сделок пропорционально своей доле в пуле. Комиссии добавляются в пул, начисляются в режиме реального времени и могут быть востребованы путём вывода ликвидности." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Списки" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Загружено" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Загрузка" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "МАКС." - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Управление" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Управление ликвидностью в пуле вознаграждений" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Управлять списками токенов" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Управление этим пулом." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Максимум" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Макс. цена" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Макс. цена" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Макс.:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Максимум к продаже" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Меню" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Перенести" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Перенести ликвидность в V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Перенести ликвидность из V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Перенесите ваши токены ликвидности из Uniswap V2 в Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Перенести ликвидность {0}/{1} в V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Перенос" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Мин. цена" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Мин. цена" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Мин.:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Минимум к получению" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Отсутствуют зависимости" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Ещё" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Комиссия сети" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Предупреждение о сети" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Комиссия сети превышает 50% от суммы обмена!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Новая позиция" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Ликвидность в V2 не обнаружена." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Нет активных пулов" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Нет данных" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Нет описания." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Ликвидность не найдена." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Пулы не найдены." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Предложений не найдено." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Ничего не найдено." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Не создано" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "ВЫКЛ" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "ВКЛ" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ИСПОЛЬЗУЙТЕ ЭТОТ РЕЖИМ, ТОЛЬКО ЕСЛИ ЗНАЕТЕ, ЧТО ДЕЛАЕТЕ." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Выкл" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Вкл" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Как только вы будете довольны курсом, нажмите «Внести», чтобы перейти к подтверждению." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Проголосовать могут только те голоса UNI, которые делегированы себе или на другой адрес до блока {0}." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ой! Произошла неизвестная ошибка. Пожалуйста, обновите страницу или откройте из другого браузера или с другого устройства." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Шлюз в Optimism" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimism находится на стадии бета-тестирования, возможны перерывы в работе. В ближайшем будущем ожидается плановый перерыв в работе Optimism для обновления сети. Во время перерыва ваша позиция не будет зарабатывать комиссии, и вы не сможете удалить ликвидность. <0>Читать дальше." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan для Optimism" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Вне диапазона" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Сумма к получению — оценочная. Если цена изменится более, чем на {0}%, ваша транзакция откатится." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Сумма к получению — оценочная. Вы получите как минимум <0>{0} {1}, или транзакция откатится." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Сумма к получению будет отправлена на <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Владелец" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Участвующие пулы" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Ожидает" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Чтобы подтвердить, что вы хотите удалить этот список, наберите УДАЛИТЬ" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Пожалуйста, подключитесь к Уровню 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Пожалуйста, подключитесь к нужной сети Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Пожалуйста, введите слово \"{confirmWord}\", чтобы включить экспертный режим." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Мост в Polygon" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Пулы" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Пул найден!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Курс пула" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Курс пула" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Токены пулов в пуле вознаграждений:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "{0} в пуле:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Обзор пулов" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Предпросмотр" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Цена" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Разница в цене:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Влияние на цену" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Слишком высокое влияние на цену" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Цена была обновлена" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Диапазон цен" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Цена:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Цены и доля в пуле" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Предложение" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Предложение отправлено" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Название предложения" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Предложения" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Предложения, вносимые членами сообщества, будут появляться здесь." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Предлагаемое действие" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Автор предложения" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Отказ от ответственности протокола" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "В очереди" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Тарифы" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Подробнее о UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Подробнее об управлении Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Подробнее о предоставлении ликвидности" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Подробнее о неподдерживаемых активах" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Последние транзакции" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Получатель" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Удалить" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Удалить <0/> и <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Удалить сумму" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Удалить делегата" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Удалить ликвидность" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Удалить список" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Удаление {0} {1} и {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Удаление {0} {1} и{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Предложить идею" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Назад" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Найдите по имени или вставьте адрес" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Выберите пару" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Выберите сеть" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Выберите токен" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Выберите токен, чтобы найти свою ликвидность в V2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Выберите действие" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Выбранный диапазон" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Себе" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Делегировать себе" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Установите диапазон цен" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Установите начальную цену" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Доля в пуле" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Доля в пуле:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Показать Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Показать закрытые позиции" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Простой" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Допустимое проскальзывание" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Некоторые активы недоступны через этот интерфейс, потому что они могут неправильно работать со смарт-контрактами или из-за того, что мы не можем разрешить торговлю по юридическим причинам." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Что-то пошло не так" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Шаг 1. Получите токены ликвидности UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Подать новое предложение" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Отправка предложения" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Отправка голоса" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Успешно" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Успешно" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Внести" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Внесение {0} {1} и {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Обменять" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Обменять <0/> на ровно <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Всё равно обменять" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Обменять ровно <0/> на <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Обмен не удался: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Идет обмен {0} {1} на {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Спасибо, что присоединились к сообществу Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "%, который вы заработаете в виде комиссий." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Инвариант Uniswap x * y = k не соблюдается при обмене. Обычно это означает, что один из токенов, которые вы обмениваете, имеет особенности поведения при его передаче." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Приложение получает данные блокчейна из сервиса The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Приложение получает данные, хранящиеся в блокчейне, и конструирует вызовы контрактов при помощи API от Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Приложение получает оптимальный маршрут для сделки с сервера Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Приложение собирает анонимную статистику использования, чтобы улучшаться со временем." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Приложение безопасно получает адрес вашего кошелька и передает его TRM Labs Inc. в целях управления рисками и соблюдения требований законодательства." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Стоимость отправки этой транзакции превышает половину стоимости токенов к продаже." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Текущая стоимость газа для быстрого подтверждения транзакции на L1. Комиссия за газ оплачивается в собственной валюте сети Ethereum — эфире (ETH) и деноминируется в GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Приблизительная разница между стоимостью токенов к продаже и к получению в долларах США." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Невозможно перевести токен к продаже. Возможно, имеется проблема с этим токеном." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Рыночная цена находится вне указанного вами диапазона. Вы можете внести только один актив." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Номер последнего блока в этой сети. Цены обновляются на каждом блоке." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Невозможно перевести токен к получению. Возможно, имеется проблема с токеном к получению." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Невозможно перевести токен к получению. Возможно, имеется проблема с токеном к получению. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Цена этого пула находится за пределами выбранного вами диапазона. Ваша позиция в настоящее время не зарабатывает комиссии." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Цена этого пула находится в пределах выбранного вами диапазона. Ваша позиция в настоящее время зарабатывает комиссии." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Соотношение добавляемых вами токенов установит цену этого пула." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Транзакция не может быть отправлена, потому что срок её действия истек. Пожалуйста, убедитесь, что срок действия вашей транзакции не слишком короткий." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Нет данных о ликвидности." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Это приложение использует следующие сторонние API:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Этот пул необходимо инициализировать, прежде чем вы сможете добавить ликвидность. Для инициализации выберите начальную цену для пула. Затем введите диапазон цен для ликвидности и сумму депозита. Плата за газ будет выше, чем обычно, из-за инициализирующей транзакции." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Этот маршрут оптимизирует количество токенов к получению с учётом разбивки маршрутов, сложных маршрутов и стоимости газа на каждом шаге." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Этот токен не поддерживается в приложении от Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "При помощи этого инструмент вы можете безопасно перенести свою ликвидность {0} в V3. Процесс не требует доверия благодаря" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Эта транзакция не будет успешной из-за движения цены. Попробуйте увеличить допустимое проскальзывание. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Эта транзакция не будет успешной из-за движения цены или комиссии за перевод. Попробуйте увеличить допустимое проскальзывание." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Подсказка: Пользовательские токены хранятся локально в вашем браузере" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "На токены" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "На токены (минимум)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Токен не поддерживается" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Токены" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Всего внесено" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Всего внесено" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Маршрут обмена" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Настройки транзакций" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Транзакция отправлена" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Транзакция завершена за" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Cрок действия транзакции" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Транзакция отклонена." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Перевести токен" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Попробовать ещё раз" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Включить экспертный режим" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI здесь" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Токены UNI представляют собой права голоса в управлении Uniswap. Вы можете проголосовать по каждому предложению самостоятельно или делегировать свои голоса третьей стороне." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} сожжено" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Требуются LP-токены UNI-V2. Когда вы добавите ликвидность в пул {0}-{1}, вы сможете застейкать токены ликвидности на этой странице." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Невостребованные UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Невостребованные комиссии" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Не определено" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Неожиданная ошибка. Невозможно спрогнозировать газ для обмена." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Неожиданная проблема при прогнозировании газа. Пожалуйста, попробуйте еще раз." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Управление Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Условия предоставления услуг Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap доступен на языке <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Управление Uniswap доступно только на 1-м уровне. Переключитесь на основную сеть Ethereum, чтобы просматривать предложения и голосовать." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Майнинг ликвидности Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Контракт переноса Uniswap ↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Неизвестный источник" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Неизвестная ошибка{0}. Попробуйте увеличить допустимое проскальзывание. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Разблокировать голоса" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Разблокировать голосование" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Разблокировка голосов" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Актив не поддерживается" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Неподдерживаемые активы" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Без названия" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Развернуть" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Развернуть <0/> в {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Обновить делегирование" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Обновить список" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Используйте API Uniswap Labs, чтобы быстрее получать котировки." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Пользователь" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 недоступна на 2-м уровне. Переключитесь на Ethereum 1-го уровня." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Ликвидность в V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Цена {0} в V3:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Просмотреть начисленные комиссии и аналитику<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Просмотреть список" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Посмотреть на Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Просмотреть в обозревателе" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Просмотреть транзакцию в обозревателе" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Голосования" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Проголосовать «против»" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Проголосовать «за»" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Проголосовать против предложения {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Проголосовать против предложения {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Проголосовать против предложения {proposalKey} по причине \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Проголосовать за предложение {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Проголосовать за предложение {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Проголосовать за предложение {proposalKey} по причине \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Воздержаться при голосовании по предложению {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Воздержаться от голосования по предложению {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Воздержаться от голосования по предложению {proposalKey} по причине \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Голосование закончилось {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Голосование заканчивается примерно {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Голосование начнется примерно {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Ожидание подтверждения" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Адрес кошелька или ENS-имя" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Еженедельные вознаграждения" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Добро пожаловать в команду единорогов :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Если вы востребуете без вывода, ваша ликвидность останется в майнинговом пуле." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "При выводе контракт автоматически востребует для вас начисленные UNI!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "При выводе вы автоматически востребуете начисленные UNI, и ваша ликвидность удалится из майнингового пула." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Вывести" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Вывести и востребовать" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Вывести внесённую ликвидность" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Вывод {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Вы вывели UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Завернуть" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Завернуть <0/> в {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Неверная сеть" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "У вас уже есть активное или ожидающее рассмотрения предложение" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Вы создаете пул" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Вы первый поставщик ликвидности в этом пуле Uniswap V3. Ваша ликвидность будет перенесена по текущей цене {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Вы первый поставщик ликвидности." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Вы можете проголосовать за каждое предложение самостоятельно или делегировать свои голоса третьей стороне." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Теперь вы можете торговать {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "У вас недостаточно голосов для внесения предложения" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "Возможно, у вас отсутствует соединение с интернетом." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Возможно, вам стоит подождать снижения комиссии сети, чтобы выполнить эту транзакцию." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Вы должны подключить аккаунт." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Вы должны дать разрешение смарт-контрактам Uniswap на использование ваших {0}. Это нужно сделать только один раз для каждого токена." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "У вас должно быть {formattedProposalThreshold} голосов, чтобы вносить предложения" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Вносить ликвидность в Uniswap V3 следует только по той цене, которую вы считаете правильной. <0/>Если цена кажется неправильной, вы можете либо произвести обмен, чтобы сдвинуть её, либо дождаться, чтобы это сделал кто-то другой." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Вы также будете получать комиссию, заработанную этой позицией." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Вы получите" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Ваша ликвидность в V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Здесь появятся ваши активные позиции ликвидности в V3." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Ваши взносы ликвидности" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Ваша доля в пуле:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Ваша позиция" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Ваша позиция имеет нулевую ликвидность и не зарабатывает комиссии." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Ваша позиция появится здесь." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Ваша позиция будет полностью состоять из {0} при этой цене" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Ваша позиция будет равна 100% {0} по этой цене." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Ваша позиция не будет зарабатывать комиссии или использоваться в сделках до тех пор, пока рыночная цена не переместится в ваш диапазон." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Ваши позиции" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Ваш курс" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Всего токенов пула у вас:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Стоимость вашей транзакции будет гораздо выше, так как она включает газ для создания пула." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Ваша транзакция подвержена атаке на опережение (фронт-раннингу)" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Ваша транзакция может быть неудачной" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Ваша транзакция откатится, если её подтверждение займёт больше указанного времени." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Ваша транзакция откатится, если цена изменится не в вашу пользу более, чем на этот процент." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Ваши транзакции появятся здесь..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Ваши невостребованные UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "после проскальзывания" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "подтверждаю" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "за {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "Gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "имеет эмодзи с носками" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "здесь." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// или ipfs:// или ENS-имя" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "минут(-ы)" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "из {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "из списка токенов {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Импортировать токен} other {Импортировать токены}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> за <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} пользовательских токенов" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} внесено" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "Заработано комиссий {0}:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} подтверждается" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI в неделю" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} доступных LP-токенов UNI-V2" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} голосов" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} за {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} токенов" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Цена {0} {1}:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Пользовательский" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Уровень комиссии {0}%" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "Пул с {0}%" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "Выбирают {0}%" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "майнинг ликвидности {0}-{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "LP-токены {0}/{1}" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} токенов" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "Мост токена {label}" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} за {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Назад к пулам" - diff --git a/src/locales/sl-SI.po b/src/locales/sl-SI.po deleted file mode 100644 index 71f96cdf37..0000000000 --- a/src/locales/sl-SI.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-28 17:11\n" -"Last-Translator: \n" -"Language: sl_SI\n" -"Language-Team: Slovenian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: sl\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "{0} $" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Ogled v Raziskovalcu)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(počisti vse)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(uredi)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Odstrani prejemnika" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / teden" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Vse pobude" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> glasov" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0> Analitika računa in zbrane provizije <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Trenutna cena: <1> <2/> <3>{0} na {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Komentar: Odstranitev žetonov iz sklada pretvori vaša sredstva nazaj v osnovne žetone po trenutnem tečaju, sorazmerno z vašim deležem v skladu. Obračunane pristojbine so vključene v zneske, ki jih prejmete." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Komentar: Izberite dejanje in za skupnost opišite svojo pobudo. Po oddaji pobude ni mogoče več spreminjati, zato pred oddajo preverite vse podatke. Glasovalno obdobje se začne takoj in traja 7 dni. Če želite predlagati dejanje po meri, <1>preberite dokumentacijo ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Komentar: S tem orodjem poiščite sklade V2, ki se v vmesniku ne prikažejo samodejno." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> Komentar: Ko dodate likvidnost, boste prejeli žetone sklada, ki predstavljajo vaša sredstva v skladu. Ti žetoni samodejno služijo pristojbine sorazmerno z vašim deležem v skladu. Kadar koli jih lahko pretvorite nazaj v izvorna sredstva." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Odklenite glasovanje, če se želite pripraviti na naslednjo pobudo." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 Dobrodošli v ekipi Samorog :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Za predložitev predlogov potrebujete vsaj 0,25 % celotne zaloge UNI." - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "O Uniswapu" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Sprejmi" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Račun" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktiven" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Dodaj" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Dodaj <0/> in <1/> v Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Dodaj zastopnika +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Dodaj likvidnost" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Dodaj likvidnost V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Dodaj likvidnost." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Dodaj dodatno likvidnost" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Dodaj {0} v Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Dodaj likvidnost {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Dodaj V3-likvidnost {0}/{1}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Dodano v {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Ta naslov nima terjatve" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Proti" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Dovoli migracijo likvidnostnih (LP) žetonov" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Dovolite trgovanje z visokim vplivom na ceno in preskočite zaslon za potrditev. Uporabljajte na lastno odgovornost." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Dovoli protokolu Uniswap, da uporabi vaše {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Dovoljeno" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Znesek" - -#: src/hooks/useSwapCallback.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." -msgstr "Pri poskusu izvedbe te zamenjave je prišlo do napake. Morda boste morali povečati toleranco do zdrsa. Če to ne deluje, je morda težava v nezdružljivosti z žetonom, s katerim trgujete. Pozor: žetoni s provizijami ob prenosu in uravnavani (rebase) žetoni niso združljivi z Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Odobri" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Odobri žeton" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Odobri {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Odobreno" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Odobritev v teku" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Odobritev {0} v teku" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Most v Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum je v različici beta in možni so izpadi. V času izpadov vaša pozicija ne bo služila provizij, likvidnosti pa ne boste mogli dvigniti. <0>Preberi več." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Ste prepričani?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Kot član skupnosti Uniswap ste upravičeni do žetonov UNI, ki se uporabljajo za glasovanje in upravljanje. <0/> <1/> <2> Preberite več o UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "V vašo denarnico bo zaradi izbranega cenovnega razpona vrnjeno vsaj {0} {1} in {2} {3}." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Samodejno" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API samodejnega iskalnika poti" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Na voljo za polog: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Dobroimetje: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Primerno za redko uporabljane pare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Primerno za večino parov." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Primerno za stabilne pare." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Primerno za zelo stabilne pare." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Pot z najnižjo ceno stane ~{formattedGasPriceString} v plinu." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Blokiran naslov" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Most" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Ko dodate likvidnost, boste služili provizijo 0,3 % od vseh poslov na tem paru sorazmerno z vašim deležem v skladu. Provozije se dodajajo v sklad v realnem času. Prevzamete jih, ko umaknete svojo likvidnost iz sklada." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "S tem ko povežete denarnico, se strinjate s <0>pogoji storitve Uniswap Labs in potrjujete, da ste prebrali in razumeli <1>izjavo o omejitvi odgovornosti protokola Uniswap." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Preklicana" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Spremeni" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Grafikoni" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Stanje omrežja preverite" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Oglejte si naše vodnike za V3-likvidnost in navodila za migracijo." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Prevzemi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Prevzemi <0/> za {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Prevzemi UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Prevzemi žetone UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Prevzemi nagrado UNI za {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Prevzemi provizije" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Prevzemite svoje žetone UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Prevzeto" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI pridobljeni!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Prevzeto!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Prevzem v teku" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Prevzemam UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Prevzem {0} UNI v teku" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Počisti vse" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Počisti vse" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Zapri" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Zaprto" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Prevzemi" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Prevzemi kot WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Prevzemi provizije" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Prevzemi provizije {0}/{1}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Prevzeto" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Prevzem v teku" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Prevzem provizij v teku" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "S prevzemom provizij dvignete provizije, ki so vam trenutno na voljo." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Potrdi" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Potrdi polog" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Potrdi menjavo" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Odobrite to transakcijo in svoji denarnici" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "V denarnici potrdite transakcijo" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Poveži denarnico" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Poveži denarnico" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Če želite poiskati sklade, povežite denarnico" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Če si želite ogledati svojo likvidnost V2, povežite denarnico." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Če si želite ogledati svojo likvidnost, povežite denarnico." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Povezano z: {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopirano" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopiraj naslov" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Ustvari sklad & položi likvidnost" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Ustvari pobudo" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Ustvarite par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Ustvari sklad" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Odprite zadevo na GitHubu" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Ustvari sklad in dodaj V3-likvidnost za {0}/{1}" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Ustvari sklad." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Ustvari V3-sklad {0}/{1}" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Trenutna cena" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Trenutna cena {0}:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Temna preobleka" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Zavrnjena" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Glasovni zastopnikov" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Prenesi pravico glasovanja na zastopnika {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Zastopnik:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Pooblaščanje zastopnika" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Polog" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Zneska pologa" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Naloži likvidnostne žetone UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Položi likvidnost" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Položite žetone v omrežje {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Položite likvidnostne (LP) žetone, s čimer prejmete UNI, žeton za upravljanje protokola Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Položena likvidnost:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Položenih {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Polog likvidnosti" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Opis" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Podrobnosti" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Podrobnosti" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Prekini povezavo" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Opusti" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokumentacija" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Ne vidite katerega od svojih pologov V2? <0>Uvozite ga." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Žetoni UNI predstavljajo delež glasovalnih pravic pri upravljanju sistema Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Uredi" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Primerjava učinkovitosti" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Vnesite odstotek" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Vnesite prejemnika" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Vnesite veljaven odstotek zdrsa" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Vnesite naslov za prevzem UNI. Če ima naslov pravico do prevzema žetonov UNI, mu bodo le-ti ob sprožitvi poslani." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Vnesite znesek" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Vnesite veljavno mesto seznama" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Vnesite veljaven naslov žetona" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Vnesite znesek {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Napaka" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Napaka pri povezovanju" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Napaka pri povezovanju. Poskusite osvežiti stran." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Napaka pri uvozu seznama" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Ocena se lahko spremeni zaradi nastavitev plina v vaši denarnici" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Ocena omrežne provizije" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Izvršena" - -#: src/components/SearchModal/CurrencyList.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 rezultat" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Strokovni način" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Strokovni način izklopi poziv za potrditev transakcije in omogoča velike zdrse poslov, ki pogosto povzročijo slabe menjalne tečaje in izgubljena sredstva." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Potekla" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Pobrskajte po Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Zamenjava omrežij iz Uniswapovega vmesnika ni uspel. Če želite uporabiti Uniswap na {0}, morate zamenjati omrežje v svoji denarnici." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Stopnja provizije" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Stopnja provizije" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Pridobivam najboljšo ceno ..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Za" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Za vsak spodaj prikazani sklad s klikom na Migriraj odstranite svojo likvidnost iz Uniswap V2 in jo vložite v Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Od" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Od (največ)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Poln razpon" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Položaji polnega razpona lahko zaslužijo manj provizij kot koncentrirane pozicije. Preberite več <0> tukaj." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Poiščite podporo na Discordu" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Center za pomoč" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Skrij" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Skrij zaprte pozicije" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Visok vpliv na ceno" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Kako ta aplikacija uporablja API-je" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Razumem" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Če kupite žeton s tega seznama, ga morda ne boste mogli več prodati." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Uvozi" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Uvozi seznam" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Uvozi sklad" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Uvozi V2-sklad" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Uvažate na lastno odgovornost" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Znotraj razpona" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Povečaj likvidnost" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Začetne cene in delež v skladu" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inicializacija..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Vhodni znesek je ocenjen. Prodali boste največ <0>{0} {1} ali pa bo transakcija stornirana." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Namesti Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Za ta posel je likvidnost prenizka." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Prenizko dobroimetje {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Nastavitve vmesnika" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Neveljaven par" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Neveljaven par." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Neveljaven vnos cene" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Razpon ni veljaven. Najnižja cena mora biti nižja od najvišje." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Neveljaven prejemnik" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Jezik" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Informacije" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Naučite se vse o polaganju likvidnosti" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Več o tem" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Pravna obvestila in zasebnost" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Svetla preobleka" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likvidnost" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Podatki o likvidnosti niso na voljo." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Nagrade ponudnikom likvidnosti" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Ponudniki likvidnosti služijo provizijo 0,3 % od vseh poslov, sorazmerno s svojim deležem v skladu. Provozije se dodajajo v sklad in se nabirajo v realnem času, prevzamete pa jih, ko dvignete svojo likvidnost iz sklada." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Seznami" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Naloženo" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Nalagam" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Upravljaj" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Upravljanje likvidnosti v skladu nagrad" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Upravljanje seznamov žetonov" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Upravljaj s tem skladom." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Največ" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Najvišja cena" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Najvišja cena" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Največ:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Največ poslano" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Meni" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migriraj" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migriraj likvidnost v V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migriraj likvidnost iz V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrirajte svojo likvidnostne žetone iz Uniswapa V2 v Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migriraj likvidnost {0}/{1} v V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migacija" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Najnižja cena" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Najnižja cena" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Najmanj:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Prejmete najmanj" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Manjkajoče odvisnosti" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Več" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Omrežna provizija" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Opozorilo glede omrežja" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Omrežna provizija presega 50% zneska menjave!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nova pozicija" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Ne najdem nobene likvidnosti V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Ni aktivnih skladov" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Ni podatkov" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Brez opisa" - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Ni likvidnosti." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Ne najdem sklada." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Ni predlogov." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Ni rezultatov." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Ni ustvarjeno" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "Izklopljeno" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "Vklopljeno" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "Ta način uporabljajte SAMO, ČE VESTE, KAJ POČNETE." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Izklopljeno" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Vklopljeno" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Ko ste zadovoljni s tečajem, kliknite Položi za pregled." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Do glasovanja so upravičeni samo glasovi UNI, ki so bili samozastopani ali so pooblastili drugega zastopnika pred blokom {0}." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ojej! Prišlo je do neznane napake. Osvežite stran ali poskusite v drugem brskalniku ali napravi." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Portal za Optimism" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimism je v različici beta in lahko prihaja do izpadov. Optimizem pričakuje v bližnji prihodnosti načrtovane izpade za nadgradnjo omrežja. V času izpadov vaša pozicija ne bo služila pristojbin in likvidnosti ne boste mogli odstraniti. <0> Preberi več." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistic Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Zunaj razpona" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Izhodni znesek je ocenjen. Če se cena spremeni za več kot {0} %, bo transakcija stornirana." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Rezultat je ocenjen. Prejeli boste vsaj <0>{0} {1} ali pa bo transakcija stornirana." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Izhod bo poslan na <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Lastnik" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Sodelujoči skladi" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "V teku" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Prosimo, vtipkajte REMOVE, s čimer boste potrdili, da želite odstraniti ta seznam." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Prosimo, povežite se z Ethereumom prvega sloja (layer 1)" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Povežite se z ustreznim omrežjem Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Prosimo, vnesite besedo \"{confirmWord}\", če želite omogočiti strokovni način." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Most za Polygon" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Skladi" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Sklad najden!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tečaj sklada" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tečaj sklada" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Žetoni sklada v skladu nagrad:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "{0} v skladu:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Pregled skladov" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Predogled" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Cena" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Razlika v ceni:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Vpliv na ceno" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Vpliv na ceno previsok" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Cena posodobljena" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Cenovni razpon" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Cena:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Cene in delež v skladu" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Pobuda" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Pobuda predložena" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Naslov pobude" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Pobude" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Pobude članov skupnosti bodo prikazane tukaj." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Predlagani ukrep" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Pobudnik" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Izjava o omejitvi odgovornosti za protokol" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "V čakalni vrsti" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tečaji" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Preberite več o UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Preberite več o Uniswapovem upravljanju" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Preberite več o zagotavljanju likvidnosti" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Preberite več o nepodprtih sredstvih" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Zadnje transakcije" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Prejemnik" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Odstrani" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Odstrani <0/> in <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Odstrani znesek" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Odstrani zastopnika" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Odstrani likvidnost" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Odstrani seznam" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Odstranitev {0} {1} in {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Odstranitev {0} {1} in{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Predlagajte funkcionalnosti" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Nazaj" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Poiščite ime ali prilepite naslov" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Izberite par" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Izberite omrežje" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Izberite žeton" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Za iskanje svoje likvidnosti V2 izberite žeton." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Izberite dejanje" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Izbrani razpon" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Sebi" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Samozastopanje" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Nastavi razpon cene" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Nastavi začetno ceno" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Delež v skladu" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Delež sklada:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Prikaži Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Pokaži zaprte položaje" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Enostavno" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Toleranca do zdrsa" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Nekatera sredstva v tem vmesniku niso na voljo, ker morda ne delujejo dobro s pametnimi pogodbami ali pa iz pravnih razlogov ne moremo dovoliti trgovanja z njimi." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Nekaj je šlo narobe" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Korak 1. Pridobite žetone za likvidnost UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Predloži novo pobudo" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Predložitev pobude" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Oddaja glasu" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Uspelo" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Uspelo" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Položi" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Polog {0} {1} in {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Menjava" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Menjaj <0/> za natanko <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Vseeno zamenjaj" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Menjaj natanko <0/> za <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Menjava je spodletela: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Menjava {0} {1} za {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Hvala, ker ste del skupnosti Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Odstotek, ki ga boste služili s provizijami." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Pri tej menjavi ni bilo zadoščeno Uniswapovi stalnici x*y = k. To običajno pomeni, da ima eden od žetonov, ki jih menjate, pri prenosih vgrajeno posebno obnašanje." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Aplikacija pridobi podatke verige blokov iz gostujoče storitve The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Aplikacija pridobi podatke in verige in zgradi pogodbene klice z API-jem Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Aplikacija pridobi optimalno pot trgovanja s strežnika Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Aplikacija z namenom prihodnjih izboljšav beleži anonimizirano statistiko uporabe." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Aplikacija na varen način prebere naslov vaše denarnice in ga deli s TRM Labs Inc. zaradi ocene tveganja in skladnosti z zakoni." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Strošek pošiljanja te transakcije presega polovico vrednosti vhodnega zneska." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Trenutna količina plina za hitro pošiljanje transakcije na L1. Provizije za plin se plačajo v valuti ether (ETH), domači valuti omrežja Ethereum, in so denominirane v enoti Gwei." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Ocenjena razlika med vrednostmi (v USD) vhodnih in izhodnih zneskov." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Vhodnega žetona ni mogoče prenesti. Morda je gre za težavo z vhodnim žetonom." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Tržna cena je izven območja, ki ste ga izbrali. Položite lahko le eno od obeh sredstev." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Zadnja številka bloka v tem omrežju. Cene se z vsakim blokom posodobijo." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Izhodnega žetona ni mogoče prenesti. Morda gre za težavo z izhodnim žetonom." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Izhodnega žetona ni mogoče prenesti. Morda gre za težavo z izhodnim žetonom. Pozor: žetoni s provizijami ob prenosu in uravnavani (rebase) žetoni niso združljivi z Uniswapom V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Cena v tem skladu je izven območja, ki ste ga izbrali. Vaš vložek vam trenutno ne služi provizij." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Cena v tem skladu je trenutno znotraj območja, ki ste ga izbrali. Vaš vložek vam trenutno služi provizije. " - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Razmerje med žetoni, ki jih boste vložili, bo določilo začetno ceno v tem skladu." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Transakcije ni bilo mogoče poslati, ker je rok potekel. Preverite, ali vaš transakcijski rok ni prekratek." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Podatkov o likvidnosti ni." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Ta aplikacija uporablja naslednje API-je tretjih oseb:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Ta sklad je treba inicializirati, preden lahko dodate likvidnost. Za inicializacijo izberite začetno ceno za sklad. Nato vnesite svoj cenovni razpon likvidnosti in znesek depozita. Provizije za plin (gas) bodo zaradi inicializacijske transakcije višje kot običajno." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "To je pot, po kateri iz menjave dobite največ ob upoštevanju razcepljenih poti, zaporednih menjav in stroškov plina na vsakem koraku." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Ta žeton ni podprt v aplikaciji Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "To orodje poskrbi za varno migracijo vaših likvidnostnih žetonov {0} v Uniswap V3. Ta postopek ne zahteva nikakršnega zaupanja drugi osebi zaradi " - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ta transakcija ne bo uspela zaradi premika cene. Poskusite povečati toleranco do zdrsa. Pozor: žetoni s provizijami ob prenosu in uravnavani (rebase) žetoni niso združljivi z Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ta transakcija ne bo uspela zaradi gibanja cene ali provizije za prenos. Poskusite povečati toleranco do zdrsa." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Komentar: Žetoni po meri so shranjeni lokalno v vašem brskalniku" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Za" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Za (vsaj)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Žeton ni podprt" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Žetoni" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Skupaj položeno" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Vsi pologi" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Pot menjave" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Nastavitve transakcije" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transakcija oddana" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transakcija je bila zaključena v " - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Rok za transakcijo" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transakcija zavrnjena." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Prenos žetona" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Poskusi ponovno" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Vklopi strokovni način" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI je dospel" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Žetoni UNI predstavljajo delež glasovalnih pravic pri upravljanju sistema Uniswap. Za vsak predlog lahko glasujete sami ali pa svoje glasove prenesete na izbranega zastopnika." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "Uničenih {0}/{1} UNI" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Potrebni so žetoni likvidnosti (LP) UNI-V2. Če boste dodali likvidnost v sklad {0}-{1} , boste lahko na tej strani zastavili svoje žetone likvidnosti." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Neprevzeti UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Neprevzete provizije" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Nedoločeno" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Nepričakovana napaka. Porabe plina za menjavo ni bilo mogoče oceniti." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Nepričakovana težava pri ocenjevanju porabe plina. Prosimo, poskusite ponovno." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswapovo upravljanje" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Pogoji storitve Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap je na voljo v teh jezikih: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Upravljanje Uniswapa je za na voljo samo na sloju 1. Če želite videti pobude in glasovati, preklopite na omrežje Ethereum Mainnet." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswapovo rudarjenje z likvidnostjo" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswapova pogodba za migracijo↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Neznan vir" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Neznana napaka {0}. Poskusite povečati toleranco do zdrsa. Pozor: žetoni s provizijami ob prenosu in uravnavani (rebase) žetoni niso združljivi z Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Odkleni glasove" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Odkleni glasovanje" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Odklepanje glasov" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Nepodprto sredstvo" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Nepodprta sredstva" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Brez naslova" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Odvij" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Odvijte <0/> v {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Posodobi pooblastilo" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Posodobi seznam" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Z uporabo API-ja Uniswap Labs lahko ponudbe pridobite hitreje." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Uporabnik" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 ni na voljo v sloju 2 (layer 2). Preklopite na Ethereumov sloj 1 (layer 1)." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Likvidnost V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Cena V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Oglejte si natečene pristojbine in analitiko <0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Pokaži seznam" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Prikaži na Etherscanu" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Prikaži v raziskovalcu" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Prikaži transakcijo v raziskovalcu" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Glasuj" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Glasuj PROTI" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Glasuj ZA" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Glasuj proti pobudi {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Glasuj proti pobudi {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Glasujte proti pobudi {proposalKey} z razlogom \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Glasuj za pobudo {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Glasuj za pobudo {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Glasuj za pobudo {proposalKey} z razlogom \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Vzdrži se glasovanja o pobudi {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Vzdrži se glasovanja o pobudi {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Vzdrži se glasovanja o pobudi {proposalKey} z razlogom \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Glasovanje se je končalo {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Glasovanje se konča okrog {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Glasovanje se začne okrog {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Čakanje na potrditev" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Naslov denarnice ali ENS-ime" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Tedenske nagrade" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Dobrodošli v ekipi Samorog :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Ko prevzamete brez dviga, vaša likvidnost ostane v rudarskem skladu." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Ob dvigu bo pogodba samodejno prevzela UNI v vašem imenu!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Ko izvedete dvig, prevzamete svoje UNI, vaša likvidnost pa se odstrani iz rudarskega sklada." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Dvig" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Dvigni in prevzemi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Dvignite položeno likvidnost" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Dvigujem {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 dvignjen!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Ovij" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Ovijte <0/> v {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Napačno omrežje" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Imate že eno aktivno ali čakajočo pobudo." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Ustvarjate sklad" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "V tem skladu Uniswapa V3 ste prvi ponudnik likvidnosti. Vaša likvidnost bo migrirana po trenutni ceni {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Ste prvi ponudnik likvidnosti." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "O vsaki pobudi lahko glasujete sami ali pa svoje glasove prenesete na izbranega zastopnika." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Zdaj lahko trgujete z {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Nimate dovolj glasov za predložitev pobude." - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "V tem skladu še nimate likvidnosti." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Premislite, ali ne bi te transakcije zaključili v času, ko bodo omrežne provizije nižje." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Povezati morate račun." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Najprej morate Uniswapovim pametnim pogodbam dovoliti uporabo svojih {0}. To je za vsak žeton potrebno storiti samo enkrat." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Za predložitev pobude potrebujete {formattedProposalThreshold} glasov." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "V Uniswap V3 položite likvidnost le po ceni, za katero menite, da je pravilna. <0/>Če se zdi cena napačna, lahko izvedete menjavo, s čimer premaknete ceno, ali pa počakajte, da to stori nekdo drug." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Ta pozicija vam bo tudi služila provizije." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Prejeli boste" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Vaša likvidnost V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Tukaj bodo prikazane vaše aktivne likvidnostne pozicije na V3." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Vaši likvidnostni pologi" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Vaš delež v skladu:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Vaša pozicija" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Vaša pozicija nima likvidnosti in ne služi provizij." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Vaša pozicija bo prikazana tu." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Pri tej ceni bo vaša pozicija 100 % v {0}" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Pri tej ceni bo vaš položaj 100% {0}." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Ta polog vam ne bo prinašal provizij ali se uporabljal za trgovanje, dokler se tržna cena ne premakne v notranjost izbranega razpona." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Vaše pozicije" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Vaš tečaj" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Količina vaših žetonov sklada:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Cena vaše transakcije bo precej višja, ker vsebuje plin (gas) za ustvarjenje sklada." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Možno je, da je bila vaša transakcija podvržena t.i. \"front-runningu\"." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Vaša transakcija bo morda spodletela" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Vaša transakcija bo stornirana, če se v tem časovnem obdobju ne izvrši." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Vaša transakcija bo stornirana, če se cena spremeni za več kot ta odstotek v neugodni smeri." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Vaše transakcije bodo prikazane tukaj ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Vaši neprevzeti UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "po zdrsu" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "potrdi" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "za {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "ima emoji za nogavice" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "tukaj." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// ali ipfs:// ali ENS-ime" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minut" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "preko {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "prek seznama žetonov {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Uvozi žeton} other {Uvozi žetone}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> na <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} žetonov po meri" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "Položeno {0}" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "Prislužene provizije pri {0}:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} v teku" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / teden" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "Na voljo {0} žetonov LP UNI-V2" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} glasov" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} na {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} žetonov" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Cena {0} {1}:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Dodal uporabnik" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0} %" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Nivo provizij {0} %" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% sklad" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% izberi" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "Rudarjenje likvidnosti z {0}-{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "LP NFT {0}/{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "Likvidnostni žetoni {0}/{1}" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} žetonov" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "Most za žetone {label}" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider} %" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} na {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Nazaj na pregled skladov" - diff --git a/src/locales/sr-SP.po b/src/locales/sr-SP.po deleted file mode 100644 index 0b02fb1b34..0000000000 --- a/src/locales/sr-SP.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: sr_SP\n" -"Language-Team: Serbian (Cyrillic)\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: sr\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Поглед у Екплореру)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(обриши све)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(уреди)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Уклоните примаоца" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 УНИ / недељно" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Сви предлози" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Гласови" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0> Аналитика рачуна и обрачунате накнаде <1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Тренутна цена: <1> <2 /> <3>{0} по {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> Савет: Уклањање групе токена конвертује вашу позицију назад у основне токене по тренутној стопи, пропорционалној вашем уделу у фонду. Наплаћене накнаде су укључене у износе које примите." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Савет: Изаберите акцију и опишите свој предлог за заједницу. Предлог се не може изменити након подношења, зато вас молимо да верификујете све информације пре подношења. Период гласања започиње одмах и трајаће 7 дана. Да бисте предложили прилагођену радњу, <1> прочитајте документе ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Савет: Користите ову алатку за проналажење в2 група које се не појављују аутоматски у интерфејсу." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> Савет: Када додате ликвидност, добићете групу токене која представљаја вашу позицију. Ови токени аутоматски зарађују накнаде пропорционалне вашем уделу у фонду и могу се искористити у било ком тренутку." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0> Откључајте гласање да се припреми за следећи предлог." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 Добродошли у тим Unicorn :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "За подношење предлога потребан је минимални праг од 0,25% укупне УНИ понуде" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "О" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Прихвати" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Рачун" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Активно" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Додати" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Додајте <0/> и <1/> у Унисвап В2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Додајте делегата +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Додајте ликвидност" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Додајте В2 ликвидност" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Додајте ликвидност." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Додајте више ликвидности" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Додајте {0} у Метамаск <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Додајте {0}-{1} ликвидност" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Додај {0}/{1} В3 ликвидност" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Додато {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Адреса нема доступних потраживања" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Против" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Дозволи миграцију ЛП токена" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Омогућите трговање утицајем високе цене и прескочите екран за потврду. Користите на властиту одговорност." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Дозволите Uniswap протоколу да користи вашу {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Дозвољен" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Износ" - -#: src/hooks/useSwapCallback.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." -msgstr "Дошло је до грешке приликом покушаја извршења ове замене. Можда ћете морати повећати толеранцију клизања. Ако то не успе, можда постоји некомпатибилност са токеном којим тргујете. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Одобри" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Одобри жетон" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Одобри {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Одобрено" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Одобравање" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Одобравање {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Арбисцан" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Мост Арбитрум" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Арбитрум је у бета фази и може доћи до застоја. Током застоја, ваша позиција неће зарађивати накнаде и нећете моћи да уклоните ликвидност. <0> Прочитајте више." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Јеси ли сигуран?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Као члан Uniswap заједнице можете затражити да се УНИ користи за гласање и управљање. <0/> <1/> <2> Прочитајте више о УНИ" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Најмање {0} {1} и {2} {3} ће бити враћени у ваш новчаник због изабраног распона цена." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Аutomatski" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Ауто Роутер АПИ" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Доступно за депозит: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Стање: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Најбоље за егзотичне парове." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Најбоље за већину парова." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Најбоље за стабилне парове." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Најбоље за веома стабилне парове." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Најповољнија рута кошта ~{formattedGasPriceString} у гасу." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Блокирана адреса" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Мост" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Додавањем ликвидности зарадићете 0,3% свих трговина на овом пару пропорционално вашем уделу у фонду. Накнаде се додају у фонд, прикупљају се у реалном времену и могу се захтевати повлачењем ваше ликвидности." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Povezivanjem novčanika prihvatate Uslove korišćenja usluge <0> i potvrđujete da ste pročitali i razumeli Odricanje odgovornosti<1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Отказано" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Промена" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Графикони" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Проверите статус мреже" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Погледајте наше водиче за v3 LP и водиче за миграцију." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Потраживање" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Потраживање <0/> за {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Преузми УНИ" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Преузми УНИ токен" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Затражите УНИ награду за {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Преузми накнаде" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Преузми своје УНИ токене" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Преузето" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Преузет УНИ!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Потраживано!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Преузимање" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Преузимање УНИ" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Преузимање {0} УНИ" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Обриши све" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Обриши све" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Затвори" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Затворено" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Сакупи" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Сакупи као WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Сакупи накнаде" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Покупи {0}/{1} накнаде" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Сакупљено" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Сакупљање" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Сакупљање накнада" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Сакупљање накнада повући ће тренутно доступне накнаде за вас." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Потврди" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Потврдите снабдевање" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Потврдите размену" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Потврдите ову трансакцију у новчанику" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Потврдите трансакцију у новчанику" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Повежите новчаник" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Повежите новчаник" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Повежите се са новчаником да бисте пронашли фондове" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Повежите се са новчаником да бисте видели своју V2 ликвидност." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Повежите се са новчаником да бисте видели своју ликвидност." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Повезано са {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Копирано" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Копирај адресу" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Направите Фонд & Снабдевање" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Направите предлог" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Направите пар" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Направите фонд" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Направите питање на GitHub-у" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Направите фонд и додајте {0}/{1} V3 ликвидност" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Направите фонд." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Створити {0}/{1} В3 базен" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Тренутна цена" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Тренутна {0} цена:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Мрачна тема" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Поражени" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Делегирајте гласове" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Делегирајте гласачку моћ на {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Делегирано за:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Делегирање гласова" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Депозит" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Износи депозита" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Положите UNI-V2 LP токене" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Ликвидност депозита" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Депонујте токене на мрежу {label}." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Положите своје токене Добављача ликвидности да бисте добили УНИ, токен управљања протоколом Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Депонована ликвидност:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Положено {0} УНИ-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Депоновање ликвидности" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Опис" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Детаљно" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Детаљи" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Прекини везу" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Одбаци" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Документи" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Не видите ниједну од ваших V2 позиција? <0> Увезите их." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Зарађени UNI токени представљају акције са правом гласа у управљању Uniswap-ом." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Уредити" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Поређење ефикасности" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Унесите проценат" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Унесите примаоца" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Унесите важећи клизни проценат" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Унесите адресу да бисте покренули преузимање УНИ-ја. Ако адреса има УНИ који се може преузети, они ће им бити послати по предаји." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Унесите износ" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Унесите важећи списак локација" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Унесите важећу адресу токена" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Унесите {0} износ" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Грешка" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Грешка при повезивању" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Грешка при повезивању. Покушајте да освежите страницу." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Грешка при увозу листе" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Процена се може разликовати због подешавања гаса у новчанику" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Процењена мрежна накнада" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Етхерсцан" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Погубљен" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "Проширени резултати са неактивних листа токена" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "Очекивани излаз" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Режим стручњака" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Експертни режим искључује упит за потврду трансакције и омогућава велике клизне трансакције које често резултирају лошим стопама и изгубљеним новчаним средствима." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Истекло" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Истражите Унисвап Аналитицс." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Пребацивање мреже са Унисвап интерфејса није успело. Да бисте користили Унисвап на {0}, морате променити мрежу у свом новчанику." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Ниво накнаде" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Ниво накнада" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Добијање најбоље цене..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "За" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "За сваки фонд приказан у наставку кликните на мигрирај да бисте уклонили своју ликвидност из Uniswap V2 и депоновали је у Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Од" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Од (највише)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Пун Опсег" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Позиције пуног опсега могу зарадити мање накнаде од концентрисаних позиција. Сазнајте више <0> овде ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Затражите подршку на Discord-у" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Центар за помоћ" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Сакрити" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Сакриј затворене позиције" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Утицај високе цене" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Kako ova aplikacija koristi API-je" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "разумем" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Ако купите жетон са ове листе, можда нећете моћи да га вратите." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Увоз" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Увоз листе" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Увоз фонда" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Увоз V2 фонда" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Увозите на сопствени ризик" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "У распону" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Повећајте ликвидност" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Почетне цене и удео у базену" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Иницијализација ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Улаз се процењује. Продаћете највише <0>{0} {1} или ће се трансакција вратити." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Инсталирајте Метамаск" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Недовољна ликвидност за ову трговину." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Недовољно {0} на стању" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Подешавања интерфејса" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Неважећи пар" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Неважећи пар." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Неважећи унос цене" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Изабран је неважећи опсег. Минимална цена мора бити нижа од максималне." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Неважећи прималац" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Језик" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Научи" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Сазнајте више о обезбеђивању ликвидности" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Сазнајте више" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Pravo i privatnost" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Лигхт Тхеме" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Ликвидност" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Подаци о ликвидности нису доступни." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Награде добављача ликвидности" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Даваоци ликвидности зарађују провизију од 0,3% на свим пословима пропорционално њиховом уделу у фонду. Накнаде се додају у фонд, прикупљају се у реалном времену и могу се захтевати повлачењем ваше ликвидности." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Листе" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Учитано" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Учитавање" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "МАКС" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Управљати" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Управљање ликвидношћу у наградном фонду" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Управљање листама токена" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Управљајте овим фондом." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Макс" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Максимална цена" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Максимална цена" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Макс:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Максимално послато" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Мени" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Пресели" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Пребаците ликвидност на V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Миграција V2 ликвидности" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Пребаците своје токене ликвидности са Uniswap V2 на Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Мигрирајте {0}/{1} ликвидност у В3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Миграција" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Мин. Цена" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Мин. Цена" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Мин:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Минимално примљено" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Недостају зависности" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Више" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Мрежна накнада" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Упозорење на мрежу" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Мрежне накнаде прелазе 50% износа размене!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Нова позиција" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Није пронађена ликвидност V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Нема активних фондова" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Нема података" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Нема описа." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Није пронађена ликвидност." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Није пронађен ниједан фонд." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Није пронађен ниједан предлог." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Нема резултата." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Није створено" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "ИСК" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "УКЉ" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ОВАЈ РЕЖИМ КОРИСТИТЕ САМО АКО ЗНАТЕ ШТА РАДИТЕ." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Иск" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Укљ" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Једном када сте задовољни курсом, кликните снабдевање како бисте прегледали." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Само УНИ гласови који су самостално или делегирани на другу адресу пре блока {0} испуњавају услове за гласање." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Упс! Дошло је до непознате грешке. Освежите страницу или је посетите из другог прегледача или уређаја." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Оптимисм Гатеваи" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Оптимизам је у бета верзији и може доћи до застоја. Оптимизам очекује да планирано време застоја надогради мрежу у блиској будућности. Током застоја, ваша позиција неће зарадити накнаде и нећете моћи да уклоните ликвидност. <0>Прочитајте више." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Оптимистични Етхерсцан" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Ван опсега" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Излаз се процењује. Ако се цена промени за више од {0}%, ваша трансакција ће се вратити." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Излаз се процењује. Добићете најмање <0>{0} {1} или ће се трансакција вратити." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Излаз ће бити послат на <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Власник" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Фондови који учествују" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "нерешен" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Потврдите да желите да уклоните ову листу тако што ћете откуцати УКЛОНИ" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Повежите се са слојем 1 Етхереум" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Повежите се са одговарајућом мрежом Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Унесите реч „{confirmWord}“ да бисте омогућили експертни режим." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Полигон Бридге" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Полигонсцан" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Фонд" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Фонд пронађен!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Курс фонда" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Курс фонда" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Удружени жетони у наградном фонду:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Сакупљено {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Преглед фондова" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Преглед" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Цена" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Разлика у цени:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Утицај на цену" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Учинак на цену је превисок" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Цена ажурирана" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Распон цена" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Цена:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Цене и удео у фонду" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Предлог" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Предлог поднет" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Наслов предлога" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Предлози" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Овде ће се појавити предлози које су поднели чланови заједнице." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Предложена акција" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Предлагач" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protocol Disclaimer" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "У реду" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Стопе" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Прочитајте више о UNI-ју" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Прочитајте више о управљању Uniswap-ом" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Прочитајте више о обезбеђивању ликвидности" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Прочитајте више о неподржаним материјалима" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Недавне трансакције" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Прималац" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Уклоните" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Уклоните <0/> и <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Уклони износ" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Уклони делегата" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Уклони ликвидност" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Уклони листу" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Уклањање {0} {1} и {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Уклањање {0} {1} и{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Рекуест Феатурес" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Повратак" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Претражите име или налепите адресу" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Изаберите Упари" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Изаберите мрежу" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Изаберите жетон" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Изаберите жетон да бисте пронашли вашу V2 ликвидност." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Изаберите радњу" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Изабрани опсег" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Сопствени" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Сопствени делегат" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Поставите опсег цена" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Поставите почетну цену" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Удео фонда" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Удео фонда:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Прикажи Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Покажите затворене позиције" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Једноставно" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Клизна толеранција" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Нека средства нису доступна путем овог интерфејса, јер можда неће добро функционисати са паметним уговорима или из правних разлога не можемо да дозволимо трговање." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Нешто није у реду" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Корак 1. Набавите UNI-V2 токене ликвидности" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Поднесите нови предлог" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Подношење предлога" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Слање гласа" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Успео" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Успех" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Снабдевање" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Снабдевање {0} {1} и {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Размени" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Замени <0/> за тачно <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Замени свеједно" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Замените тачно <0/> за <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Замена није успела: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Замена {0} {1} за {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Хвала вам што сте део заједнице Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% Који ћете зарадити на накнадама." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap непроменљива x*y=k није испоштована разменом. То обично значи да један од токена које замењујете укључује прилагођено понашање приликом преноса." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Aplikacija preuzima blokčein podatke sa hostovane usluge The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Aplikacija preuzima podatke na lancu i konstruiše ugovorne pozive pomoću Infura API-ja." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Aplikacija preuzima optimalni trgovački put sa servera Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Aplikacija beleži anonimnu statistiku korišćenja kako bi se vremenom poboljšala." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Aplikacija bezbedno prikuplja adresu vašeg novčanika i deli je sa TRM Labs Inc. iz razloga rizika i usklađenosti." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Цена слања ове трансакције је више од половине вредности улазног износа." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Тренутна количина брзог гаса за слање трансакције на Л1. Накнаде за гас се плаћају у матичној валути Етхереума Етхер (ЕТХ) и деноминиране у ГВЕИ." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Процењена разлика између вредности улазних и излазних износа у УСД." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Токен за унос није могуће пренети. Можда постоји проблем са улазним токеном." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Тржишна цена је изван наведеног распона цена. Само депозит за једно средство." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Најновији број блока на овој мрежи. Цене се ажурирају за сваки блок." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Излазни токен се не може пренети. Можда постоји проблем са излазним токеном." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Излазни токен се не може пренети. Можда постоји проблем са излазним токеном. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Цена овог фонда је изван изабраног опсега. Ваша позиција тренутно не зарађује накнаде." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Цена овог фонда је у вашем одабраном опсегу. Ваша позиција тренутно зарађује накнаде." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Однос жетона које додате ће одредити цену овог фонда." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Трансакција није могла бити послата јер је рок истекао. Молимо вас да проверите да ваш рок за трансакцију није пренизак." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Нема података о ликвидности." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Ova aplikacija koristi sledeće API-je treće strane:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Овај фонд мора бити иницијализован да бисте могли да додате ликвидност. Да бисте иницијализирали, одаберите почетну цену за базен. Затим унесите опсег цена ликвидности и износ депозита. Накнаде за плин биће веће него обично због трансакције иницијализације." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Ова рута оптимизује ваш укупни учинак узимајући у обзир подељене руте, више скокова и цену гаса за сваки корак." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Ovaj token nije podržan u aplikaciji Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Овај алат ће безбедно пребацити вашу {0} ликвидност на V3. Процес је потпуно неповерљив захваљујући" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ова трансакција неће успети због кретања цена. Покушајте да повећате толеранцију на клизање. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ова трансакција неће успети или због кретања цена или због накнаде за пренос. Покушајте да повећате клизну толеранцију." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Савет: Прилагођени токени се чувају локално у вашем прегледачу" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "До" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "До (најмање)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token nije podržan" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Жетони" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Укупно депоновано" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Укупни депозити" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Трговачка рута" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Поставке трансакције" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Трансакција је предата" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Трансакција је завршена у" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Крајњи рок за трансакцију" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Трансакција је одбијена." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Токен за пренос" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Покушајте поново" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Укључите експертни режим" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI је стигао" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI токени представљају акције са правом гласа у управљању Uniswap-ом. Можете сами гласати за сваки предлог или пренети своје гласове трећој страни." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} спаљен" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Потребни су UNI-V2 LP токени. Једном када додате ликвидност у {0}-{1} можете уложити своје токене ликвидности на овој страници." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI без захтева" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Ненаплаћене накнаде" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Неодређено" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Неочекивана грешка. Није могуће проценити гас за замену." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Неочекивани проблем са проценом гаса. Молим вас, покушајте поново." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap управљање" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uslovi korišćenja usluge Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap доступан у: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Управљање разменом је доступно само на слоју 1. Пребаците мрежу на Етхереум Маиннет да бисте видели предлоге и гласали." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap рударење ликвидности" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap уговор о миграцији↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Непознат извор" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Непозната грешка{0}. Покушајте повећати толеранцију клизања. Напомена: накнада за токене за пренос и поновну надоградњу није компатибилна са Унисвап В3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Откључај гласове" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Откључај гласање" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Откључавање гласова" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Неподржано средство" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Неподржана средства" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Без наслова" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Одмотај" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Одмотајте <0/> до {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Ажурирање делегације" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Ажурирај листу" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Користите Унисвап Лабс АПИ да бисте добили брже понуде." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Корисник" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "В2 није доступан на слоју 2. Пребаците се на слој 1 Етхереум." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 ликвидност" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Цена:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Погледајте обрачунате накнаде и аналитику <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Погледајте листу" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Поглед на Етхерсцан-у" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Поглед на Екплореру" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Погледајте трансакцију у Екплореру" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Гласајте" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Гласајте против" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Гласајте за" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Гласајте против предлога {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Гласајте против предлога {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Гласајте против предлога {proposalKey} са разлогом \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Гласајте за предлог {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Гласајте за предлог {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Гласајте за предлог {proposalKey} са разлогом \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Гласајте за уздржавање по предлогу {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Гласајте за уздржавање по предлогу {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Гласајте за уздржавање од предлога {proposalKey} са разлогом \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Гласање се завршило {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Гласање се завршава приближно {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Гласање почиње отприлике {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Чека се потврда" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Адреса новчаника или ЕНС име" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Недељне награде" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Добродошли у тим Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Када потражите без повлачења, ваша ликвидност остаје у фонду рударења." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Када одустанете, уговор ће аутоматски захтевати UNI у ваше име!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Када се повучете, полаже се право на ваш UNI и ваша ликвидност се уклања из фонда рударења." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Повуците" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Повуци и затражи" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Повући депоновану ликвидност" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Повлачење {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Повукао UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Упакујте" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Замотајте <0/> до {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Погрешна мрежа" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Већ имате активан или на чекању предлог" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Стварате фонд" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Ви сте први пружалац ликвидности за овај Uniswap V3 фонд. Ваша ликвидност ће се мигрирати по тренутној цени {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Ви сте први пружалац ликвидности." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Можете или сами гласати за сваки предлог или пренети своје гласове трећој страни." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Сада можете трговати {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Немате довољно гласова за подношење предлога" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "Можда сте изгубили мрежну везу." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Можда бисте требали да сачекате док се мрежне накнаде не смање да бисте довршили ову трансакцију." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Морате повезати налог." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Морате да дате дозволу Uniswap паметним уговорима да бисте користили {0}. То морате учинити само једном по токену." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Морате да имате {formattedProposalThreshold} гласова да бисте поднели предлог" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Ликвидност треба да депонујете у Uniswap V3 само по цени за коју сматрате да је тачна. <0/> Ако се цена чини нетачном, можете извршити замену да бисте преместили цену или сачекајте да то учини неко други." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Такође ћете прикупљати накнаде зарађене на овој позицији." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Добићете" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Ваша V2 ликвидност" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Овде ће се појавити ваше активне В3 позиције ликвидности." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Ваши депозити ликвидности" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Ваш удео у фонду:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Ваша позиција" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Ваша позиција има 0 ликвидности и не зарађује провизије." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Ваша позиција ће се појавити овде." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Ваша позиција ће се 100% састојати од {0} по овој цени" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Ваша позиција ће бити 100% {0} по овој цени." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Ваша позиција неће зарађивати провизије нити ће се користити у трговини док се тржишна цена не помери у ваш опсег." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Ваше позиције" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Ваша стопа" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Укупни токени фонда:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Трошкови трансакције биће вам много већи јер укључују гас за стварање фонда." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Ваша трансакција може бити извршена" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Ваша трансакција можда неће успети" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Ваша трансакција ће се вратити ако је на чекању дуже од овог временског периода." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Ваша трансакција ће се вратити ако се цена неповољно промени за више од овог процента." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Ваше трансакције ће се појавити овде ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Ваш непотраживани UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "после клизања" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "потврди" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "за {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "гвеи" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "има чарапе емоџи" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "овде." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// или ipfs:// или ENS име" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "минута" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "преко {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "преко {0} листе токена" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Import token} other {Import tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> по <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Прилагођени токени" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Депоновано" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} зарађених накнада:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} чекању" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / недељно" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP токена доступно" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Гласова" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} по {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} жетона" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Цена:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Додао корисник" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Накнада од {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% базен" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% изабрано" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Рударење ликвидности" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Токени" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} жетона" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} токен бридге" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} по {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Повратак на Преглед фондова" - diff --git a/src/locales/sv-SE.po b/src/locales/sv-SE.po deleted file mode 100644 index 0fe16db3ea..0000000000 --- a/src/locales/sv-SE.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: sv_SE\n" -"Language-Team: Swedish\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: sv-SE\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Visa i Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(rensa alla)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(redigera)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Ta bort mottagaren" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI/vecka" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50 %" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75 %" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Alla förslag" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Röster" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Kontoanalys och upplupna avgifter<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Nuvarande pris: <1> <2 /> <3>{0} per {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Tips: Att ta bort tokens från poolen konverterar din position tillbaka till underliggande tokens enligt gällande kurs, proportionellt mot din andel av poolen. Upplupna avgifter ingår i de belopp du får." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Tips: Välj en åtgärd och beskriv ditt förslag för samhället. Förslaget kan inte ändras efter inlämning, så kontrollera all information innan du skickar in det. Röstperioden börjar omedelbart och pågår i sju dagar. För att föreslå en anpassad åtgärd, läs <1> dokumenten ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Tips: Använd det här verktyget för att hitta v2-pooler som inte automatiskt visas i gränssnittet." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Tips: När du lägger till likviditet får du pooltokens som representerar din position. Dessa tokens genererar automatiskt avgifter proportionellt mot din andel av poolen och kan lösas in när som helst." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Öppna upp för röstning för att förbereda för nästa förslag." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Välkommen till teamet Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "En minimitröskel på 0,25% av det totala UNI-utbudet krävs för att skicka in förslag" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Omkring" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Acceptera" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Konto" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktivt" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Lägg till" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Lägg till <0/> och <1/> i Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Lägg till delegat +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Fyll på likviditet" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Fyll på V2-likviditet" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Fyll på likviditet." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Lägg till mer likviditet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Lägg till {0} till Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Lägg till {0}-{1}-likviditet" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Lägg {0}/{1} V3-likviditet" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Tillagt {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adressen har inget tillgängligt krav" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Mot" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Tillåt migrering av LP-token" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Tillåt transaktioner med hög prispåverkan och hoppa över bekräftelseskärmen. Använd på egen risk." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Tillåt Uniswap-protokollet att använda din {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Tillåten" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Belopp" - -#: src/hooks/useSwapCallback.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." -msgstr "Ett fel uppstod när det här försöket skulle genomföras. Du kan behöva öka din glidningstolerans. Om det inte fungerar kan det finnas en inkompatibilitet med det token du handlar. Obs: avgift för överföring och rebase-tokens är oförenliga med Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Godkänn" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Godkänn token" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Godkänn {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Godkänd" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Godkänner" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Godkänner {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiskan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum Bridge" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum är i beta och kan uppstå stillestånd. Under stillestånd tjänar din position inga avgifter och du kommer inte att kunna ta bort likviditet. <0> Läs mer." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Är du säker?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Som medlem i Uniswap-gemenskapen kan du begära att UNI används för röstning och styrning.<0/><1/><2>Läs mer om UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Minst {0} {1} och {2} {3} kommer att återbetalas till din plånbok på grund av det valda prisintervallet." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Automatiskt" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Auto Router API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Tillgänglig för insättning: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Saldo: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Bäst för exotiska par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Bäst för de flesta par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Bäst för stabila par." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Bäst för mycket stabila par." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Bästa prisväg kostar ~{formattedGasPriceString} i gas." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Blockerad adress" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Bro" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Genom att fylla på likviditet kommer du att tjäna 0,3 procent av alla affärer med detta par proportionellt mot din andel av poolen. Avgifter läggs till poolen, samlas in i realtid och kan krävas vid likviditetsutflöde." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Genom att ansluta en plånbok godkänner du Uniswap Labs <0>Användarvillkor och bekräftar att du har läst och förstått Uniswap <1>Protocol Disclaimer." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Inställt" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Ändra" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Diagram" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Kontrollera nätverksstatus" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Kolla in våra v3 LP-genomgångs och migrationsguider." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Krav" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Gör anspråk på <0/> för {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Gör krav på UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Gör krav på UNI-token" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Hämta UNI -belöning för {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Begär avgifter" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Gör anspråk på dina UNI-tokens" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Begärda" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Gjorde krav på UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Påstod!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Kräver" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Gör krav på UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Kräver {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Rensa alla" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Rensa alla" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Stäng" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Stängd" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Samla" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Samla som WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Samla in avgifter" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Samla {0}/{1} avgifter" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Insamlad" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Samlar" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Insamlingsavgifter" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Insamlingsavgifterna kommer att dra av för närvarande tillgängliga avgifter för dig." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Bekräfta" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Bekräfta tillförsel" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Bekräfta byte" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Bekräfta transaktionen i din plånbok" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Bekräfta transaktionen i plånboken" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Anslut plånbok" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Anslut en plånbok" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Anslut till en plånbok för att hitta pooler" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Anslut till en plånbok för att visa din V2-likviditet." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Anslut till en plånbok för att visa din likviditet." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Ansluten med {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopierad" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Kopiera adress" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Skapa pool & tillgång" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Skapa förslag" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Skapa ett par" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Skapa en pool" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Skapa en tvistefråga på GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Skapa en pool och lägg till {0}/{1} V3-likviditet" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Skapa en pool." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Skapa {0}/{1} V3 pool" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Nuvarande pris" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Nuvarande {0} pris:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Mörkt tema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Besegrad" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Delegera röster" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Delegera rösträtten till {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Delegerat till:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Delegerar röster" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Insättning" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Insättningsbelopp" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Sätt in UNI-V2 LP-tokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Insättningslikviditet" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Sätt in tokens till {label} nätverket." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Sätt in din likviditetsleverantörs tokens för att få UNI, Uniswap-protokollets styrningssymbol." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Insatt likviditet:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Insatt {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Insättning av likviditet" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Beskrivning" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detaljerad" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Information" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Koppla från" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Brist på överensstämmelse" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Avfärda" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokument" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Ser du inte en av dina v2-positioner? <0>Importera den." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Intjänade UNI-tokens representerar röstandelar i Uniswap-styrning." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Redigera" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Effektivitetsjämförelse" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Ange en procentandel" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Ange en mottagare" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Ange en giltig toleransprocent" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Ange en adress för att utlösa ett UNI-krav. Om adressen har några UNI tillgängliga kommer de att skickas till dem vid inlämning." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Ange ett belopp" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Ange giltig listplats" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Ange giltig tokenadress" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Ange {0} belopp" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Fel" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Fel vid anslutning" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Fel vid anslutning. Prova att uppdatera sidan." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Fel vid import av lista" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Uppskattningen kan skilja sig beroende på gasinställningarna i din plånbok" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Beräknad nätavgift" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Avrättade" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Expertläge" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Expertläget stänger av bekräftelsetransaktionen och tillåter handel med hög tolerrans som ofta resulterar i dåliga kurser och penningförluster." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Utgånget" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Utforska Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Det gick inte att byta nätverk från Uniswap-gränssnittet. För att kunna använda Uniswap på {0}måste du byta nätverk i din plånbok." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Avgiftsnivå" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Avgiftsnivå" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Får bästa pris..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "För" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "För varje pool som visas nedan, klicka på migrera för att ta bort din likviditet från Uniswap V2 och deponera den i Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Från" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Från (som mest)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Komplett utbud" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Fullständiga positioner kan tjäna mindre avgifter än koncentrerade positioner. Läs mer <0> här ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Få support angående brist på överensstämmelse" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Hjälpcenter" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Dölj" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Dölj stängda positioner" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Hög prispåverkan" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Hur den här appen använder API:er" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Jag förstår" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Om du köper en token från den här listan kanske du inte kan sälja tillbaka den." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Importera" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Importera lista" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Importera pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Importera V2-pool" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Importera på egen risk" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Inom intervallet" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Öka likviditeten" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Inledande priser och poolandel" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Initierar..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Inmatningen uppskattas. Du kommer att sälja högst <0>{0} {1} annars kommer transaktionen att återställas." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Installera Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Otillräcklig likviditet för denna handel." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Otillräckligt {0} saldo" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Gränssnittsinställningar" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Ogiltigt par" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Ogiltigt par." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ogiltig prisinmatning" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Ogiltigt intervall valt. Minimipriset måste vara lägre än maxpriset." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Ogiltig mottagare" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Språk" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Lär dig" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Lär dig mer om att tillhandahålla likviditet" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Läs mer" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Juridik och integritet" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Ljus tema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likviditet" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likviditetsdata saknas." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Belöningar för likviditetsleverantör" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likviditetsleverantörer tjänar en avgift på 0,3 procent på alla affärer i proportion till sin andel av poolen. Avgifter läggs till poolen, samlas in i realtid och kan krävas vid likviditetsutflöde." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listor" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Laddad" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Laddar" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Hantera" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Hantera likviditet i belöningspoolen" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Hantera tokenlistor" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Hantera den här poolen." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Högst" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maximalt pris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maximalt pris" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Högst:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maximalt skickat" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Meny" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Migrera" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Migrera likviditet till V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Migrera V2-likviditet" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Migrera dina likviditetstoken från Uniswap V2 till Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Migrera {0}/{1} -likviditet till V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Migrerar" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Minimipris" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimipris" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Minimum:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum mottaget" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Beroenden saknas" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Mer" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Nätverksavgift" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Nätverksvarning" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Nätverksavgifterna överstiger 50 % av bytessumman!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Ny position" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Ingen V2-likviditet hittades." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Inga aktiva pooler" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Inga data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Ingen beskrivning." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Ingen likviditet hittades." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Ingen pool hittades." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Inga förslag hittades." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Inga resultat hittades." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Inte skapad" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "AV" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "PÅ" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ANVÄND DETTA LÄGE BARA OM DU VET VAD DU GÖR." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Av" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "På" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "När du är nöjd med kursen klicka leverans för att granska." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Endast UNI-röster som var självdelegerade eller delegerade till en annan adress innan block {0} har rätt att rösta." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Hoppsan! Ett okänt fel inträffade. Uppdatera sidan eller använd en annan webbläsare eller enhet." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism Gateway" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimism är i Beta och kan uppleva driftstopp. Optimism räknar med planerade driftstopp för att uppgradera nätverket inom en snar framtid. Under driftstopp kommer din position inte att tjäna några avgifter och du kommer inte att kunna ta bort likviditet. <0>Läs mer." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistisk Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Utanför intervallet" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Beräknad utdata. Om priset ändras med mer än {0} procent återställs din transaktion." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Utmatningen är uppskattad. Du kommer att få minst <0>{0} {1} annars kommer transaktionen att återställas." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Utmatningen kommer att skickas till <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Ägare" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Deltagande pooler" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "I väntan på" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Bekräfta att du vill ta bort listan genom att skriva REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Anslut till Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Anslut till lämpligt Ethereum-nätverk." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Skriv in ordet \"{confirmWord}\" för att aktivera expertläge." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Polygon bro" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Pool hittad!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Poolkurs" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Poolkurs" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Pool tokens i belöningspoolen:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Poolad {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Översikt av pooler" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Förhandsvisning" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Pris" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Prisskillnad:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Prispåverkan" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Prispåverkan för hög" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Priset uppdaterat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Prisintervall" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Pris:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Priser och poolandel" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Förslag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Förslaget inlämnat" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Förslagets titel" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Förslag" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Förslag som lämnats in av medlemmar i gemenskapen kommer att visas här." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Föreslagen åtgärd" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Förslagsgivare" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokollfriskrivning" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Kö" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Kurser" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Läs mer om UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Läs mer om Uniswap-styrning" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Läs mer om att tillhandahålla likviditet" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Läs mer om tillgångar som inte stöds" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Nyligen genomförda transaktioner" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Mottagare" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Ta bort" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Ta bort <0/> och <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Ta bort belopp" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Ta bort delegering" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Ta bort likviditet" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Ta bort lista" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Tar bort {0} {1} och {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Ta bort {0} {1} och{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Begär funktioner" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Återgå" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Sök namn eller klistra in adress" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Välj Par" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Välj ett nätverk" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Välj en token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Välj en token för att hitta din v2-likviditet." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Välj en åtgärd" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Valt intervall" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Själv" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Självdelegering" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Ange prisintervall" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Ställ in startpris" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Andel av poolen" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Andel av Pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Visa Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Visa stängda positioner" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Enkel" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Toleransmarginal" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Vissa tillgångar är inte tillgängliga via detta gränssnitt eftersom de kanske inte fungerar bra med smarta kontrakt eller vi inte kan tillåta handel av juridiska skäl." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Något gick snett" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Steg 1. Få UNI-V2 likviditetstokens" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Skicka in nytt förslag" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Skicka förslag" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Skickar röstning" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Lyckades" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Framgång" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Tillgång" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Levererar {0} {1} och {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Byt" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Byt <0/> för exakt <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Byt ändå" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Byt exakt <0/> för <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Byte misslyckades: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Byter ut {0} {1} mot {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Tack för att du deltar i Uniswap-gemenskapen<0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Den procent du tjänar i avgifter." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap-invarianten x * y = k var inte nöjd med bytet. Detta innebär vanligtvis att ett av de token du byter innehåller anpassat beteende vid överföring." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Appen hämtar blockchain-data från The Graphs värdtjänst." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Appen hämtar data i kedjan och konstruerar kontraktsanrop med ett Infura API." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Appen hämtar den optimala handelsvägen från en Uniswap Labs-server." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Appen loggar anonymiserad användningsstatistik för att förbättras över tid." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Appen samlar säkert in din plånboksadress och delar den med TRM Labs Inc. av risk- och efterlevnadsskäl." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Kostnaden för att skicka den här transaktionen är mer än hälften av värdet på det ingående beloppet." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Det aktuella snabbgasbeloppet för att skicka en transaktion på L1. Gasavgifter betalas i Ethereums inhemska valuta Ether (ETH) och denomineras i GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Den uppskattade skillnaden mellan USD-värdena för ingående och utgående belopp." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Inmatningstoken kan inte överföras. Det kan finnas ett problem med inmatningtoken." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Marknadspriset ligger utanför ditt angivna prisintervall. Endast insättning för enstaka tillgång." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Det senaste blocknumret på detta nätverk. Priserna uppdateras på varje block." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Utmatningstoken kan inte överföras. Det kan finnas ett problem med utmatningtoken." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Utmatningstoken kan inte överföras. Det kan finnas ett problem med utmatningtoken. Obs att avgifter för överföring och rebase-tokens är oförenliga med Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Priset för denna pool ligger utanför ditt valda intervall. Din position tjänar för närvarande inte avgifter." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Priset för denna pool ligger inom ditt valda intervall. För närvarande tjänar din position avgifter." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Förhållandet mellan tokens du lägger till kommer att bestämma priset på denna pool." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Transaktionen kunde inte skickas eftersom tidsfristen har löpt ut. Kontrollera att din transaktionstidsfrist inte är för kort." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Det finns inga likviditetsdata." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Den här appen använder följande API:er från tredje part:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Denna pool måste initieras innan du kan lägga till likviditet. För att initialisera, välj ett startpris för poolen. Ange sedan ditt likviditetsprisklass och insättningsbelopp. Gasavgifterna kommer att vara högre än vanligt på grund av initialiseringstransaktionen." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Denna rutt optimerar din totala produktion genom att ta hänsyn till delade rutter, flera hopp och gaskostnaden för varje steg." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Denna token stöds inte i Uniswap Labs-appen" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Detta verktyg migrerar säkert din {0} likviditet till V3. Processen är helt pålitlig tack vare" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Denna transaktion kommer inte att lyckas på grund av prisrörelser. Försök öka din toleransmarginal. Obs att avgifter vid överföring och rebase-tokens är oförenliga med Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Denna transaktion kommer inte att lyckas antingen på grund av prisrörelser eller avgift vid överföring. Försök att öka din toleransmarginal." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Tips: Anpassade tokens lagras lokalt i din webbläsare" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Till" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Till (minst)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Token stöds inte" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Tokens" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Totalt insatt" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Summa insättningar" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Handelsväg" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Transaktionsinställningar" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Transaktion skickad" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Transaktionen slutfördes" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Tidsfrist för transaktion" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Transaktionen avvisades." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Överför Token" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Försök igen" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Aktivera expertläge" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI har anlänt" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI-tokens representerar röstandelar i Uniswap-styrning. Du kan själv rösta på varje förslag eller delegera dina röstningar till en tredje part." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} bränd" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP-tokens krävs. När du har lagt till likviditet till {0}-{1} poolen kan du satsa dina likviditetstoken på denna sida." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Okrävda UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Ej krävda avgifter" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Obestämd" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Oväntat fel. Det gick inte att uppskatta gasen för bytet." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Oväntat problem med att uppskatta gasen. Var god försök igen." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap-styrning" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs användarvillkor" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap tillgänglig på: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap-styrning är endast tillgänglig i Layer 1. Byt ditt nätverk till Ethereum Mainnet för att se förslag och rösta." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap likviditetsutvinning" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap migrationskontrakt↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Okänd källa" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Okänt fel{0}. Försök öka din toleransmarginal. Obs att avgifter vid överföring och rebase-tokens är oförenliga med Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Lås upp röster" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Lås upp röstning" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Låser upp röster" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Tillgång som inte stöds" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Tillgångar som inte stöds" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Ofrälse" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Packa upp" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Packa upp <0/> till {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Uppdatera delegering" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Uppdatera lista" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Använd Uniswap Labs API för att få snabbare offerter." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Användare" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 är inte tillgängligt i Layer 2. Byt till Layer 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2-likviditet" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} pris:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Visa upplupna avgifter och analyser <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Visa lista" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Visa på Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Visa i Utforskare" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Visa transaktion i Utforskaren" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Rösta" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Rösta mot" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Rösta för" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Rösta emot förslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Rösta emot förslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Rösta emot förslag {proposalKey} med anledning \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Rösta för förslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Rösta på förslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Rösta på förslag {proposalKey} med anledning \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Rösta för att avstå från förslag {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Rösta för att avstå från förslag {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Rösta för att avstå från förslag {proposalKey} med anledning \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Röstningen avslutades {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Röstningen slutar ungefär {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Omröstningen börjar cirka {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Väntar på bekräftelse" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Plånboksadress eller ENS-namn" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Veckovisa belöningar" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Välkommen till teamet Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "När du gör anspråk utan att ta ut medel återstår din likviditet i gruvpoolen." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "När du går ut kommer avtalet att automatiskt kräva UNI för din räkning!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "När du går ut, krävs din UNI och din likviditet tas bort från gruvpoolen." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Uttag" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Uttag och begär" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Ta ut insatt likviditet" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Tar ut {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Tog ut UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Slå in" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Radera <0/> till {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Fel nätverk" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Du har redan ett aktivt eller väntande förslag" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Du skapar en pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Du är den första likviditetsleverantören för denna Uniswap V3-pool. Din likviditet kommer att migrera till nuvarande {0} pris." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Du är den första likviditetsleverantören." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Du kan antingen själv rösta på varje förslag eller delegera dina röstningar till en tredje part." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Du kan handla {0} nu" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Du har inte tillräckligt med röster för att skicka in ett förslag" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Du har inte likviditet i denna pool ännu." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Du kan överväga att vänta tills nätverksavgifterna sjunker för att slutföra denna transaktion." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Du måste ansluta ett konto." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Du måste ge Uniswaps smarta kontrakt tillstånd att använda din {0}. Du behöver bara göra detta en gång per token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Du måste ha {formattedProposalThreshold} röster för att skicka in ett förslag" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Du bör endast sätta in likviditet i Uniswap V3 till ett pris som du anser är korrekt. <0/>Om priset verkar felaktigt, kan du antingen göra ett byte för att ändra priset eller vänta på att någon annan gör det." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Du kommer också att samla in avgifter som tjänats in från den här positionen." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Du kommer att få" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Din V2-likviditet" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Dina aktiva V3-likviditetspositioner kommer att visas här." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Dina likviditetsinlåningar" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Din poolandel:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Din position" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Din position har 0 likviditet och tjänar inga avgifter." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Din position kommer att visas här." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Din position kommer att vara sammansatt till 100 procent av {0} till detta pris" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Din position kommer att vara till 100 procent {0} till detta pris." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Din position kommer inte att tjäna avgifter eller användas i affärer tills marknadspriset kommer in i ditt intervall." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Dina positioner" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Din kurs" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Dina totala pooltoken:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Din transaktionskostnad kommer att bli mycket högre eftersom den inkluderar gasen för att skapa poolen." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Din transaktion kan bli toppkandidat" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Din transaktion kan misslyckas" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Din transaktion återställs om den väntar längre än denna tidsperiod." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Din transaktion kommer att återgå om priset ändras ogynnsamt med mer än denna procentsats." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Dina transaktioner kommer att visas här..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Din outnyttjade UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "efter glidning" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "bekräfta" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "för {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "har socks emotikon" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "här." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// eller ipfs:// eller ENS-namn" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "minuter" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "via {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "via {0} token-lista" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Import token} other {Import tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> per <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Anpassade token" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} insatta" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} injänade avgifter:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} väntande" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI/vecka" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP-tokens tillgängliga" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} röster" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} per {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} tokens" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} pris:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Tillagd av användare" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% avgiftsnivå" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% pool" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% välj" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Likviditetsutvinning" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP-tokens" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} tokens" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} token bridge" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} per {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Tillbaka till poolöversikt" - diff --git a/src/locales/sw-TZ.po b/src/locales/sw-TZ.po deleted file mode 100644 index 1d01774309..0000000000 --- a/src/locales/sw-TZ.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: sw_TZ\n" -"Language-Team: Swahili, Tanzania\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: sw-TZ\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Fungua kwa uchunguzi zaidi)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(futa zote)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(rekebisha)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Ondoa mpokeaji" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / wiki" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Mapendekezo Yote" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Kura" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Uchanganuzi wa akaunti na makato iliyokusanywa<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Bei ya Sasa:<1><2/><3>{0} kwa {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Kidokezo: Kuondoa tokeni za share hubadilisha msimamo wako kuwa ishara za msingi kwa kiwango cha sasa, sawia na sehemu yako ya share. Makato yaliyokusanywa imejumuishwa katika kiasi unachopokea." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>Kidokezo: Chagua kitendo na ueleze pendekezo lako kwa jamii. Pendekezo haliwezi kubadilishwa baada ya kuwasilisha, kwa hivyo tafadhali thibitisha habari zote kabla ya kuwasilisha. Kipindi cha kupiga kura kitaanza mara moja na kitadumu kwa siku 7. Kupendekeza kitendo maalum cha kwako, <1>soma maelezo." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Kidokezo: Tumia zana hii kupata shares ya v2 ambayo hayaonekani kiotomatiki kwenye muonekano wa nje." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Kidokezo: Unapoongeza mtaji, utapokea ishara za share zinazowakilisha msimamo wako. Hizi ishara moja kwa moja hupata ada kulingana na sehemu yako ya share, na inaweza kubadilika kwa matumisi kwa wakati wowote." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Kufungua upigaji kura kujiandaa kwa pendekezo linalofuata." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Karibu kwenye timu ya Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Kiwangu cha chini cha 0.25% ya jumla ya usambazaji wa UNI inahitajika kuwasilisha mapendekezo" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Kuhusu" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Kubali" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Akaunti" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Inatumika" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Ongeza" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Ongeza <0/> na <1/> kwenye Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Ongeza Mjumbe +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Ongeza Mtaji" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Ongeza Mtaji wa V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Ongeza Mtaji." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Ongeza Mtaji zaidi" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Ongeza {0} kwa Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Ongeza mtaji {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Kuongeza {0}/{1} V3 mtaji" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Imeongezwa {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Anwani haina dai linalopatikana" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Kupinga" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Ruhusu uhamiaji wa ishara za LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Ruhusu biashara ya athari za bei ya juu na uruke skrini ya thibitisho. Tumia kwa hatari yako mwenyewe." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Ruhusu Itifaki ya Uniswap kutumia {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Ruhusu" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Kiasi" - -#: src/hooks/useSwapCallback.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." -msgstr "Hitilafu ilitokea wakati wa kujaribu kutekeleza ubadilishaji huu. Unaweza kuhitaji kuongeza uvumilivu wako wa kuteleza. Ikiwa hiyo haifanyi kazi, kunaweza kuwa na kutokubaliana na ishara unayofanya biashara. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Sibitisha" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Sibitisha Tokeni" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Sibitisha {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Imesibitishwa" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Kusibitisha" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Kusibitisha {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Daraja la Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum iko katika Beta na inaweza kupata wakati wa kupumzika. Wakati wa kupumzika, msimamo wako hautapata ada na hautaweza kuondoa ukwasi. <0> Soma zaidi." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Una uhakika?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Kama mwanachama wa jamii ya Uniswap unaweza kudai UNI kutumika kwa kupiga kura na utawala. <0 /> <1 /> <2> Soma zaidi kuhusu UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Angalau {0} {1} na {2} {3} zitarejeshwa kwa mkoba wako kwa sababu ya bei iliyochaguliwa." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Otomatiki" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API ya Njia ya Kiendeshaji" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Inapatikana kwa kutuma: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Salio: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Bora kwa pair maalum." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Bora kwa pair nyingi." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Bora kwa pair thabiti." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Bora kwa jozi imara sana." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Gharama bora za njia ya bei ~{formattedGasPriceString} kwa gesi." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Anwani iliyozuiliwa" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Daraja" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Kwa kuongeza ukwasi utapata 0.3% ya biashara zote kwenye jozi hii sawia na sehemu yako ya dimbwi. Ada zinaongezwa kwenye dimbwi, zinapatikana kwa wakati halisi na zinaweza kudaiwa kwa kuondoa ukwasi wako." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Kwa kuunganisha mkoba, unakubaliana na Uniswap Labs ' <0>Masharti ya Huduma na kutambua kwamba umesoma na kuelewa Uniswap <1>Itifaki Kanusho." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Imeghairishwa" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Badilisha" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Chati" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Angalia hali ya mtandao" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Angalia mwongozo wetu wa v3 LP na mwongozo wa uhamiaji." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Chukua" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Dai <0 /> kwa {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Chukua UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Chukua UNI tokeni" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Dai malipo ya UNI kwa {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Chukua makato" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Chukua UNI tokeni yako" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Ushachukua" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Ushachukua UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Ushachukua!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Inachukuliwa" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Inachukuliwa UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Inachukuliwa {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Futa Yote" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Futa yote" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Funga" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Imefungwa" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Kusanya" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Kusanya kama WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Kusanya makato" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Kukusanya {0}/{1} makato" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Imekusanywa" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Kusanya" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Kukusanya makato" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Kukusanya ada kutaondoa ada zinazopatikana sasa kwako." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Kubali" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Thibitisha Ugavi" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Thibitisha Kubadilisha" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Thibitisha shughuli hii kwenye mkoba wako" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Thibitisha shughuli kwenye mkoba" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Unganisha Mkoba" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Unganisha mkoba" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Unganisha kwenye mkoba kupata mabwawa" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Unganisha kwenye mkoba ili uone ukwasi wako wa V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Unganisha kwenye mkoba ili uone ukwasi wako." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Imeunganishwa na {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Imenakiliwa" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Nakili Anwani" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Unda Dimbwi na Ugavi" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Unda Pendekezo" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Unda jozi" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Unda bwawa" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Unda suala kwenye GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Kujenga bwawa na kuongeza {0}/{1} V3 ukwasi" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Unda bwawa." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Kujenga {0}/{1} V3 pool" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Bei ya sasa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Bei ya sasa ya {0}" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Mandhari meusi" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Imeshindwa" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Shiriki Kura" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Kabidhi nguvu ya kupiga kura kwa {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Imekabidhiwa kwa:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Kukabidhi kura" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Amana" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Kiasi cha Amana" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Amana UNI-V2 LP Ishara" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Amana ukwasi" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Weka alama kwenye mtandao {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Weka ishara zako za Mtoaji wa Liquidity kupokea UNI, ishara ya utawala wa itifaki ya Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Ukiritimba uliowekwa:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Iliyowekwa {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Kuweka Liquidity" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Maelezo" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Kina kina" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Maelezo" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Tenganisha" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Ondoa" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Hati" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Je! Huoni moja ya nafasi zako za v2? <0> Ingiza." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Ishara zilizopatikana za UNI zinawakilisha hisa za kupiga kura katika utawala wa Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Hariri" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Ufanisi Kulinganisha" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Ingiza asilimia" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Ingiza mpokeaji" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Ingiza asilimia halali ya utelezi" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Ingiza anwani ili kuchochea dai la UNI. Ikiwa anwani ina UNI yoyote inayodaiwa itatumwa kwao kwa kuwasilisha." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Ingiza kiasi" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Ingiza eneo halali la orodha" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Ingiza anwani halali ya ishara" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Weka kiasi {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Kosa" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Hitilafu wakati wa kuunganisha" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Hitilafu wakati wa kuunganisha. Jaribu kuonyesha ukurasa upya." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Hitilafu ya kuingiza orodha" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Kadirio linaweza kutofautiana kwa sababu ya mipangilio ya gesi ya mkoba wako" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Kadirio la ada ya mtandao" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Wanyongwa" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Njia ya Mtaalam" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Hali ya mtaalam inazima kidhibitisho cha manunuzi na inaruhusu biashara nyingi za utelezi ambazo mara nyingi husababisha viwango vibaya na pesa zilizopotea." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Imeisha muda" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Gundua Takwimu za Uniswap." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Imeshindwa kubadilisha mitandao kutoka kwa Kiolesura cha Uniswap. Ili kutumia Uniswap kwenye {0}, lazima ubadilishe mtandao kwenye pochi yako." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Kiwango cha ada" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Kiwango cha ada" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Inaleta bei nzuri..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Kwa maana" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Kwa kila dimbwi lililoonyeshwa hapa chini, bonyeza hamisha ili kuondoa ukwasi wako kutoka kwa Uniswap V2 na uweke kwenye Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Kutoka" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Kutoka (zaidi)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Kamili Kamili" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Nafasi kamili zinaweza kupata ada kidogo kuliko nafasi zilizojilimbikizia. Jifunze zaidi <0> hapa ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Pata usaidizi juu ya Ugomvi" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Kituo cha Usaidizi" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Ficha" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ficha nafasi zilizofungwa" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Athari ya Bei ya Juu" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Jinsi programu hii inavyotumia API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Naelewa" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Ukinunua tokeni kutoka kwa orodha hii, huenda usiweze kuiuza tena." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Ingiza" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Orodha ya kuagiza" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Bwawa la kuagiza" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Ingiza Bwawa la V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Ingiza kwa hatari yako mwenyewe" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Katika anuwai" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Ongeza Liquidity" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Bei za awali na sehemu ya dimbwi" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Inaanzisha ..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Ingizo inakadiriwa. Utauza zaidi <0>{0} {1} au shughuli itarejea." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Sakinisha Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Ukosefu wa kutosha wa biashara hii." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Usawa wa kutosha {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Mipangilio ya Kiolesura" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Jozi batili" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Jozi batili." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Ingizo batili la bei" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Masafa batili yamechaguliwa. Bei ya min lazima iwe chini kuliko bei ya juu." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Mpokeaji si sahihi" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Lugha" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Jifunze" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Jifunze juu ya kutoa ukwasi" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Jifunze zaidi" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Kisheria na Faragha" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Mandhari mepesi" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Kioevu" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Data ya kioevu haipatikani." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Tuzo ya mtoaji wa kioevu" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Watoaji wa kioevu hupata ada ya 0.3% kwa biashara zote sawia na sehemu yao ya dimbwi. Ada zinaongezwa kwenye dimbwi, zinapatikana kwa wakati halisi na zinaweza kudaiwa kwa kuondoa ukwasi wako." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Orodha" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Imepakiwa" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Inapakia" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Simamia" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Dhibiti Liquidity katika Dimbwi la Tuzo" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Dhibiti Orodha za Ishara" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Simamia dimbwi hili." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Upeo" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Bei ya Juu" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Bei ya juu" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Upeo:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Upeo umetumwa" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menyu" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Hamia" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Hamisha Liquidity hadi V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Hamisha Kioevu cha V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Hamisha ishara zako za ukwasi kutoka kwa Uniswap V2 hadi Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Kuhamia {0}/{1} ukwasi V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Kuhamia" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Bei ndogo" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Bei ndogo" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Dak:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Kiwango cha chini kimepokelewa" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Kukosa utegemezi" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Zaidi" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Ada ya Mtandao" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Onyo la Mtandao" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Ada za mtandao zinazidi 50% ya kiasi cha ubadilishaji!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Nafasi mpya" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Hakuna V2 Liquidity iliyopatikana." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Hakuna mabwawa ya kazi" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Hakuna data" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Hakuna maelezo." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Hakuna ukwasi uliopatikana." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Hakuna dimbwi lililopatikana." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Hakuna mapendekezo yaliyopatikana." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Hakuna matokeo yaliyopatikana." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Haijaundwa" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "ZIMA" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "Washa" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "TUMIA Modi hii tu ikiwa unajua unachofanya." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Imezimwa" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Washa" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Mara tu unapofurahi na usambazaji wa kiwango cha bonyeza kukagua." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Kura tu za UNI ambazo zilikabidhiwa kibinafsi au kupelekwa kwa anwani nyingine kabla ya kizuizi {0} zinastahili kupiga kura." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Lo! Hitilafu isiyojulikana ilitokea. Tafadhali onyesha upya ukurasa, au tembelea kutoka kwa kivinjari kingine au kifaa." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Lango la Matumaini" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Matumaini iko kwenye Beta na inaweza kukumbwa na wakati wa kutokuwepo. Matumaini yanatarajia muda wa chini uliopangwa ili kuboresha mtandao katika siku za usoni. Wakati wa mapumziko, nafasi yako haitapata ada na hutaweza kuondoa ukwasi. <0>Soma zaidi." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Matarajio ya Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Kati ya masafa" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Pato inakadiriwa. Ikiwa bei itabadilika kwa zaidi ya {0}% shughuli yako itarejea." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Pato inakadiriwa. Utapokea angalau <0>{0} {1} au shughuli itarejea." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Pato litatumwa kwa <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Mmiliki" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Mabwawa ya kushiriki" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Inasubiri" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Tafadhali thibitisha ungependa kuondoa orodha hii kwa kuandika ONDOA" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Tafadhali unganisha kwenye Tabaka 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Tafadhali unganisha kwa mtandao unaofaa wa Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Tafadhali andika neno \"{confirmWord}\" kuwezesha hali ya mtaalam." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Daraja la Polygon" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Dimbwi" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Dimbwi Lilipatikana!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Kiwango cha Dimbwi" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Kiwango cha dimbwi" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Ishara za dimbwi kwenye dimbwi la tuzo:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Iliyounganishwa {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Muhtasari wa Mabwawa" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Hakiki" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Bei" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Tofauti ya Bei:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Athari ya Bei" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Athari za Bei Juu sana" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Bei Imesasishwa" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Kiwango cha bei" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Bei:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Bei na sehemu ya dimbwi" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Pendekezo" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Pendekezo limewasilishwa" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Kichwa cha Pendekezo" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Mapendekezo" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Mapendekezo yaliyowasilishwa na wanajamii yataonekana hapa." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Hatua Iliyopendekezwa" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Mtangazaji" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Kanusho la Itifaki" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Imewekwa foleni" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Viwango" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Soma zaidi kuhusu UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Soma zaidi kuhusu Uniswap utawala" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Soma zaidi juu ya kutoa ukwasi" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Soma zaidi kuhusu mali zisizoungwa mkono" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Shughuli za Hivi Karibuni" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Mpokeaji" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Ondoa" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Ondoa <0 /> na <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Ondoa Kiasi" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Ondoa Mjumbe" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Ondoa Liquidity" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Ondoa orodha" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Kuondoa {0} {1} na {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Kuondoa {0} {1} na{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Omba Vipengele" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Kurudi" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Tafuta jina au ubandike anwani" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Chagua Jozi" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Chagua mtandao" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Chagua ishara" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Chagua ishara ili kupata v2 yako ukwasi." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Chagua kitendo" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Masafa yaliyochaguliwa" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Binafsi" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Ujumbe wa Kujitegemea" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Weka Kiwango cha Bei" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Weka Bei ya Kuanzia" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Sehemu ya Dimbwi" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Shiriki la Dimbwi:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Onyesha Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Onyesha nafasi zilizofungwa" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Rahisi" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Uvumilivu wa kuteleza" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Mali zingine hazipatikani kupitia kiolesura hiki kwa sababu zinaweza kufanya kazi vizuri na mikataba mizuri au hatuwezi kuruhusu biashara kwa sababu za kisheria." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Hitilafu imetokea" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Hatua ya 1. Pata tokeni za Liquidity za UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Tuma pendekezo jipya" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Kuwasilisha Pendekezo" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Kuwasilisha Kura" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Imefanikiwa" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Mafanikio" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Ugavi" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Kusambaza {0} {1} na {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Badilishana" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Badili <0 /> kwa haswa <1 />" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Badili Vyovyote vile" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Badilisha kabisa <0 /> kwa <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Kubadilisha kumeshindwa: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Kubadilisha {0} {1} kwa {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Asante kwa kuwa sehemu ya jamii ya Uniswap <0 />" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% Utakayopata katika ada." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Kiasi kisichobadilika x * y = k hakiridhika na ubadilishaji. Hii kawaida inamaanisha moja ya ishara unazobadilisha zinajumuisha tabia ya kawaida kwenye uhamishaji." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Programu huchota data ya blockchain kutoka kwa huduma inayopangishwa na The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Programu huchota data ya mtandaoni na kuunda simu za mkataba kwa kutumia API ya Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Programu hutafuta njia mojawapo ya biashara kutoka kwa seva ya Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Programu huweka takwimu za matumizi bila utambulisho ili kuboreshwa kadri muda unavyopita." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Programu hukusanya kwa usalama anwani ya mkoba wako na kuishiriki na TRM Labs Inc. kwa sababu za hatari na kufuata." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Gharama ya kutuma muamala huu ni zaidi ya nusu ya thamani ya kiasi cha pembejeo." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Kiasi cha sasa cha gesi ya haraka cha kutuma muamala kwenye L1. Ada za gesi hulipwa kwa sarafu ya asili ya Ethereum (ETH) na hutumika katika GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Tofauti inayokadiriwa kati ya thamani za USD za kiasi cha pembejeo na pato." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Ishara ya kuingiza haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara ya kuingiza." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Bei ya soko iko nje ya kiwango chako cha bei maalum. Amana ya mali moja tu." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Nambari ya hivi karibuni ya kuzuia kwenye mtandao huu. Bei zinasasishwa kwa kila block." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Ishara ya pato haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara ya pato." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ishara ya pato haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara ya pato. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Bei ya dimbwi hili iko nje ya masafa yako uliyochagua. Msimamo wako kwa sasa hautoi ada." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Bei ya dimbwi hili iko katika anuwai uliyochagua. Msimamo wako kwa sasa unapata ada." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Uwiano wa ishara unazoongeza zitaweka bei ya dimbwi hili." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Shughuli haikuweza kutumwa kwa sababu tarehe ya mwisho imepita. Tafadhali angalia kuwa tarehe ya mwisho ya ununuzi sio chini sana." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Hakuna data ya ukwasi." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Programu hii hutumia API za wahusika wengine zifuatazo:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Bwawa hili lazima lianzishwe kabla ya kuongeza ukwasi. Ili kuanzisha, chagua bei ya kuanzia ya bwawa. Kisha, ingiza anuwai ya bei ya ukwasi na kiwango cha amana. Ada ya gesi itakuwa kubwa kuliko kawaida kwa sababu ya shughuli za uanzishaji." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Njia hii huboresha jumla ya matokeo yako kwa kuzingatia njia zilizogawanyika, miinuko mingi na gharama ya gesi ya kila hatua." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Tokeni hii haitumiki katika programu ya Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Chombo hiki kitahamisha {0} kwa V3. Mchakato huo hauna shukrani kabisa kwa" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Uuzaji huu hautafaulu kwa sababu ya harakati za bei. Jaribu kuongeza uvumilivu wako wa kuteleza. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ununuzi huu hautafanikiwa ama kwa sababu ya kusonga kwa bei au ada kwenye uhamishaji. Jaribu kuongeza uvumilivu wako wa kuteleza." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Kidokezo: Ishara maalum huhifadhiwa ndani ya kivinjari chako" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Kwa" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Kwa (angalau)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Tokeni haitumiki" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Ishara" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Jumla iliyowekwa" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Amana ya jumla" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Njia ya Biashara" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Mipangilio ya shughuli" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Uwasilishaji Uwasilishaji" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Ununuzi umekamilika katika" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Mwisho wa shughuli" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Ununuzi umekataliwa." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Hati ya Kuhamisha" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Jaribu tena" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Washa Hali ya Mtaalam" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI imefika" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Ishara za UNI zinawakilisha hisa za kupiga kura katika utawala wa Uniswap. Unaweza kupiga kura kwa kila pendekezo mwenyewe au kupeana kura zako kwa mtu wa tatu." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} kuchomwa" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Ishara za UNI-V2 LP zinahitajika. Mara baada ya kuongeza ukwasi kwenye {0}-{1} unaweza kuweka ishara zako za ukwasi kwenye ukurasa huu." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Aujachukua UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Makato ambayo ayajachukuliwa" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Haijakadiriwa" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Hitilafu isiyotarajiwa. Haikuweza kukadiria gesi kwa ubadilishaji." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Suala lisilotarajiwa na kukadiria gesi. Tafadhali jaribu tena." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Utawala usiobadilika" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Sheria na Masharti ya Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Kubadilisha kunapatikana katika: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Utawala usiobadilishwa unapatikana tu kwenye Tabaka la 1. Badilisha mtandao wako uwe Ethereum Mainnet ili uone Mapendekezo na Kura." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uchimbaji wa ukwasi usiobadilika" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Mkataba wa uhamiaji usiobadilika↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Chanzo kisichojulikana" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Hitilafu isiyojulikana{0}. Jaribu kuongeza uvumilivu wako wa kuteleza. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Fungua Kura" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Fungua Upigaji Kura" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Kufungua Kura" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Sifa isiyotumika" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Mali zisizoungwa mkono" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Haina Jina" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Unwrap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Fungua <0/> hadi {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Sasisha Ujumbe" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Sasisha orodha" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Tumia API ya Uniswap Labs kupata manukuu haraka zaidi." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Mtumiaji" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 haipatikani kwenye Tabaka 2. Badilisha hadi Tabaka 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 ukwasi" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Bei ya V3 {0}" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Angalia ada na uchanganuzi ulioongezeka <0> ↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Angalia orodha" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Angalia kwenye Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Angalia kwenye Kichunguzi" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Angalia shughuli kwenye Kivinjari" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Piga kura" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Kura Dhidi ya" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Pigia Kura" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Piga kura dhidi ya pendekezo {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Piga kura dhidi ya pendekezo {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Piga kura dhidi ya pendekezo {proposalKey} kwa sababu \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Piga kura ya pendekezo {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Piga kura ya pendekezo {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Pigia kura pendekezo {proposalKey} kwa sababu \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Kura ya kuacha pendekezo {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Kura ya kuacha pendekezo {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Piga kura ya kuacha pendekezo {proposalKey} kwa sababu \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Upigaji kura uliisha {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Upigaji kura unaisha takriban {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Upigaji kura huanza takriban {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Inasubiri Uthibitisho" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Anwani ya Mkoba au jina la ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Tuzo za kila wiki" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Karibu kwenye timu ya Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Unapodai bila kuondoa ukwasi wako unabaki kwenye dimbwi la madini." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Unapojiondoa, mkataba utadai UNI kwa niaba yako!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Unapojiondoa, UNI yako inadaiwa na ukwasi wako umeondolewa kwenye dimbwi la madini." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Kutoa" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Ondoa & Dai" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Ondoa ukwasi uliowekwa" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Kuondoa {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Umeondoa UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Funga" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Funga <0/> hadi {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Mtandao Mbaya" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Tayari una pendekezo linalotumika au linalosubiri" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Unaunda dimbwi" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Wewe ndiye mtoaji wa kwanza wa ukwasi wa dimbwi hili la V3 lisilobadilishwa. Ukwasi wako kuhamia kwa bei {0}" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Wewe ndiye mtoaji wa kwanza wa ukwasi." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Unaweza kupiga kura juu ya kila pendekezo mwenyewe au upe kura zako kwa mtu wa tatu." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Sasa unaweza kufanya biashara {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Huna kura za kutosha kuwasilisha pendekezo" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Bado huna ukwasi katika dimbwi hili." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Unaweza kufikiria kusubiri hadi ada za mtandao zishuke ili kukamilisha muamala huu." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Lazima uunganishe akaunti." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Lazima upe Mkataba wa Uniswap ruhusa ya kutumia {0}yako. Lazima ufanye hivi mara moja tu kwa ishara." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Lazima uwe na {formattedProposalThreshold} ili kuwasilisha pendekezo" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Unapaswa kuweka tu ukwasi kwenye Uniswap V3 kwa bei unayoamini ni sahihi. <0 /> Ikiwa bei inaonekana si sahihi, unaweza kubadilisha kwa kuhamisha bei au subiri mtu mwingine afanye hivyo." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Pia utakusanya ada inayopatikana kutoka kwa nafasi hii." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Utapokea" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Ukiritimba wako wa V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Nafasi zako za ukwasi za V3 zinazotumika zitaonekana hapa." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Amana yako ya ukwasi" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Sehemu yako ya dimbwi:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Msimamo wako" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Nafasi yako ina ukwasi 0, na hailipi ada." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Msimamo wako utaonekana hapa." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Nafasi yako itakuwa 100% iliyo na {0} kwa bei hii" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Nafasi yako itakuwa 100% {0} kwa bei hii." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Msimamo wako hautapata ada au kutumiwa katika biashara hadi bei ya soko iingie katika anuwai yako." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Nafasi zako" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Kiwango chako" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Ishara zako za jumla za dimbwi:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Gharama yako ya ununuzi itakuwa kubwa zaidi kwani inajumuisha gesi kuunda dimbwi." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Shughuli yako inaweza kuwa mbele" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Shughuli yako inaweza kushindwa" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Shughuli yako itarejeshwa ikiwa inasubiri kwa zaidi ya kipindi hiki cha wakati." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Muamala wako utarejeshwa ikiwa bei itabadilika vibaya na zaidi ya asilimia hii." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Shughuli zako zitaonekana hapa ..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "UNI yako isiyodaiwa" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "baada ya kuteleza" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "thibitisha" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "kwa {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "ina soksi emoji" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "hapa." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https: // au ipfs: // au jina la ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "dakika" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "kupitia {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "kupitia orodha ya ishara {0}" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Leta ishara} other {Ingiza ishara}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0 /> kwa <1 />" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Ishara za Kimila" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Iliyowekwa" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} zimepatikana:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Inasubiri" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / wiki" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} ishara za UNI-V2 LP zinapatikana" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Kura" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} kwa {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "Ishara {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Bei {0} {1}" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Imeongezwa na mtumiaji" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Kiwango cha ada ya {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% bwawa" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "Chagua {0}" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "Uchimbaji wa Liquidity {0}-{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Shuhuda" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "Ishara {activeTokensOnThisChain}" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} daraja la ishara" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} kwa {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "Rudi kwa Muhtasari wa Mabwawa" - diff --git a/src/locales/th-TH.po b/src/locales/th-TH.po deleted file mode 100644 index 2b09caba28..0000000000 --- a/src/locales/th-TH.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: th_TH\n" -"Language-Team: Thai\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: th\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(ดูใน Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(ลบทั้งหมด)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(แก้ไข)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- ลบผู้รับ" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / สัปดาห์" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> ข้อเสนอทั้งหมด" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> โหวต" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>การวิเคราะห์บัญชีและค่าธรรมเนียมค้างจ่าย <1>" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>ราคาปัจจุบัน: <1/22/> <3>{0} ต่อ {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>เคล็ดลับ: การลบโทเค็นของพูลจะแปลงตำแหน่งของคุณกลับเป็นโทเค็นพื้นฐานที่อัตราปัจจุบัน โดยเป็นสัดส่วนกับส่วนแบ่งของพูลของคุณ ค่าธรรมเนียมค้างจ่ายรวมอยู่ในจำนวนเงินที่คุณได้รับ" - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>เคล็ดลับ: เลือกการดำเนินการและอธิบายข้อเสนอของคุณสำหรับชุมชน ไม่สามารถแก้ไขข้อเสนอได้หลังจากส่ง ดังนั้นโปรดตรวจสอบข้อมูลทั้งหมดก่อนส่ง ระยะเวลาการลงคะแนนจะเริ่มทันทีและมีอายุ 7 วัน หากต้องการเสนอการดำเนินการที่กำหนดเอง <1>อ่านเอกสาร ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>เคล็ดลับ: ใช้เครื่องมือนี้เพื่อค้นหาพูล v2 ที่ไม่ปรากฏในอินเทอร์เฟซโดยอัตโนมัติ" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>เคล็ดลับ: เมื่อคุณเพิ่มสภาพคล่อง คุณจะได้รับโทเค็นพูลที่แสดงตำแหน่งของคุณ โทเค็นเหล่านี้จะได้รับค่าธรรมเนียมโดยอัตโนมัติตามสัดส่วนของส่วนแบ่งในพูลของคุณ และสามารถแลกได้ทุกเมื่อ" - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>ปลดล็อกการโหวต เพื่อเตรียมรับข้อเสนอต่อไป" - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 ยินดีต้อนรับสู่ทีมยูนิคอร์น :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "เกณฑ์ขั้นต่ำ 0.25% ของอุปทาน UNI ทั้งหมดจะต้องส่งข้อเสนอ" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "เกี่ยวกับ" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "ยอมรับ" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "บัญชี" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "คล่องแคล่ว" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "เพิ่ม" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "เพิ่ม <0/> และ <1/> ไปยัง Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "เพิ่มผู้รับมอบสิทธิ์ +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "เพิ่มสภาพคล่อง" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "เพิ่มสภาพคล่อง V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "เพิ่มสภาพคล่อง" - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "เพิ่มสภาพคล่อง" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "เพิ่ม {0} ให้กับ Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "เพิ่มสภาพคล่อง {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "เพิ่มสภาพคล่อง {0}/{1}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "เพิ่มแล้ว {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "ที่อยู่ไม่มีการอ้างสิทธิ์" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "ขัดต่อ" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "อนุญาตให้ย้ายโทเค็น LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "อนุญาตให้ทำการซื้อขายที่กระทบราคาสูงและข้ามหน้าจอยืนยัน ใช้ความเสี่ยงของคุณเอง" - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "อนุญาตให้ Uniswap Protocol ใช้ {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "อนุญาต" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "จำนวน" - -#: src/hooks/useSwapCallback.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." -msgstr "เกิดข้อผิดพลาดขณะพยายามดำเนินการสลับนี้ คุณอาจต้องเพิ่มความทนทานต่อการเลื่อนหลุด หากไม่ได้ผล อาจมีความไม่เข้ากันกับโทเค็นที่คุณกำลังซื้อขาย หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3" - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "อนุมัติ" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "อนุมัติโทเค็น" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "อนุมัติ {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "ที่ได้รับการอนุมัติ" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "อนุมัติ" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "กำลังอนุมัติ {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "สะพานอนุญาโตตุลาการ" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum อยู่ในช่วงเบต้าและอาจประสบปัญหาการหยุดทำงาน ในช่วงหยุดทำงาน โพซิชั่นของคุณจะไม่ได้รับค่าธรรมเนียมและคุณจะไม่สามารถลบสภาพคล่องได้ <0>อ่านต่อ." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "คุณแน่ใจไหม?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "ในฐานะสมาชิกของชุมชน Uniswap คุณอาจอ้างว่า UNI ใช้สำหรับการลงคะแนนและการกำกับดูแล<0/><1/><2>อ่านเพิ่มเติมเกี่ยวกับ UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "อย่างน้อย {0} {1} และ {2} {3} จะถูกคืนไปยังกระเป๋าเงินของคุณเนื่องจากช่วงราคาที่เลือก" - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "รถยนต์" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "ออโต้เราเตอร์ API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "สามารถฝากได้: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "ยอดคงเหลือ: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "ดีที่สุดสำหรับคู่ที่แปลกใหม่" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "ดีที่สุดสำหรับคู่ส่วนใหญ่" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "ดีที่สุดสำหรับคู่ที่มั่นคง" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "ดีที่สุดสำหรับคู่ที่มีเสถียรภาพมาก" - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "เส้นทางราคาที่ถูกที่สุด ~{formattedGasPriceString} ในก๊าซ" - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "ที่อยู่ที่ถูกบล็อก" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "สะพาน" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "โดยการเพิ่มสภาพคล่อง คุณจะได้รับ 0.3% ของการซื้อขายทั้งหมดในคู่นี้ตามสัดส่วนของส่วนแบ่งในพูลของคุณ ค่าธรรมเนียมจะถูกเพิ่มเข้าในพูล สะสมตามเวลาจริง และสามารถอ้างสิทธิ์ได้โดยการถอนสภาพคล่องของคุณ" - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "การเชื่อมต่อกระเป๋าเงินหมายความว่าคุณยอมรับข้อกำหนดในการให้บริการ <0> และรับทราบว่าคุณได้อ่านและทำความเข้าใจ Uniswap <1>Protocol Disclaimerแล้ว" - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "ยกเลิก" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "เปลี่ยน" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "ชาร์ต" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "ตรวจสอบสถานะเครือข่าย" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "ดูคำแนะนำการใช้งาน v3 LP และคู่มือการย้ายข้อมูล" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "เรียกร้อง" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "อ้างสิทธิ์ <0/> สำหรับ {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "รับสิทธิ์ UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "รับโทเค็น UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "รับรางวัล UNI สำหรับ {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "ค่าธรรมเนียมการเรียกร้อง" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "รับโทเค็น UNI ของคุณ" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "อ้างสิทธิ์" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "อ้างสิทธิ์ UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "อ้างสิทธิ์!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "อ้างสิทธิ์" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "อ้างสิทธิ์ UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "รับสิทธิ์ {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "ลบทั้งหมด" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "ลบทั้งหมด" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "ปิด I" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "ปิด" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "เก็บรวบรวม" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "สะสมเป็น WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "เก็บค่าธรรมเนียม" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "เก็บค่าธรรมเนียม {0}/{1}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "สะสม" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "สะสม" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "การเก็บค่าธรรมเนียม" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "การเก็บค่าธรรมเนียมจะถอนค่าธรรมเนียมที่มีอยู่ในปัจจุบันสำหรับคุณ" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "ยืนยัน" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "ยืนยันการจัดหา" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "ยืนยันการสลับ" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "ยืนยันการทำธุรกรรมนี้ในกระเป๋าเงินของคุณ" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "ยืนยันการทำธุรกรรมในกระเป๋าเงิน" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "เชื่อมต่อกระเป๋าเงิน" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "เชื่อมต่อกระเป๋าสตางค์" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "เชื่อมต่อกับกระเป๋าเงินเพื่อค้นหาพูล" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "เชื่อมต่อกับกระเป๋าเงินเพื่อดูสภาพคล่อง V2 ของคุณ" - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "เชื่อมต่อกับกระเป๋าเงินเพื่อดูสภาพคล่องของคุณ" - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "เชื่อมต่อกับ {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "คัดลอกแล้ว" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "คัดลอกที่อยู่" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "สร้างพูลและซัพพลาย" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "สร้างข้อเสนอ" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "สร้างคู่" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "สร้างสระ" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "สร้างปัญหาบน GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "สร้างกลุ่มและเพิ่มสภาพคล่อง {0}/{1}" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "สร้างพูล" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "สร้างพูล V3 {0}/{1}" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "ราคาปัจจุบัน" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "ปัจจุบัน {0} ราคา:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "ธีมมืด" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "พ่ายแพ้" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "โหวตตัวแทน" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "มอบอำนาจการลงคะแนนเป็น {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "มอบหมายให้:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "การลงคะแนนเสียง" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "เงินฝาก" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "จำนวนเงินฝาก" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "ฝากโทเค็น LP ของ UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "สภาพคล่องในการฝาก" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "ฝากโทเค็นไปยังเครือข่าย {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "ฝากโทเค็นผู้ให้บริการสภาพคล่องของคุณเพื่อรับ UNI ซึ่งเป็นโทเค็นการกำกับดูแลโปรโตคอล Uniswap" - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "สภาพคล่องเงินฝาก:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "ฝาก {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "การฝากสภาพคล่อง" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "คำอธิบาย" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "รายละเอียด" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "รายละเอียด" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "ตัดการเชื่อมต่อ" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "ความไม่ลงรอยกัน" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "อนุญาตให้ออกไป" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "เอกสาร" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "ไม่เห็นหนึ่งในตำแหน่ง v2 ของคุณใช่หรือไม่ <0>นำเข้า." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "โทเค็น UNI ที่ได้รับแสดงถึงการลงคะแนนเสียงในการกำกับดูแล Uniswap" - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "แก้ไข" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "การเปรียบเทียบประสิทธิภาพ" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "ป้อนเปอร์เซ็นต์" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "ใส่ผู้รับ" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "ป้อนเปอร์เซ็นต์การเลื่อนหลุดที่ถูกต้อง" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "ป้อนที่อยู่เพื่อเรียกใช้การอ้างสิทธิ์ของ UNI หากที่อยู่มี UNI ที่อ้างสิทธิ์ได้ จะส่งไปให้เมื่อส่ง" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "ใส่จำนวนเงิน" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "ป้อนตำแหน่งรายการที่ถูกต้อง" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "ป้อนที่อยู่โทเค็นที่ถูกต้อง" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "ใส่ {0} จำนวน" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "ข้อผิดพลาด" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "เกิดข้อผิดพลาดในการเชื่อมต่อ" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "เกิดข้อผิดพลาดในการเชื่อมต่อ ลองรีเฟรชหน้า" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "เกิดข้อผิดพลาดในการนำเข้ารายการ" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "ค่าประมาณอาจแตกต่างกันเนื่องจากการตั้งค่าแก๊สในกระเป๋าเงินของคุณ" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "ค่าธรรมเนียมเครือข่ายโดยประมาณ" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "อีเธอร์สแกน" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "ถูกประหารชีวิต" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "ขยายผลจากรายการโทเค็นที่ไม่ได้ใช้งาน" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "ผลผลิตที่คาดหวัง" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "โหมดผู้เชี่ยวชาญ" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "โหมดผู้เชี่ยวชาญจะปิดการแจ้งยืนยันการทำธุรกรรมและอนุญาตให้มีการซื้อขายที่คลาดเคลื่อนสูง ซึ่งมักส่งผลให้อัตราไม่ดีและเงินหายไป" - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "หมดอายุ" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "สำรวจ Uniswap Analytics" - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "ไม่สามารถสลับเครือข่ายจากอินเทอร์เฟซ Uniswap ในการใช้ Uniswap บน {0}คุณต้องเปลี่ยนเครือข่ายในกระเป๋าเงินของคุณ" - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "ระดับค่าธรรมเนียม" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "ระดับค่าธรรมเนียม" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "กำลังเรียกราคาที่ดีที่สุด..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "สำหรับ" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "สำหรับแต่ละกลุ่มที่แสดงด้านล่าง ให้คลิกย้ายเพื่อลบสภาพคล่องของคุณออกจาก Uniswap V2 และฝากเข้า Uniswap V3" - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "จาก" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "จาก (มากสุด)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "ฟูลเรนจ์" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "ตำแหน่งเต็มช่วงอาจได้รับค่าธรรมเนียมน้อยกว่าตำแหน่งที่เข้มข้น เรียนรู้เพิ่มเติม <0>ที่นี่ ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "รับการสนับสนุนบน Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "ศูนย์ช่วยเหลือ" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "ซ่อน" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "ซ่อนตำแหน่งที่ปิด" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "ผลกระทบราคาสูง" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "แอปนี้ใช้ API อย่างไร" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "ฉันเข้าใจ" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "หากคุณซื้อโทเค็นจากรายการนี้ คุณอาจไม่สามารถขายคืนได้" - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "นำเข้า" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "รายการนำเข้า" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "นำเข้าพูล" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "นำเข้า V2 Pool" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "นำเข้าความเสี่ยงของคุณเอง" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "อยู่ในช่วง" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "เพิ่มสภาพคล่อง" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "ราคาเริ่มต้นและส่วนแบ่งพูล" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "กำลังเริ่มต้น..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "ข้อมูลเข้าเป็นค่าประมาณ คุณจะขายได้มากที่สุด <0>{0} {1} หรือธุรกรรมจะเปลี่ยนกลับ" - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "ติดตั้ง Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "สภาพคล่องไม่เพียงพอสำหรับการค้านี้" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "ไม่เพียงพอ {0} ยอดคงเหลือ" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "การตั้งค่าอินเทอร์เฟซ" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "คู่ไม่ถูกต้อง" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "คู่ที่ไม่ถูกต้อง" - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "ใส่ราคาไม่ถูกต้อง" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "เลือกช่วงที่ไม่ถูกต้อง ราคาขั้นต่ำต้องต่ำกว่าราคาสูงสุด" - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "ผู้รับไม่ถูกต้อง" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "ภาษา" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "เรียนรู้" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "เรียนรู้เกี่ยวกับการจัดหาสภาพคล่อง" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "เรียนรู้เพิ่มเติม" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "กฎหมาย & ความเป็นส่วนตัว" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "ธีมไฟ" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "สภาพคล่อง" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "ไม่มีข้อมูลสภาพคล่อง" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "รางวัลผู้ให้บริการสภาพคล่อง" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "ผู้ให้บริการสภาพคล่องจะได้รับค่าธรรมเนียม 0.3% จากการซื้อขายทั้งหมดตามสัดส่วนของส่วนแบ่งในพูล ค่าธรรมเนียมจะถูกเพิ่มเข้าในพูล สะสมตามเวลาจริง และสามารถอ้างสิทธิ์ได้โดยการถอนสภาพคล่องของคุณ" - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "รายการ" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "โหลดแล้ว" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "กำลังโหลด" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAX" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "จัดการ" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "จัดการสภาพคล่องในกลุ่มรางวัล" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "จัดการรายการโทเค็น" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "จัดการพูลนี้" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "แม็กซ์" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "ราคาสูงสุด" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "ราคาสูงสุด" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "สูงสุด:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "ส่งสูงสุด" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "เมนู" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "โยกย้าย" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "ย้ายสภาพคล่องไปที่ V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "โยกย้ายสภาพคล่อง V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "ย้ายโทเค็นสภาพคล่องของคุณจาก Uniswap V2 เป็น Uniswap V3" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "โอนย้าย {0}/{1} ไปที่ V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "การย้ายถิ่น" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "ราคาต่ำสุด" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "ราคาขั้นต่ำ" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "นาที:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "รับขั้นต่ำ" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "ไม่มีการพึ่งพา" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "มากกว่า" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "ค่าธรรมเนียมเครือข่าย" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "คำเตือนเกี่ยวกับเครือข่าย" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "ค่าธรรมเนียมเครือข่ายเกิน 50% ของจำนวนสวอป!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "ตำแหน่งใหม่" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "ไม่พบสภาพคล่อง V2" - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "ไม่มีสระว่ายน้ำที่ใช้งาน" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "ไม่มีข้อมูล" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "ไม่มีคำอธิบาย." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "ไม่พบสภาพคล่อง" - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "ไม่พบพูล" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "ไม่พบข้อเสนอ" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "ไม่พบผลลัพธ์." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "ไม่ได้สร้าง" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "ปิด" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "บน" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ใช้โหมดนี้เฉพาะเมื่อคุณรู้ว่ากำลังทำอะไรอยู่" - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "ปิด" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "บน" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "เมื่อคุณพอใจกับอัตราคลิกอุปทานเพื่อตรวจสอบ" - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "เฉพาะคะแนนโหวตของ UNI ที่มอบหมายด้วยตนเองหรือมอบหมายไปยังที่อยู่อื่นก่อนบล็อก {0} เท่านั้นที่มีสิทธิ์ลงคะแนน" - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "อ๊ะ! เกิดข้อผิดพลาดที่ไม่รู้จัก โปรดรีเฟรชหน้า หรือเยี่ยมชมจากเบราว์เซอร์หรืออุปกรณ์อื่น" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "เกตเวย์การมองในแง่ดี" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "การมองในแง่ดีอยู่ในช่วงเบต้าและอาจประสบปัญหาการหยุดทำงาน การมองในแง่ดีคาดว่าการหยุดทำงานตามแผนจะอัพเกรดเครือข่ายในอนาคตอันใกล้ ในช่วงหยุดทำงาน โพซิชั่นของคุณจะไม่ได้รับค่าธรรมเนียมและคุณจะไม่สามารถลบสภาพคล่องได้ <0>อ่านเพิ่มเติม." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "มองโลกในแง่ดี Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "ไม่อยู่ในขอบเขต" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "ประมาณการเอาท์พุต หากราคาเปลี่ยนแปลงมากกว่า {0}% ธุรกรรมของคุณจะถูกเปลี่ยนกลับ" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "ประมาณการเอาท์พุต คุณจะได้รับอย่างน้อย <0>{0} {1} หรือธุรกรรมจะเปลี่ยนกลับ" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "เอาต์พุตจะถูกส่งไปยัง <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "เจ้าของ" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "สระว่ายน้ำที่เข้าร่วม" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "รอดำเนินการ" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "โปรดยืนยันว่าคุณต้องการลบรายการนี้โดยพิมพ์ REMOVE" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "โปรดเชื่อมต่อกับ Layer 1 Ethereum" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "โปรดเชื่อมต่อกับเครือข่าย Ethereum ที่เหมาะสม" - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "โปรดพิมพ์คำว่า \"{confirmWord}\" เพื่อเปิดใช้งานโหมดผู้เชี่ยวชาญ" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "สะพานรูปหลายเหลี่ยม" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "รูปหลายเหลี่ยม" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "สระน้ำ" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "พบสระน้ำ!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "อัตราสระ" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "อัตราสระ" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "โทเค็นพูลในกลุ่มรางวัล:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "รวม {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "ภาพรวมสระน้ำ" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "ดูตัวอย่าง" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "ราคา" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "ความแตกต่างของราคา:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "ผลกระทบด้านราคา" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "ผลกระทบของราคาสูงเกินไป" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "อัพเดทราคา" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "ช่วงราคา" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "ราคา:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "ราคาและส่วนแบ่งสระว่ายน้ำ" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "ข้อเสนอ" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "ส่งข้อเสนอแล้ว" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "ชื่อข้อเสนอ" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "ข้อเสนอ" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "ข้อเสนอที่ส่งโดยสมาชิกชุมชนจะปรากฏที่นี่" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "การดำเนินการที่เสนอ" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "ผู้เสนอ" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "ข้อจำกัดความรับผิดชอบของโปรโตคอล" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "เข้าคิว" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "ราคา" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "อ่านเพิ่มเติมเกี่ยวกับ UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "อ่านเพิ่มเติมเกี่ยวกับการกำกับดูแล Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "อ่านเพิ่มเติมเกี่ยวกับการจัดหาสภาพคล่อง" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "อ่านเพิ่มเติมเกี่ยวกับเนื้อหาที่ไม่รองรับ" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "ธุรกรรมล่าสุด" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "ผู้รับ" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "ลบ" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "ลบ <0/> และ " - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "ลบจำนวนเงิน" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "ลบผู้รับมอบสิทธิ์" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "ลบสภาพคล่อง" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "ลบรายการ" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "กำลังลบ {0} {1} และ {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "กำลังลบ {0} {1} และ{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "ขอคุณสมบัติ" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "กลับ" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "ค้นหาชื่อหรือวางที่อยู่" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "เลือกคู่" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "เลือกเครือข่าย" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "เลือกโทเค็น" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "เลือกโทเค็นเพื่อค้นหาสภาพคล่อง v2 ของคุณ" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "เลือกการดำเนินการ" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "ช่วงที่เลือก" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "ตัวเอง" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "ผู้แทนตนเอง" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "กำหนดช่วงราคา" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "ตั้งราคาเริ่มต้น" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "ส่วนแบ่งของพูล" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "ส่วนแบ่งของพูล:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "โชว์ปอร์ติส" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "แสดงตำแหน่งที่ปิด" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "เรียบง่าย" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "ความทนทานต่อการเลื่อนหลุด" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "สินทรัพย์บางรายการไม่สามารถใช้ได้ผ่านอินเทอร์เฟซนี้ เนื่องจากอาจทำงานได้ไม่ดีกับสัญญาอัจฉริยะ หรือเราไม่สามารถอนุญาตให้ซื้อขายได้ด้วยเหตุผลทางกฎหมาย" - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "อะไรบางอย่างผิดปกติ" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "ขั้นตอนที่ 1 รับโทเค็นสภาพคล่อง UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "ส่งข้อเสนอใหม่" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "การส่งข้อเสนอ" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "ส่งโหวต" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "ที่ประสบความสำเร็จ" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "ความสำเร็จ" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "จัดหา" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "การจัดหา {0} {1} และ {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "แลกเปลี่ยน" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "สลับ <0/> เป็น " - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "สลับกัน" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "สลับเฉพาะ <0/> เป็น <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "สลับล้มเหลว: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "สลับ {0} {1} เป็น {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "ขอบคุณที่เป็นส่วนหนึ่งของชุมชน Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% ที่คุณจะได้รับเป็นค่าธรรมเนียม" - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "ค่าคงที่ Uniswap x*y=k ไม่พอใจโดยการแลกเปลี่ยน ซึ่งมักจะหมายถึงหนึ่งในโทเค็นที่คุณกำลังแลกเปลี่ยนรวมลักษณะการทำงานที่กำหนดเองในการโอน" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "แอพดึงข้อมูลบล็อคเชนจากบริการโฮสต์ของ The Graph" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "แอปดึงข้อมูลในสายโซ่และสร้างการเรียกสัญญาด้วย Infura API" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "แอพดึงเส้นทางการค้าที่เหมาะสมที่สุดจากเซิร์ฟเวอร์ Uniswap Labs" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "แอปจะบันทึกสถิติการใช้งานที่ไม่ระบุชื่อเพื่อปรับปรุงเมื่อเวลาผ่านไป" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "แอปจะรวบรวมที่อยู่กระเป๋าเงินของคุณอย่างปลอดภัยและแชร์กับ TRM Labs Inc. ด้วยเหตุผลด้านความเสี่ยงและการปฏิบัติตามข้อกำหนด" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "ค่าใช้จ่ายในการส่งธุรกรรมนี้มากกว่าครึ่งหนึ่งของมูลค่าของจำนวนเงินที่ป้อน" - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "ปริมาณก๊าซที่รวดเร็วในปัจจุบันสำหรับการส่งธุรกรรมใน L1 ค่าธรรมเนียมก๊าซจะจ่ายในสกุลเงินท้องถิ่นของ Ethereum (ETH) และคิดเป็น GWEI" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "ค่าความแตกต่างโดยประมาณระหว่างค่า USD ของจำนวนเงินเข้าและออก" - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "ไม่สามารถโอนโทเค็นอินพุตได้ อาจมีปัญหากับโทเค็นอินพุต" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "ราคาตลาดอยู่นอกช่วงราคาที่คุณกำหนด เงินฝากสินทรัพย์เดียวเท่านั้น" - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "หมายเลขบล็อกล่าสุดในเครือข่ายนี้ ราคาอัพเดททุกบล็อค" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "ไม่สามารถโอนโทเค็นเอาต์พุตได้ อาจมีปัญหากับโทเค็นเอาต์พุต" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "ไม่สามารถโอนโทเค็นเอาต์พุตได้ อาจมีปัญหากับโทเค็นเอาต์พุต หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "ราคาของพูลนี้อยู่นอกช่วงที่คุณเลือก ตำแหน่งของคุณไม่ได้รับค่าธรรมเนียมในขณะนี้" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "ราคาของพูลนี้อยู่ในช่วงที่คุณเลือก ตำแหน่งของคุณกำลังได้รับค่าธรรมเนียม" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "อัตราส่วนของโทเค็นที่คุณเพิ่มจะกำหนดราคาของพูลนี้" - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "ไม่สามารถส่งธุรกรรมได้เนื่องจากเลยกำหนดส่งแล้ว โปรดตรวจสอบว่ากำหนดเวลาในการทำธุรกรรมของคุณไม่ต่ำเกินไป" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "ไม่มีข้อมูลสภาพคล่อง" - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "แอพนี้ใช้ API บุคคลที่สามต่อไปนี้:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "ต้องเริ่มต้นกลุ่มนี้ก่อนจึงจะสามารถเพิ่มสภาพคล่องได้ ในการเริ่มต้น เลือกราคาเริ่มต้นสำหรับพูล จากนั้นป้อนช่วงราคาสภาพคล่องและจำนวนเงินฝาก ค่าธรรมเนียมก๊าซจะสูงกว่าปกติเนื่องจากการทำธุรกรรมเริ่มต้น" - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "เส้นทางนี้ปรับผลผลิตทั้งหมดของคุณให้เหมาะสมโดยพิจารณาจากเส้นทางแยก การกระโดดหลายครั้ง และต้นทุนน้ำมันของแต่ละขั้นตอน" - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "ไม่รองรับโทเค็นนี้ในแอป Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "เครื่องมือนี้จะย้าย {0} ของคุณไปยัง V3 อย่างปลอดภัย กระบวนการนี้ไม่น่าเชื่อถืออย่างสมบูรณ์ต้องขอบคุณ" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "ธุรกรรมนี้จะไม่สำเร็จเนื่องจากการเคลื่อนไหวของราคา ลองเพิ่มความทนทานต่อการเลื่อนหลุด หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "ธุรกรรมนี้จะไม่สำเร็จเนื่องจากการเคลื่อนไหวของราคาหรือค่าธรรมเนียมในการโอน ลองเพิ่มความทนทานต่อการเลื่อนหลุด" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "เคล็ดลับ: โทเค็นที่กำหนดเองจะถูกเก็บไว้ในเบราว์เซอร์ของคุณ" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "ถึง" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "ถึง (อย่างน้อย)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "ไม่รองรับโทเค็น" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "โทเค็น" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "ยอดฝาก" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "ยอดเงินฝาก" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "เส้นทางการค้า" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "การตั้งค่าธุรกรรม" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "ส่งธุรกรรมแล้ว" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "ธุรกรรมเสร็จสมบูรณ์ใน" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "กำหนดเวลาการทำธุรกรรม" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "ธุรกรรมถูกปฏิเสธ" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "โทเค็นการโอน" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "ลองอีกครั้ง" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "เปิดโหมดผู้เชี่ยวชาญ" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI มาแล้วจ้า" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "โทเค็นของ UNI เป็นตัวแทนของการลงคะแนนเสียงในการกำกับดูแล Uniswap คุณสามารถลงคะแนนในแต่ละข้อเสนอด้วยตัวเองหรือมอบสิทธิ์การโหวตของคุณให้กับบุคคลที่สาม" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} เผา" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "ต้องใช้โทเค็น UNI-V2 LP เมื่อคุณเพิ่มสภาพคล่องให้กับกลุ่ม {0}-{1} คุณสามารถเดิมพันโทเค็นสภาพคล่องของคุณในหน้านี้" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI . ที่ไม่มีการอ้างสิทธิ์" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "ค่าธรรมเนียมที่ไม่มีการอ้างสิทธิ์" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "ไม่แน่นอน" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "ข้อผิดพลาดที่ไม่คาดคิด ไม่สามารถประมาณค่าก๊าซสำหรับการแลกเปลี่ยนได้" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "ปัญหาที่ไม่คาดคิดกับการประมาณค่าก๊าซ กรุณาลองอีกครั้ง." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "การกำกับดูแล Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "ข้อกำหนดในการให้บริการของ Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap มีให้ใน: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "การกำกับดูแล Uniswap ใช้ได้เฉพาะในเลเยอร์ 1 เท่านั้น เปลี่ยนเครือข่ายของคุณเป็น Ethereum Mainnet เพื่อดูข้อเสนอและการโหวต" - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "การขุดสภาพคล่อง Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "สัญญาการโยกย้าย Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "ไม่ทราบแหล่งที่มา" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "ข้อผิดพลาดที่ไม่รู้จัก{0}ลองเพิ่มความทนทานต่อการเลื่อนหลุด หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "ปลดล็อกการโหวต" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "ปลดล็อกการโหวต" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "ปลดล็อคการโหวต" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "เนื้อหาที่ไม่รองรับ" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "สินทรัพย์ที่ไม่รองรับ" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "ไม่มีชื่อ" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "แกะ" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "แกะ <0/> ถึง {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "อัพเดทคณะผู้แทน" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "อัพเดทรายการ" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "ใช้ Uniswap Labs API เพื่อรับใบเสนอราคาที่เร็วขึ้น" - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "ผู้ใช้" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 ไม่พร้อมใช้งานใน Layer 2 เปลี่ยนเป็น Layer 1 Ethereum" - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "สภาพคล่อง V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} ราคา:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "ดูค่าธรรมเนียมและการวิเคราะห์ค้างชำระ<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "ดูรายการ" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "ดูบน Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "ดูบน Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "ดูธุรกรรมบน Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "โหวต" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "โหวตต่อต้าน" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "โหวตให้" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "โหวตคัดค้านข้อเสนอ {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "โหวตคัดค้านข้อเสนอ {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "โหวตคัดค้านข้อเสนอ {proposalKey} ด้วยเหตุผล \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "โหวตข้อเสนอ {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "โหวตข้อเสนอ {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "โหวตข้อเสนอ {proposalKey} ด้วยเหตุผล \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "โหวตงดรับข้อเสนอ {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "โหวตงดรับข้อเสนอ {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "โหวตงดรับข้อเสนอ {proposalKey} ด้วยเหตุผล \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "สิ้นสุดการโหวต {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "การลงคะแนนจะสิ้นสุดลงประมาณ {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "การลงคะแนนเริ่มต้นประมาณ {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "รอการยืนยัน" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "ที่อยู่กระเป๋าเงินหรือชื่อ ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "รางวัลประจำสัปดาห์" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "ยินดีต้อนรับสู่ทีมยูนิคอร์น :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "เมื่อคุณอ้างสิทธิ์โดยไม่ถอนสภาพคล่องของคุณจะยังคงอยู่ในกลุ่มการขุด" - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "เมื่อคุณถอนตัว สัญญาจะอ้างสิทธิ์ UNI ในนามของคุณโดยอัตโนมัติ!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "เมื่อคุณถอนออก UNI ของคุณจะถูกอ้างสิทธิ์และสภาพคล่องของคุณจะถูกลบออกจากกลุ่มการขุด" - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "ถอน" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "ถอนและเรียกร้อง" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "ถอนเงินที่ฝากไว้" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "ถอน {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "ถอนตัว UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "ห่อ" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "ตัด <0/> ถึง {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "ผิดเครือข่าย" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "คุณมีข้อเสนอที่ใช้งานอยู่หรือรอดำเนินการอยู่แล้ว" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "คุณกำลังสร้างพูล" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "คุณเป็นผู้ให้บริการสภาพคล่องรายแรกสำหรับกลุ่ม Uniswap V3 นี้ สภาพคล่องของคุณจะถูกย้ายที่ราคา {0}" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "คุณเป็นผู้ให้บริการสภาพคล่องรายแรก" - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "คุณสามารถลงคะแนนในแต่ละข้อเสนอด้วยตัวเองหรือมอบสิทธิ์การโหวตของคุณให้กับบุคคลที่สาม" - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "ตอนนี้คุณสามารถแลกเปลี่ยน {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "คุณมีคะแนนเสียงไม่เพียงพอที่จะส่งข้อเสนอ" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "คุณอาจสูญเสียการเชื่อมต่อเครือข่ายของคุณ" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "คุณอาจลองรอจนกว่าค่าธรรมเนียมเครือข่ายจะลดลงเพื่อทำธุรกรรมนี้ให้เสร็จสิ้น" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "คุณต้องเชื่อมต่อบัญชี" - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "คุณต้องให้สิทธิ์สัญญาอัจฉริยะ Uniswap เพื่อใช้ {0}คุณต้องทำเช่นนี้เพียงครั้งเดียวต่อโทเค็น" - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "คุณต้องมี {formattedProposalThreshold} โหวตเพื่อส่งข้อเสนอ" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "คุณควรฝากสภาพคล่องเข้า Uniswap V3 ในราคาที่คุณเชื่อว่าถูกต้องเท่านั้น <0/>หากราคาดูเหมือนไม่ถูกต้อง คุณสามารถทำการแลกเปลี่ยนเพื่อย้ายราคาหรือรอให้คนอื่นทำ" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "คุณจะเก็บค่าธรรมเนียมที่ได้รับจากตำแหน่งนี้ด้วย" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "คุณจะได้รับ" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "สภาพคล่อง V2 ของคุณ" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "ตำแหน่งสภาพคล่อง V3 ที่ใช้งานอยู่ของคุณจะปรากฏที่นี่" - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "เงินฝากสภาพคล่องของคุณ" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "ส่วนแบ่งสระว่ายน้ำของคุณ:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "ตำแหน่งของคุณ" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "สถานะของคุณมีสภาพคล่อง 0 และไม่มีค่าธรรมเนียม" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "ตำแหน่งของคุณจะปรากฏที่นี่" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "โพซิชั่นของคุณจะ 100% ประกอบด้วย {0} ในราคานี้" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "ตำแหน่งของคุณจะเป็น 100% {0} ในราคานี้" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "ตำแหน่งของคุณจะไม่ได้รับค่าธรรมเนียมหรือใช้ในการซื้อขายจนกว่าราคาตลาดจะเคลื่อนเข้าสู่ช่วงของคุณ" - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "ตำแหน่งของคุณ" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "อัตราของคุณ" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "โทเค็นพูลทั้งหมดของคุณ:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "ต้นทุนการทำธุรกรรมของคุณจะสูงขึ้นมาก เนื่องจากมีก๊าซเพื่อสร้างพูล" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "ธุรกรรมของคุณอาจเป็น frontrun" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "ธุรกรรมของคุณอาจล้มเหลว" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "ธุรกรรมของคุณจะเปลี่ยนกลับหากรอดำเนินการนานกว่าช่วงเวลานี้" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "ธุรกรรมของคุณจะกลับคืนมาหากราคาเปลี่ยนแปลงไปในทางไม่ดีเกินกว่าเปอร์เซ็นต์นี้" - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "ธุรกรรมของคุณจะปรากฏที่นี่..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "UNI . ที่ไม่มีการอ้างสิทธิ์ของคุณ" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "หลังการลื่นไถล" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "ยืนยัน" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "สำหรับ {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "มีถุงเท้าอีโมจิ" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "ที่นี่." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// หรือ ipfs:// หรือชื่อ ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "นาที" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "ผ่าน {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "ผ่าน {0} รายการโทเค็น" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {นำเข้าโทเค็น} other {นำเข้าโทเค็น}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> ต่อ <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} โทเค็นที่กำหนดเอง" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} ฝากแล้ว" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} ค่าธรรมเนียมที่ได้รับ:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} รอดำเนินการ" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / สัปดาห์" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} โทเค็น LP UNI-V2 พร้อมใช้งาน" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} โหวต" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} ต่อ {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} โทเค็น" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} ราคา:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • เพิ่มโดย user" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "ระดับค่าธรรมเนียม {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% สระ" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "เลือก {0}" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} ขุดสภาพคล่อง" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Tokens" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} โทเค็น" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "สะพานโทเค็น {label}" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} ต่อ {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← กลับไปที่ภาพรวมพูล" - diff --git a/src/locales/tr-TR.po b/src/locales/tr-TR.po deleted file mode 100644 index 56035a9f1a..0000000000 --- a/src/locales/tr-TR.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: tr_TR\n" -"Language-Team: Turkish\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: tr\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Explorer'da Görüntüle)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(tümünü temizle)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(düzenle)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Alıcıyı kaldır" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / hafta" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "%25" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "%50" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "%75" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Tüm Teklifler" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Oylar" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Hesap analizi ve tahakkuk eden ücretler<1> ↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>Mevcut Fiyat: <1><2/> <3>{0} başına {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> İpucu: Havuz jetonlarını kaldırmak, konumunuzu havuzdaki payınızla orantılı olarak geçerli oran üzerinden temel jetonlara dönüştürür. Tahakkuk eden ücretler, aldığınız tutarlara dahildir." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>İpucu: Bir eylem seçin ve topluluk için teklifinizi açıklayın. Teklif, gönderildikten sonra değiştirilemez, bu nedenle lütfen göndermeden önce tüm bilgileri doğrulayın. Oy verme süreci hemen başlayacak ve 7 gün sürecektir. Özel bir eylem önermek için <1>dokümanları okuyun ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>İpucu: Arayüzde otomatik olarak görünmeyen v2 havuzlarını bulmak için bu aracı kullanın." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> İpucu: Likidite eklediğinizde, pozisyonunuzu temsil eden havuz jetonları alacaksınız. Bu jetonlar otomatik olarak havuzdaki payınızla orantılı ücretler kazanır ve herhangi bir zamanda kullanılabilir." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "Bir sonraki teklife hazırlanmak için <0>Oylamanın kilidini açın." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0> 🎉 Unicorn takımına hoş geldiniz :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Teklifleri sunmak için toplam UNI arzının minimum %0,25'i gereklidir" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Hakkında" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Kabul et" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Hesap" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Aktif" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Ekle" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Uniswap V2'ye <0/> ve <1/> ekleyin" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Temsilci Ekle +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Likidite Ekle" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "V2 Likidite Ekle" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Likidite ekleyin." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Daha fazla likidite ekleyin" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Metamask'a {0} ekle <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "{0}-{1} likidite ekle" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "{0}/{1} V3 likidite ekle" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "{0} eklendi" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Adreste herhangi bir hak talebi yok" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Karşısında" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "LP jeton geçişine izin ver" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Yüksek fiyat etkili işlemlere izin verin ve onay ekranını atlayın. Kendi sorumluluğunuz altında kullanın." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Uniswap Protokolünün {0} kullanmasına izin verin" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "İzin veriliyor" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Miktar" - -#: src/hooks/useSwapCallback.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." -msgstr "Bu takas yürütülmeye çalışılırken bir hata oluştu. Kayma toleransınızı artırmanız gerekebilir. Bu işe yaramazsa, işlem yaptığınız token ile uyumsuzluk olabilir. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Onayla" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Onay Simgesi" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Onayla {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Onaylandı" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Onaylanıyor" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Onaylanıyor {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum Köprüsü" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum Beta'dadır ve kesinti yaşayabilir. Duruş süresi boyunca, pozisyonunuz ücret kazanmaz ve likiditeyi kaldıramazsınız. <0>Daha fazlasını okuyun." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Emin misiniz?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Uniswap topluluğunun bir üyesi olarak, UNI'nin oylama ve yönetim için kullanılmasını talep edebilirsiniz.<0/><1/><2>UNI hakkında daha fazla bilgi edinin" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Seçilen fiyat aralığından en az {0} {1} ve {2} {3} cüzdanınıza iade edilecektir." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Otomatik" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "Otomatik Yönlendirici API'si" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Para yatırmaya uygun: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Bakiye: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Egzotik çiftler için en iyisi." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Çoğu çift için en iyisi." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Kararlı çiftler için en iyisi." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Çok kararlı çiftler için en iyisi." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "En iyi fiyat rota maliyetleri gazda{formattedGasPriceString}" - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Engellenen adres" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Köprü" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likidite ekleyerek, havuzdaki payınızla orantılı olarak bu çiftteki tüm işlemlerin %0,3'ünü kazanacaksınız. Ücretler havuza eklenir, gerçek zamanlı olarak tahakkuk eder ve likidite çekilerek talep edilebilir." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Bir cüzdan bağlayarak, Uniswap Labs'ın kabul <0>Hizmet Şartları'nı ve okuduğunuzu ve Uniswap anladığımı teyit <1>Protokol Uyarı." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "İptal edildi" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Değiştir" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Çizelgeler" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Ağ durumunu kontrol edin" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "V3 LP adım adım açıklamalı kılavuzumuza ve geçiş kılavuzlarımıza göz atın." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Talep" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "İstem <0 /> için {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "UNI talep et" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "UNI Jetonu talep et" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "{0}için UNI ödülü talep et" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Ücretleri talep et" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "UNI jetonlarınızı talep edin" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Talep Edilen" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "UNI talep edildi!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Hak talebinde bulunuldu!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Talep ediliyor" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "UNI talep ediliyor" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "{0} UNI talep ediliyor" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Tümünü Temizle" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Tümünü temizle" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Kapat" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Kapalı" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Topla" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "WETH olarak toplayın" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Ücretleri topla" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "{0}/{1} ücretleri toplayın" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Toplandı" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Toplama" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Ücretler toplanıyor" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Ücretleri toplama işlemi, sizin için şu anda mevcut olan ücretleri çekecektir." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Onayla" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Kaynağı Onayla" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Swap'ı Onayla" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Cüzdanınızda bu işlemi onaylayın" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Cüzdandaki işlemi onaylayın" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Cüzdanı Bağlayın" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Cüzdan bağlayın" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Havuzları bulmak için bir cüzdana bağlanın" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "V2 likiditenizi görüntülemek için bir cüzdana bağlanın." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Likiditenizi görüntülemek için bir cüzdana bağlanın." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "{name} ile bağlantılı" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Kopyalandı" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Adresi Kopyala" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Havuz ve Kaynak Oluştur" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Teklif Oluştur" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Bir çift oluştur" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Bir havuz oluştur" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "GitHub'da bir konu oluşturun" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Havuz oluşturun ve {0}/{1} V3 likidite ekleyin" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Havuz oluşturun." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "{0}/{1} V3 havuzu oluştur" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Güncel fiyat" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Güncel {0} Fiyatı:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Karanlık Tema" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "mağlup" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Oylar Devret" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Oylama gücünü {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Yetki verildi:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Oylar devrediliyor" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Mevduat" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Mevduat Tutarları" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "UNI-V2 LP Jetonlarını yatırın" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Mevduat likiditesi" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "{label} ağına jeton yatırın." - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Uniswap protokolü yönetim jetonu olan UNI'yi almak için Likidite Sağlayıcı jetonlarınızı yatırın." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Yatırılan likidite:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Yatırılan {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Likidite Yatırma" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Açıklama" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Detaylı" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Detaylar" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Bağlantıyı Kes" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Reddet" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Dokümanlar" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "V2 konumlarınızdan birini görmüyor musunuz? <0>İçe aktarın." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Kazanılan UNI jetonları, Uniswap yönetiminde oy hakkına sahip hisseleri temsil eder." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Düzenle" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Verimlilik Karşılaştırması" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Yüzde girin" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Bir alıcı girin" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Geçerli bir kayma yüzdesi girin" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Bir UNI talebini tetiklemek için bir adres girin. Adreste talep edilebilir bir UNI varsa, teslim edildiğinde onlara gönderilecektir." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Bir tutar girin" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Geçerli liste konumu girin" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Geçerli jeton adresini girin" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "{0} tutarı girin" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Hata" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Bağlantı hatası" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Bağlanırken hata oluştu. Sayfayı yenilemeyi deneyin." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Liste içe aktarılırken hata oluştu" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Tahmin, cüzdan gaz ayarlarınız nedeniyle farklılık gösterebilir" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Tahmini ağ ücreti" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "eter tarama" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "yürütüldü" - -#: src/components/SearchModal/CurrencyList.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ı" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Uzman Modu" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Uzman modu, işlem onayı istemini kapatır ve genellikle düşük oranlar ve kayıp fonlar veren yüksek kayma işlemlerine izin verir." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Süresi doldu" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Uniswap Analytics'i keşfedin." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Uniswap Arabiriminden ağlar arasında geçiş yapılamadı. {0}üzerinde Uniswap kullanmak için cüzdanınızdaki ağı değiştirmelisiniz." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Ücret Katmanı" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Ücret katmanı" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "En iyi fiyat alınıyor..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Şunun için" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Aşağıda gösterilen her bir havuz için, likiditenizi Uniswap V2'den kaldırmak ve Uniswap V3'e yatırmak için Geçir'e tıklayın." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Kaynak" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Gönderen (en fazla)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Tam aralık" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Tam aralıklı pozisyonlar, konsantre pozisyonlardan daha az ücret alabilir. <0>buradan daha fazla bilgi edinin ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Discord ile ilgili destek alın" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Yardım Merkezi" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Saklamak" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Kapalı pozisyonları gizle" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Yüksek Fiyat Etkisi" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Bu uygulama API'leri nasıl kullanır?" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Anladım" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Bu listeden bir jeton satın alırsanız, tekrar satamayabilirsiniz." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "İçe Aktar" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Listeyi İçe Aktar" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Havuzu İçe Aktar" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "V2 Havuzunu İçe Aktar" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Riskin size ait olduğunu bilerek içe aktarın" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Aralıkta" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Likiditeyi Artırın" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "İlk fiyatlar ve havuz payı" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Başlatılıyor..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Giriş tahminidir. En çok <0>{0} {1} satabilirsiniz. Aksi takdirde işlem geri döner." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Metamask'ı yükleyin" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Bu işlem için yetersiz likidite." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Yetersiz {0} bakiye" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Arayüz Ayarları" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Geçersiz çift" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Geçersiz çift." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Geçersiz fiyat girişi" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Geçersiz aralık seçildi. Minimum fiyat, maksimum fiyattan düşük olmalıdır." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Geçersiz alıcı" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Dil" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Öğren" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Likidite sağlama hakkında bilgi edinin" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Daha fazla bilgi edin" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Yasal ve Gizlilik" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Işık Tema" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Likidite" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Likidite verileri mevcut değil." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Likidite sağlayıcı ödülleri" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Likidite sağlayıcıları, havuzdaki paylarıyla orantılı olarak tüm işlemlerden %0,3 ücret alırlar. Ücretler havuza eklenir, gerçek zamanlı olarak tahakkuk eder ve likidite çekilerek talep edilebilir." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Listeler" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Yüklendi" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Yükleniyor" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "MAKS" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Yönet" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Ödül Havuzunda Likiditeyi Yönetin" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Jeton Listelerini Yönetin" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Bu havuzu yönetin." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Maksimum" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Maksimum Fiyat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Maksimum fiyat" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Maksimum:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Maksimum gönderme" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Menü" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Geçir" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Likiditeyi V3'e Geçirin" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "V2 Likiditesini Geçirin" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Likidite jetonlarınızı Uniswap V2'den Uniswap V3'e geçirin." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "{0}/{1} likiditesini V3'e taşıyın" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Geçiriliyor" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Minimum Fiyat" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Minimum fiyat" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Minimum:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Minimum alınan" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Eksik bağımlılıklar" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Daha fazla" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Ağ Ücreti" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Ağ Uyarısı" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Ağ ücretleri takas tutarının %50'sini aşıyor!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Yeni Pozisyon" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "V2 Likiditesi bulunamadı." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Aktif havuz yok" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Veri yok" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Açıklama yok." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Likidite bulunamadı." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Havuz bulunamadı." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Teklif bulunamadı." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Sonuç bulunamadı." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "oluşturulmadı" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "KAPALI" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "AÇIK" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "BU MODU YALNIZCA NE YAPTIĞINIZI BİLİYORSANIZ KULLANIN." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Kapalı" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Açık" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Fiyattan memnun olduğunuzda, incelemek için kaynağa tıklayın." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Yalnızca {0} bloğundan önce kendi kendine verilen veya başka bir adrese devredilen UNI oyları oylama için uygundur." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Bilinmeyen bir hata oluştu. Lütfen sayfayı yenileyin veya başka bir tarayıcı ya da cihazdan ziyaret edin." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "İyimserlik Geçidi" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "İyimserlik Beta'dadır ve aksama süresi yaşayabilir. İyimserlik, yakın gelecekte ağı yükseltmek için planlı kapalı kalma süresi beklemektedir. Duruş süresi boyunca, pozisyonunuz ücret kazanmaz ve likiditeyi kaldıramazsınız. <0>Devamını okuyun." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "İyimser Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Aralık dışında" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Çıktı tahminidir. Fiyat %{0} oranından fazla değişirse işleminiz geri alınır." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Giriş tahminidir. En az <0>{0} {1} alabilirsiniz. Aksi takdirde işlem geri döner." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Çıktı şuraya gönderilecek: <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Sahip" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Katılımcı havuzlar" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Bekliyor" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Lütfen KALDIR yazarak bu listeyi kaldırmak istediğinizi onaylayın." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Lütfen Katman 1 Ethereum'a bağlanın" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Lütfen uygun Ethereum ağına bağlanın." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Uzman modunu etkinleştirmek için lütfen \"{confirmWord}\" sözcüğünü yazın." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "çokgen köprü" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "poligon taraması" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Havuz" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Havuz Bulundu!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Havuz Oranı" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Havuz oranı" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Ödül havuzundaki havuz jetonları:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Havuza alınmış {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Havuzlara Genel Bakış" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Ön izleme" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Fiyat" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Fiyat Farkı:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Fiyat Etkisi" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Fiyat Etkisi Çok Yüksek" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Fiyat Güncellendi" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Fiyat aralığı" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Fiyat:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Fiyatlar ve havuz payı" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "teklif" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Teklif Gönderildi" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Teklif Başlığı" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Teklifler" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Topluluk üyeleri tarafından gönderilen teklifler burada görünecektir." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Önerilen hareket" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Teklif veren" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Protokol Sorumluluk Reddi" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "sıraya alındı" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Oranlar" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "UNI hakkında daha fazla bilgi edinin" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Uniswap yönetişimi hakkında daha fazla bilgi edinin" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Likidite sağlama hakkında daha fazla bilgi edinin" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Desteklenmeyen varlıklar hakkında daha fazla bilgi edinin" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Son İşlemler" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "alıcı" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Kaldır" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "<0/> ve <1/> öğesini kaldırın" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Tutarı Kaldır" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Temsilciyi Kaldır" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Likiditeyi Kaldır" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Listeyi kaldır" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "{0} {1} ve {2} {3} kaldırılıyor" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "{0} {1} ve{2} {3}kaldırma" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Özellikler İste" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Geri Dön" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Adı arayın veya adresi yapıştırın" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Çift Seç" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Bir ağ seçin" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Bir jeton seçin" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "v2 likiditenizi bulmak için bir jeton seçin." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Bir eylem seçin" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Seçilen Aralık" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Kendisi" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Kendinden Temsilci" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Fiyat Aralığını Ayarla" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Başlangıç Fiyatını Belirleyin" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Havuz Payı" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Havuz Payı:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Portis'i göster" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Kapalı pozisyonları göster" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Basit" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Kayma toleransı" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Bazı varlıklar bu arayüz aracılığıyla kullanılamaz. Bunun nedeni akıllı sözleşmelerle iyi sonuç vermemeleri veya yasal nedenlerle ticarete izin veremememizdir." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Bir şeyler yanlış gitti" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Adım 1. UNI-V2 Likidite jetonları alın" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Yeni teklif gönder" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Teklif Gönderme" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Oy Gönderme" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "başarılı" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Başarı" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Kaynak" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "{0} {1} ve {2} {3} temini" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Swap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "<0/> öğesini tam olarak <1/> ile değiştirin" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Yine de Swap" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Tam olarak <0/> ile <1/> arasında geçiş yapın" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Değiştirilemedi: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "{2} {3} yerine {0} {1} swap ediliyor" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Uniswap topluluğunun bir parçası olduğunuz için teşekkürler <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "Ücretlerde kazanacağınız yüzde." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Uniswap değişmez değeri x*y=k, swap ile sağlanmadı. Bu genellikle, swap ettiğiniz jetonlardan birinin aktarım sırasında özel davranış içerdiği anlamına gelir." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Uygulama, The Graph'in barındırılan hizmetinden blok zinciri verilerini alır." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Uygulama, zincir üzerindeki verileri getirir ve bir Infura API ile sözleşme çağrıları oluşturur." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Uygulama, bir Uniswap Labs sunucusundan en uygun ticaret yolunu getirir." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Uygulama, zaman içinde iyileştirmek için anonimleştirilmiş kullanım istatistiklerini günlüğe kaydeder." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Uygulama, cüzdan adresinizi güvenli bir şekilde toplar ve risk ve uyumluluk nedenleriyle TRM Labs Inc. ile paylaşır." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Bu işlemi göndermenin maliyeti, giriş tutarının değerinin yarısından fazladır." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "L1'de işlem göndermek için geçerli hızlı gaz miktarı. Gaz ücretleri, Ethereum'un yerel para birimi Ether'de (ETH) ödenir ve GWEI cinsindendir." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Girdi ve çıktı miktarlarının USD değerleri arasındaki tahmini fark." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Giriş jetonu aktarılamaz. Giriş jetonuyla ilgili bir sorun olabilir." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Piyasa fiyatı, belirttiğiniz fiyat aralığının dışında. Yalnızca tek varlıklı para yatırma yapılabilir." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Bu ağdaki en son blok numarası. Fiyatlar her blokta güncellenir." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Çıkış jetonu aktarılamaz. Çıkış jetonuyla ilgili bir sorun olabilir." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Çıkış jetonu aktarılamaz. Çıkış belirteciyle ilgili bir sorun olabilir. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Bu havuzun fiyatı, seçtiğiniz aralığın dışında. Pozisyonunuz şu anda ücret kazanmıyor." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Bu havuzun fiyatı seçtiğiniz aralık dahilinde. Pozisyonunuz şu anda ücret kazanıyor." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Eklediğiniz jeton oranı, bu havuzun fiyatını belirleyecektir." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Son tarih geçtiği için işlem gönderilemedi. Lütfen işlem sürenizin çok kısa olmadığından emin olun." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Likidite verisi yok." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Bu uygulama, aşağıdaki üçüncü taraf API'lerini kullanır:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Likidite eklemeden önce bu havuzun başlatılması gerekir. Başlatmak için havuz için bir başlangıç fiyatı seçin. Ardından likidite fiyat aralığınızı ve mevduat tutarınızı girin. Başlatma işlemi nedeniyle gaz ücretleri normalden daha yüksek olacaktır." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Bu rota, bölünmüş rotaları, çoklu atlamaları ve her adımın gaz maliyetini dikkate alarak toplam çıktınızı optimize eder." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Bu belirteç, Uniswap Labs uygulamasında desteklenmiyor" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Bu araç, {0} likiditenizi güvenli bir şekilde V3'e geçirecektir. Bu süreç şunun sayesinde sayesinde tamamen güvensizdir:" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Bu işlem, fiyat hareketi nedeniyle başarılı olamayacak. Kayma toleransınızı artırmayı deneyin. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Bu işlem, ya fiyat hareketinden dolayı ya da transfer ücretinden dolayı başarılı olmayacak. Kayma toleransınızı artırmayı deneyin." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "İpucu: Özel jetonlar tarayıcınızda yerel olarak depolanır" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Alıcı" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Alıcı (en az)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Jeton desteklenmiyor" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Jetonlar" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Toplam yatırılan" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Toplam mevduat" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Ticaret rotası" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "İşlem Ayarları" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "İşlem Gönderildi" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "İşlem tamamlandı" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "İşlem son tarihi" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "İşlem reddedildi." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Transfer Jetonu" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Tekrar deneyin" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Uzman Modunu Açın" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI geldi" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI jetonları, Uniswap yönetiminde oy hakkına sahip hisseleri temsil eder. Her bir teklife kendiniz oy verebilir veya oylarınızı üçüncü bir tarafa devredebilirsiniz." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} Yandı" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "UNI-V2 LP jetonları gereklidir. {0}-{1} havuzuna likidite ekledikten sonra bu sayfada likidite jetonlarınızı verebilirsiniz." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Talep edilmemiş UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Talep edilmemiş ücretler" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "belirsiz" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Beklenmeyen hata. Takas için gaz tahmin edilemedi." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Gaz tahmininde beklenmeyen bir sorun. Lütfen tekrar deneyin." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap Yönetimi" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs'ın Hizmet Şartları" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap kullanılabilir: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap yönetişimi yalnızca Katman 1'de mevcuttur. Teklifleri ve Oyları görüntülemek için ağınızı Ethereum Mainnet'e geçirin." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap likidite madenciliği" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap geçiş sözleşmesi↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Bilinmeyen Kaynak" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Bilinmeyen hata{0}. Kayma toleransınızı artırmayı deneyin. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Oyların Kilidini Aç" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Oylamanın Kilidini Açın" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Oyların Kilidi Açılıyor" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Desteklenmeyen Varlık" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Desteklenmeyen Varlıklar" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "başlıksız" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Paketi Aç" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "<0/> {0}paketi aç" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Yetkilendirmeyi Güncelle" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Güncelleme listesi" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Daha hızlı fiyat teklifi almak için Uniswap Labs API'sini kullanın." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Kullanıcı" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2, Katman 2'de mevcut değildir. Katman 1 Ethereum'a geçin." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 likiditesi" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Fiyat:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Tahakkuk eden ücretleri ve analizleri görüntüleyin<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Listeyi görüntüle" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Etherscan üzerinde görüntüle" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Explorer'da Görüntüle" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "İşlemi Explorer'da görüntüle" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Oyla" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Karşı Oy Ver" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Destek Oyu Ver" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Teklife karşı oy {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Teklife karşı oy {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "{0}\" nedeni ile {proposalKey} önerisine karşı oy verin" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Teklife destek oyu {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Teklif için oy verin {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "{proposalKey}{0}\" nedeni ile oy verin" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "{proposalId}önerisinde çekimser oy" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "{proposalKey}önerisinde çekimser oy" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "{proposalKey}{0}\" nedeni ile çekimser kalın" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Oylama bitti {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Oylama yaklaşık şu zamanda bitecek: {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Oylama yaklaşık {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Onay Bekliyor" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Cüzdan Adresi veya ENS adı" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Haftalık Ödüller" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Unicorn takımına hoş geldiniz :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Likiditenizi çekmeden talep ettiğinizde likidite madencilik havuzunda kalır." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Çektiğinizde, sözleşme sizin adınıza otomatik olarak UNI talep edecektir!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Çektiğinizde, UNI'niz talep edilir ve likiditeniz madencilik havuzundan çıkarılır." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Çek" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Çek ve Talep Et" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Yatırılan likiditeyi çekin" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "{0} UNI-V2 çekiliyor" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 çekildi!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Paketle" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "<0/> {0}kaydır" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Yanlış Ağ" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Zaten etkin veya bekleyen bir teklifiniz var" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Bir havuz oluşturuyorsunuz" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Bu Uniswap V3 havuzu için ilk likidite sağlayıcısısınız. Likiditeniz mevcut {0} fiyatından geçecek." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "İlk likidite sağlayıcısısınız." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Her bir teklife kendiniz oy verebilir veya oylarınızı üçüncü bir tarafa devredebilirsiniz." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Artık şu coin'lere yatırım yapabilirsiniz: {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Bir teklif göndermek için yeterli oya sahip değilsiniz" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Bu havuzda henüz likiditeniz 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Bu işlemi tamamlamak için ağ ücretlerinin düşmesini beklemeyi düşünebilirsiniz." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Bir hesap bağlamalısınız." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "{0} kullanmak için Uniswap akıllı sözleşmeler iznini vermeniz gerekir. Bunu jeton başına yalnızca bir kez yapmanız gerekir." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Bir teklif göndermek için {formattedProposalThreshold} oya sahip olmalısınız" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Uniswap V3'e yalnızca doğru olduğuna inandığınız bir fiyat üzerinden likidite yatırmalısınız. <0/>Fiyat yanlış görünüyorsa, fiyatı değiştirmek için bir swap yapabilir veya başka birinin yapmasını bekleyebilirsiniz." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Ayrıca bu pozisyondan kazanılan ücretleri de toplarsınız." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Alacağınız:" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "V2 likiditeniz" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Aktif V3 likidite pozisyonlarınız burada görünecektir." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Likidite mevduatlarınız" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Havuz payınız:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Pozisyonunuz" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Pozisyonunuz 0 likiditeye sahip ve ücret kazanmıyor." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Pozisyonunuz burada görünecektir." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Bu fiyatta pozisyonunuz %100 şundan olacak: {0}" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Bu fiyatta pozisyonunuz %100 şundan olacak: {0}." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Piyasa fiyatı, aralığınıza girene kadar pozisyonunuz ücret kazanmayacak veya işlemlerde kullanılmayacaktır." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Pozisyonlarınız" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Oranınız" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Toplam havuz jetonlarınız:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Havuzu oluşturacak yakıtı içerdiği için işlem maliyetiniz çok daha yüksek olacaktır." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "İşleminiz frontrun olabilir" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "İşleminiz başarısız olabilir" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "İşleminiz bu süreden daha uzun süredir beklemedeyse geri alınacaktır." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Fiyatın istenmeyen şekilde bu yüzdeden daha fazla değişmesi durumunda işleminiz geri döner." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "İşlemleriniz burada görünecek..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Talep edilmemiş UNI'niz" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "kaymadan sonra" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "onayla" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "{0} için" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "çorap emojisi var" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "Burada." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// veya ipfs:// veya ENS adı" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "dakika" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "{0} üzerinden" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "{0} jeton listesi aracılığıyla" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Jetonu içe aktar} other {Jetonu içe aktar}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "% {0}" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> / <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Özel Jeton" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Yatırıldı" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Kazanılan Ücretler:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Beklemede" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / hafta" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 LP jetonu mevcut" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} Oylar" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} / {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} jeton" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Fiyat:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Kullanıcı tarafından eklendi" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "%{0}" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}ücret katmanı" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "% {0}" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "% {0}" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Likidite Madenciliği" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Jetonları" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} jeton" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} simge köprüsü" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "%{percentForSlider}" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} / {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Havuzlara Genel Bakış'a geri dön" - diff --git a/src/locales/uk-UA.po b/src/locales/uk-UA.po deleted file mode 100644 index 4240f5c0ca..0000000000 --- a/src/locales/uk-UA.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: uk_UA\n" -"Language-Team: Ukrainian\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: uk\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Переглянути у Провіднику)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(забрати все)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(редагувати)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Вилучити одержувача" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI/тиждень" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Всі пропозиції" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> голосів" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Аналітика облікових записів та накопичена комісія<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Поточна ціна: <1> <2 /> <3>{0} на {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>Порада: Видалення токенів пула переводить вашу позицію назад на базовий токен за поточним курсом, пропорційно вашій частці пула. Нараховані комісії включено в суми, які ви отримуєте." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Порада: Виберіть дію та опишіть свою пропозицію для спільноти. Пропозицію не можна змінити після подання, тому, будь ласка, перевірте всю інформацію перед поданням. Період голосування розпочнеться негайно і триватиме 7 днів. Щоб запропонувати власну дію, <1> прочитайте документи ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>Порада: Використовуйте цей інструмент для пошуку пулів v2, які не відображаються автоматично в інтерфейсі." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>Порада: При додаванні ліквідності ви отримаєте токени пула, що представляє вашу позицію. Ці токени автоматично заробляють комісію пропорційно вашій частці пула, і можуть бути викуплені в будь-який час." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Розблокуйте голосування для підготовки до наступної пропозиції." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Вітаємо в команді Unicorn :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Для подання пропозицій необхідний мінімальний поріг 0,25% від загальної кількості UNI" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Загальна інформація" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Прийняти" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Обліковий запис" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Активний" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Додати" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Додайте <0/> та <1/> до Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Додати Delegate +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Додати ліквідність" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Додати ліквідність V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Додайте ліквідність." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Додайте більше ліквідності" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Додати {0} до Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Додати ліквідність {0}-{1}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Додати ліквідність V3 {0}/{1}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Додано {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Адреса не має доступного запиту" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Проти" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Дозволити перенесення токенів LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Дозвольте торгувати з високими цінами й пропустіть екран підтвердження. Приймайте це рішення на власний ризик." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Дозвольте протоколу Uniswap використовувати ваш {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Дозволено" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Сума" - -#: src/hooks/useSwapCallback.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." -msgstr "Під час спроби виконати цей обмін сталася помилка. Можливо, вам доведеться збільшити толерантність до ковзання. Якщо це не спрацює, можливо, існує несумісність з токеном, яким ви торгуєте. Примітка: плата за перенесення та перебазування токенів несумісні з Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Схвалити" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Затвердити маркер" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Схвалити {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Схвалено" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Схвалення" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Схвалення {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Арбіскан" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Арбітрум міст" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Арбітрум знаходиться в бета -версії і може мати простої. Під час простою ваша позиція не буде заробляти комісії, і ви не зможете видалити ліквідність. <0> Докладніше." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Ви впевнені?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Як учасник спільноти Uniswap ви можете стверджувати, що UNI слід використовувати для голосування й управління.<0/><1/><2>Прочитайте більше про UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Щонайменше {0} {1} і {2} {3} повертаються до вашого гаманця завдяки вибраному діапазону ціни." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Автоматично" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API автоматичного маршрутизатора" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Доступно для депозиту: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Баланс: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Найкраще для екзотичних пар." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Найкраще для більшості пар." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Найкраще для стабільних пар." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Найкраще підходить для дуже стабільних пар." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Найкращий маршрут коштує ~{formattedGasPriceString} в газі." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Заблокована адреса" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Міст" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Додавши ліквідність, ви заробите 0,3% усієї торгівлі за цією парою пропорційно вашій частці пула. До пула додається комісія, що нараховується в режимі реального часу й може бути отримана шляхом зняття ліквідності." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Підключаючи гаманець, ви погоджуєтеся з Умовами надання послуг <0> і підтверджуєте, що прочитали та розумієте відмову від відповідальності<1>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Скасовано" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Змінити" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Діаграми" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Перевірити стан мережі" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Ознайомтесь з нашими посібниками з просування v3 LP та посібниками з перенесення." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Забрати" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Претензія <0/> для {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Забрати UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Забрати токени UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Вимагайте винагороду UNI за {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Забрати комісії" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Заберіть свої токени UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Задоволений" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Зібрано UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Заявлено!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Відбувається збирання" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Відбувається збирання UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Відбувається збирання UNI {0}" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Очистити все" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Очистити все" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Закрити" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Закрито" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Зібрати" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Зібрати як WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Збирайте комісії" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Збирають {0}/{1} збори" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Зібрано" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Збирається" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Збір комісій" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Збір комісій зніме доступні для вас наразі комісії." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Підтвердити" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Підтвердити пропозицію" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Підтвердити обмін" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Підтвердьте цю операцію у своєму гаманці" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Підтвердіть транзакцію в гаманці" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Підключити Гаманець" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Підключіть гаманець" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Підключіться до гаманця, щоб знайти пули" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Підключіться до гаманця, щоб переглянути свою ліквідність V2." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Підключіться до гаманця, щоб переглянути свою ліквідність." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Під'єднано через {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Скопійовано" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Копіювати адресу" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Створити пул і пропозицію" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Створити пропозицію" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Створити пару" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Створити пул" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Створіть випуск на GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Створіть пул і додайте ліквідність V3 {0}/{1}" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Створіть пул." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Створити {0}/{1} V3 басейн" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Поточна ціна" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Поточна {0} ціна:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Темна тема" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Переможений" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Делегувати голоси" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Делегуйте право голосу на {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Делеговані до:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Делегування голосів" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Внести" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Суми поповнення" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Токени для внесення на UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Ліквідність внеску" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Внесіть токени в мережу {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Вкладіть свої токени Провайдера ліквідності й отримайте UNI, токен управління протоколом Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Відкладена ліквідність:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Зараховано {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Зарахування ліквідності" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Опис" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Докладно" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Подробиці" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Відключитись" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Несправність" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Відхилити" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Документація" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Не бачите жодної з ваших позицій v2? <0>Імпортуйте їх." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Зароблені токени UNI представляють акції з правом голосу в управлінні Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Редагувати" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "Порівняння ефективності" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Введіть відсоток" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Введіть одержувача" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Введіть дійсний відсоток прослизання" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Введіть адресу для ініціювання збору UNI. Якщо адреса має UNI для збору, її буде надіслано їм після надсилання." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Введіть суму" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Введіть дійсне місце списку" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Введіть дійсну адресу токена" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Введіть {0} суму" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Помилка" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Помилка підключення" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Помилка підключення. Спробуйте оновити сторінку." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Помилка імпорту списку" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Оцінка може відрізнятися через налаштування газу вашого гаманця" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Приблизна плата за мережу" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Страчений" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "Розширені результати з неактивних списків токенів" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "Очікуваний результат" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Експертний режим" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Експертний режим вимикає підказку про підтвердження операції та дозволяє торгувати з великим проковзанням, що часто призводить до невдалих ставок і втрати коштів." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Термін дії закінчився" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Ознайомтеся з Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Не вдалося переключити мережі з інтерфейсу Uniswap. Щоб використовувати Uniswap на {0}, ви повинні змінити мережу у вашому гаманці." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Рівень комісій" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Рівень плати" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Отримання найкращої ціни..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Для" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Для кожного пула, показаного нижче, клацніть на перенесення, щоб видалити ліквідність з Uniswap V2 та внести її в Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Від" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Від (максимум)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Повний діапазон" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Позиції в повному діапазоні можуть заробити менше плати, ніж концентровані позиції. Дізнайтеся більше <0> тут ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Отримайте підтримку в Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Центр допомоги" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Сховати" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Приховати закриті позиції" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Вплив високої ціни" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Як ця програма використовує API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Я розумію" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Якщо ви купуєте токен із цього списку, можливо, його не вдасться продати назад." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Імпортувати" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Імпортувати список" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Імпортувати пул" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Імпортувати пул V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Імпортувати на власний ризик" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "В зоні покриття" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Збільшити ліквідність" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Початкові ціни й частка пулу" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Ініціалізація..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Вхідні дані оцінюються. Ви продасте щонайбільше <0>{0} {1}, або операцію буде скасовано." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Встановити Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Недостатня ліквідність для цієї угоди." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Недостатній баланс {0}" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Налаштування інтерфейсу" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Недійсна пара" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Недійсна пара." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Недійсне введення ціни" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Вибрано недійсний діапазон. Мінімальна ціна має бути нижчою за максимальну." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Недійсний одержувач" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Мову" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Ознайомитися" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Дізнайтеся про забезпечення ліквідності" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Вчи більше" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Юридична інформація та конфіденційність" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Світла тема" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Ліквідність" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Дані про ліквідність відсутні." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Нагороди постачальника ліквідності" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Постачальники ліквідності заробляють комісію в розмірі 0,3% за всі продажі, пропорційно своїй частці в пулі. До пула додається комісія, що нараховується в режимі реального часу й може бути отримана шляхом зняття ліквідності." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Списки" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Завантажено" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Завантажується" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "МАКС" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Управління" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Управління ліквідністю в пулі винагород" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Управління списками токенів" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Керуйте цим пулом." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Максимум" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Максимальна ціна" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Максимальна ціна" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Максимум:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Максимум відправлених" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Меню" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Перенесення" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Перенесення ліквідності до V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Перенесення ліквідності V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Перенесіть свої токени ліквідності з Uniswap V2 lj Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Міграція {0}/{1} ліквідність V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Відбувається перенесення" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Мінімальна ціна" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Мінімальна ціна" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Мінімум:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Мінімум отриманих" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Відсутня залежність" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Більше" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Плата за мережу" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Попередження про мережу" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Комісія за мережу перевищує 50% від суми обміну!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Нова позиція" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Не знайдено ліквідності V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Немає активних пулів" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Немає даних" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Без опису." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Ліквідності не знайдено." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Пул не знайдено." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Пропозиції не знайдено." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Результатів не знайдено." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Не створено" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "ВИМК" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "УВІМК" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "ВИКОРИСТОВУЙТЕ ЦИЙ ЛИШЕ РЕЖИМ, ЯкЩО ВИ ЗНАЄТЕ, ЩО РОБИТЕ." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Вимк." - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Увімк." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Щойно ви будете задоволені ставкою, клацніть для перегляду." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Участь у голосуванні можуть брати лише голоси UNI, які були самостійно делеговані або делеговані на іншу адресу до блоку {0}." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ой! Сталася невідома помилка. Оновіть сторінку або зайдіть з іншого браузера чи пристрою." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Шлюз оптимізму" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Оптимізм знаходиться в бета-версії і може виникнути простої. Optimism очікує запланованих простоїв для оновлення мережі найближчим часом. Під час простою ваша позиція не отримуватиме комісій, і ви не зможете вилучити ліквідність. <0>Детальніше." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Оптимістичний Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Поза діапазоном" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Результат оцінюється. Якщо ціна зміниться більш ніж на {0}%, вашу транзакцію буде скасовано." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Результат оцінюється. Ви отримаєте щонайменше <0>{0} {1}, або операцію буде скасовано." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Результат буде надіслано на <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Власник" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Пули, що беруть участь" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Очікується" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Підтвердьте, що хочете видалити цей список, набравши ВИДАЛИТИ" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Будь ласка, підключіться до рівня 1 Ефіріум" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Підключіться до відповідної мережі Ethereum." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Введіть слово \"{confirmWord}\", аби увімкнути Експертний режим." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Багатокутний міст" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Пул" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Пул знайдено!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Ставка пулу" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Ставка пулу" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Токени пулу в пулі винагород:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Заведено в пул {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Огляд пулів" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Попередній перегляд" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Ціна" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Різниця в ціні:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Вплив ціни" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Вплив ціни занадто високий" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Ціну оновлено" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Діапазон цін" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Ціна:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Ціни та частка пулу" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Пропозиція" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Пропозиція подана" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Назва пропозиції" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Пропозиції" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Пропозиції, подані членами спільноти, з’являться тут." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Запропонована дія" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Пропонувач" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Відмова від відповідальності протоколу" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "У черзі" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Ставки" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Дізнатися більше про UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Докладніше про управління Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Докладніше про забезпечення ліквідності" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Докладніше про непідтримувані активи" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Останні Транзакції" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Одержувач" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Видалити" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Видаліть <0/> та <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Видалити суму" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Видалити делегата" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Видалити ліквідність" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Видалити список" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Видалення {0} {1} та {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Видалення {0} {1} і{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Особливості запиту" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Повернутись" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Шукайте ім’я або введіть адресу" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Виберіть Пара" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Виберіть мережу" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Вибрати токен" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Виберіть токен, щоб знайти свою ліквідність v2." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Виберіть дію" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Обраний діапазон" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Самостійний аналіз" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Самостійно делеговано" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Встановити ціновий діапазон" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Встановити стартову ціну" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Частка пулу" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Частка пулу:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Показати Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Показати закриті позиції" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Простий" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Толерантність до проковзування" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Деякі активи недоступні через цей інтерфейс, оскільки вони можуть погано працювати зі смарт-контрактами, або ж ми не можемо дозволити торгівлю з законних причин." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Сталася помилка" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "Крок 1. Отримайте токени ліквідності UNI-V2" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Подати нову пропозицію" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Подання пропозиції" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Відправка голосу" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Вдалося" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Успіху" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Пропозиція" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Постачання {0} {1} та {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Обмін" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Поміняти <0/> на точно <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Обміняти в будь-якому випадку" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Поміняти <0/> на <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Помилка підкачки: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Обмін {0} {1} на {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Дякуємо за участь у спільноті Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "%, Який ви заробите на гонорарах." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Інваріант Uniswap x * y = k не був задоволений в обміні. Зазвичай це означає, що один із токенів, який ви міняєте, включає спеціальну поведінку при передачі." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Додаток отримує дані блокчейну з розміщеної служби The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Додаток отримує дані в мережі та створює виклики контрактів за допомогою API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Програма отримує оптимальний торговий шлях із сервера Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Додаток реєструє анонімну статистику використання, щоб з часом покращуватись." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Програма безпечно збирає адресу вашого гаманця та передає її TRM Labs Inc. з міркувань ризику та відповідності." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Вартість відправки цієї транзакції становить більше половини вартості введеної суми." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Поточна кількість швидкого газу для відправки транзакції на L1. Плата за газ сплачується в національній валюті Ethereum Ether (ETH) і номінована в GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Розрахована різниця між вхідними та вихідними сумами в доларах США." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Вхідний токен неможливо передати. Можливо, виникла проблема з вхідним токеном." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Ринкова ціна виходить за межі вказаного діапазону цін. Можливі лише внески з одним активом." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Останній номер блоку в цій мережі. Ціни оновлюються на кожен блок." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Вихідний токен неможливо передати. Можливо, виникла проблема з вихідним токеном." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Вихідний токен результату неможливо передати. Можливо, виникла проблема з вихідним токеном результату. Зауважте: комісія за перенесення й перебазування токенів несумісна з Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Ціна цього пулу виходить за межі вибраного вами діапазону. Ваша позиція наразі не заробляє комісій." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Ціна цього пулу перебуває в межах вибраного вами діапазону. Ваша позиція наразі заробляє комісії." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Співвідношення доданих токенів встановить ціну цього пулу." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Не вдалося надіслати транзакцію, оскільки термін минув. Упевніться в тому, що термін транзакції не занадто короткий." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Даних про ліквідність немає." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Ця програма використовує такі сторонні API:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Цей пул потрібно ініціалізувати, перш ніж ви зможете додати ліквідність. Для ініціалізації виберіть початкову ціну пулу. Потім введіть діапазон цін ліквідності та суму депозиту. Плата за газ буде вищою, ніж зазвичай, через транзакцію ініціалізації." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Цей маршрут оптимізує вашу загальну продуктивність, враховуючи розділені маршрути, кілька стрибків і вартість газу на кожному етапі." - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Цей маркер не підтримується в додатку Uniswap Labs" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Цей інструмент безпечно перенесе вашу ліквідність {0} до V3. Цей процес абсолютно не вимагає надійності завдяки" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Ця операція не буде успішною через рух ціни. Спробуйте збільшити свою толерантність до проковзування. Зауважте: комісія за перенесення й перебазування токенів несумісна з Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ця транзакція не буде успішною ані через рух ціни, ані через комісію за переказ. Спробуйте збільшити свою толерантність до проковзування." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Порада: спеціальні токени зберігаються локально у вашому браузері" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Кому" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "До (не менше)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Токен не підтримується" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Токени" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Усього внесено" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Усього внесків" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Торговий шлях" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Налаштування транзакцій" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Транзакцію надіслано" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Транзакція завершена в" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Кінцевий термін транзакції" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Транзакцію відхилено." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Токен передачі" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Спробуйте ще раз" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Увімкнути експертний режим" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI щойно прибув" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Токени UNI представляють акції з правом голосу в управлінні Uniswap. Ви можете проголосувати за кожну пропозицію самостійно або делегувати свої голоси третій стороні." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} спалено" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Потрібні токени LP UNI-V2. Після того, як ви додали ліквідність до {0}-{1} ви можете поставити свої токени ліквідності на цю сторінку." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "Незатребувані UNI" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Незатребувані комісії" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Невизначено" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Неочікувана помилка. Не вдалося оцінити газ для обміну." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Неочікувана проблема з оцінкою газу. Будь ласка спробуйте ще раз." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Управління Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Умови використання Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap доступно в: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Універсальне управління доступне лише на рівні 1. Перейдіть до мережі Ethereum Mainnet, щоб переглянути пропозиції та проголосувати." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Майнінг ліквідності Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Контракт Uniswap щодо перенесення↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Невідоме джерело" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Невідома помилка{0}. Спробуйте збільшити свою толерантність до проковзування. Зауважте: комісія за перенесення й перебазування токенів несумісна з Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Розблокувати голоси" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Розблокувати голосування" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Розблокування голосів" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Непідтримуваний актив" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Непідтримувані активи" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Без назви" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Розгорнути" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Розгорніть <0/> до {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Оновити делегацію" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Оновити список" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Використовуйте Uniswap Labs API, щоб швидше отримувати ціни." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Користувач" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 недоступний на рівні 2. Перейдіть на рівень 1 Ефіріум." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 ліквідність" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "Ціна V3 {0}:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Переглянути нараховані комісії та аналітику <0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Переглянути список" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Переглянути на Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Переглянути на Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Переглянути транзакцію в Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Голосування" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Проголосувати проти" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Голосувати за" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Голосувати проти пропозиції {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Проголосуйте проти пропозиції {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Голосуйте проти пропозиції {proposalKey} з причиною \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Голосувати за пропозицію {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Голосуйте за пропозицію {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Голосуйте за пропозицію {proposalKey} з причиною \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Проголосуйте за утримання за пропозицією {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Проголосуйте за утримання за пропозицією {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Проголосуйте за утримання при пропозиції {proposalKey} з причиною \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Голосування завершилось {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Голосування завершується приблизно {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Голосування починається приблизно з {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Очікується підтвердження" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Адреса гаманця або назва ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Винагороди щотижня" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Ласкаво просимо до команди Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Коли ви забираєте, але не знімаєте, ваша ліквідність залишається в пулі для майнінгу." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Коли ви знімаєте гроші, контракт автоматично вимагатиме UNI від вашого імені!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Коли ви знімаєте гроші, вимагатиметься ваш UNI, а ваша ліквідність вилучається з пулу майнінгу." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Зняття коштів" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Зняти й забрати" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Зняти вкладену ліквідність" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Зняття {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "UNI-V2 знято!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Перенос" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Оберніть <0/> до {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Неправильна мережа" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "У вас вже є активна або очікувана пропозиція" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Ви створюєте пул" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Ви є першим постачальником ліквідності для цього пулу Uniswap V3. Ваша ліквідність перейде за поточною ціною {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Ви перший постачальник ліквідності." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Ви можете голосувати за кожну пропозицію самостійно або делегувати свої голоси третім особам." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Тепер ви можете торгувати {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Вам не вистачає голосів, щоб подати пропозицію" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "Можливо, ви втратили з’єднання з мережею." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Ви можете почекати, доки комісія за мережу знизиться, щоб завершити цю транзакцію." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Ви маєте підключити обліковий запис." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Ви маєте дати дозвіл розумних контрактів Uniswap на використання ваших {0}. Це потрібно зробити лише один раз на токен." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Щоб подати пропозицію, потрібно мати {formattedProposalThreshold}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Ви маєте вносити ліквідність у Uniswap V3 лише за ціною, яку ви вважаєте правильною. <0/> Якщо ціна здається неправильною, ви можете здійснити обмін, аби перемістити ціну, або дочекатися, поки цього зробить хтось інший." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Ви також збиратимете комісії, отримані з цієї позиції." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Ви отримаєте" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Ваша ліквідність V2" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "Тут з’являться ваші активні позиції ліквідності V3." - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Ваші депозити ліквідності" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Ваша частка в пулі:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Ваша позиція" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Ваша позиція має ліквідність 0 і не заробляє комісії." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Тут з’явиться ваша позиція." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Ваша позиція буде на 100% складатися з {0} за цією ціною" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Ваша позиція буде на 100% {0} за цією ціною." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Ваша позиція не зароблятиме комісій і не використовуватиметься в торгівлі, поки ринкова ціна не перейде у ваш діапазон." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Ваші позиції" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Ваша ставка" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Ваша загальна сума токенів пулу:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Вартість вашої транзакції буде набагато вищою, оскільки вона включає газ для створення пулу." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Ваша транзакція може бути випереджаючою біг" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Ваша транзакція може перерватися" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Вашу транзакцію буде скасовано, якщо вона очікуватиме більше цього періоду часу." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Вашу транзакцію буде скасовано, якщо ціна зміниться більш ніж на цей відсоток." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Тут з’являтимуться ваші транзакції..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "Ваші неотримані UNI" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "після ковзання" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "підтвердити" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "для {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "має емодзі зі шкарпетками" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "тут." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https://, або ipfs://, або ім’я ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "хвилин" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "через {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "через {0} список токенів" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {токен імпортувати} other {токенів імпортувати}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> на <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} спеціальних токенів" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "Внесено {0}" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "Зароблено {0} комісій:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} у черзі" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI/тиждень" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "Доступно {0} токенів LP UNI-V2" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} голосів" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} на {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} токенів" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "Ціна {0} {1}:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Додано користувачем" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Рівень комісії {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% пул" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% вибрати" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Видобуток ліквідності" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "LP NFT {0}/{1}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "Токени LP {0}/{1}" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} лексем" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} маркерний міст" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} на {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Повернутися до огляду пулів" - diff --git a/src/locales/vi-VN.po b/src/locales/vi-VN.po deleted file mode 100644 index e1171903c7..0000000000 --- a/src/locales/vi-VN.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: vi_VN\n" -"Language-Team: Vietnamese\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: vi\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(Xem trên Explorer)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(xóa tất cả)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(chỉnh sửa)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- Xóa người nhận" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI / tuần" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> Tất cả các đề xuất" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> Phiếu bầu" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>Phân tích tài khoản và phí tích lũy<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0> Giá hiện tại: <1> <2 /> <3>{0} trên {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0> Mẹo: Loại bỏ mã token chung sẽ chuyển vị trí của bạn trở lại thành các mã token cơ bản với tỷ lệ hiện tại, tỷ lệ thuận với thị phần của bạn trong nhóm. Phí tích lũy được bao gồm trong số tiền bạn nhận được." - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0> Mẹo: Chọn một hành động và mô tả đề xuất của bạn cho cộng đồng. Đề xuất không thể được sửa đổi sau khi gửi, vì vậy vui lòng xác minh tất cả thông tin trước khi gửi. Thời gian bình chọn sẽ bắt đầu ngay lập tức và kéo dài trong 7 ngày. Để đề xuất một hành động tùy chỉnh, hãy <1> đọc tài liệu ." - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0> Mẹo: Sử dụng công cụ này để tìm các nhóm v2 không tự động xuất hiện trong giao diện." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0> Mẹo: Khi bạn thêm thanh khoản, bạn sẽ nhận được mã token chung đại diện cho vị trí của bạn. Các mã token này tự động kiếm được phí tỷ lệ thuận với phần của bạn trong nhóm và có thể được đổi bất kỳ lúc nào." - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>Mở khóa biểu quyết để chuẩn bị cho đề xuất tiếp theo." - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 Chào mừng đến với đội Unicorn :) <1> 🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "Yêu cầu ngưỡng tối thiểu 0,25% tổng nguồn cung cấp UNI để gửi đề xuất" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "Giới thiệu" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "Chấp nhận" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "Tài khoản" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "Hoạt động" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "Thêm vào" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "Thêm <0 /> và <1 /> vào Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "Thêm đại biểu +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "Thêm thanh khoản" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "Thêm thanh khoản V2" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "Thêm thanh khoản." - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "Thêm thanh khoản" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "Thêm {0} vào Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "Thêm {0}-{1} thanh khoản" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "Thêm {0}/{1} thanh khoản V3" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "Đã thêm {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "Địa chỉ không có yêu cầu" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "Chống lại" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "Cho phép di chuyển mã token LP" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "Cho phép các giao dịch tác động đến giá cao và bỏ qua màn hình xác nhận. Sử dụng và tự gánh chịu mọi rủi ro." - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "Cho phép Giao thức hoán đổi Uniswap sử dụng {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "Được phép" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "Số tiền" - -#: src/hooks/useSwapCallback.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." -msgstr "Đã xảy ra lỗi khi cố gắng thực hiện hoán đổi này. Bạn có thể cần phải tăng khả năng chịu trượt của mình. Nếu điều đó không hiệu quả, có thể có sự không tương thích với mã thông báo bạn đang giao dịch. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3." - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "Phê duyệt" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "Phê duyệt mã thông báo" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "Phê duyệt {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "Tán thành" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "Đang phê duyệt" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "Đang phê duyệt {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Cầu Arbitrum" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum đang ở giai đoạn Beta và có thể gặp phải thời gian chết. Trong thời gian ngừng hoạt động, vị thế của bạn sẽ không kiếm được phí và bạn sẽ không thể xóa thanh khoản. <0> Đọc thêm." - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "Bạn có chắc không?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "Là một thành viên của cộng đồng Uniswap, bạn có thể yêu cầu UNI được sử dụng để bỏ phiếu và quản trị. <0 /> <1 /> <2> Đọc thêm về UNI" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "Ít nhất {0} {1} và {2} {3} sẽ được hoàn lại vào ví của bạn do phạm vi giá đã chọn." - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "Tự động" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "API bộ định tuyến tự động" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "Có sẵn để đặt cọc: {0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "Số dư: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "Tốt nhất cho các cặp kỳ lạ." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "Tốt nhất cho hầu hết các cặp." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "Tốt nhất cho các cặp ổn định." - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "Tốt nhất cho các cặp rất ổn định." - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "Tuyến đường giá tốt nhất chi phí ~{formattedGasPriceString} xăng." - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "Địa chỉ bị chặn" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "Cầu" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Bằng cách thêm thanh khoản, bạn sẽ kiếm được 0,3% tất cả các giao dịch trên cặp tiền này tỷ lệ với phần của bạn trong nhóm. Phí được thêm vào nhóm, tích lũy trong thời gian thực và có thể được yêu cầu bằng cách rút tiền thanh khoản của bạn." - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "Bằng cách kết nối ví, bạn đồng ý với <0>Điều khoản dịch vụ 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>." - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "Đã hủy" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "Thay đổi" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "Biểu đồ" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "Kiểm tra trạng thái mạng" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "Xem hướng dẫn di chuyển và hướng dẫn v3 LP của chúng tôi." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "Nhận" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "Yêu cầu <0 /> cho {0}" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "Nhận UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "Yêu cầu mã token UNI" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "Yêu cầu phần thưởng UNI cho {0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "Yêu cầu phí" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "Yêu cầu mã token UNI của bạn" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "Đã yêu cầu bồi thường" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "Đã nhận UNI!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "Đã yêu cầu bồi thường!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "Đang yêu cầu" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "Đang yêu cầu UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "Đang yêu cầu {0} UNI" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "Xóa tất cả" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "Xóa tất cả" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "Đóng" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "Đã đóng cửa" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "Sưu tầm" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "Thu thập dưới dạng WETH" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "Thu phí" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "Thu thập {0}/{1} phí" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "Đã thu thập" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "Sưu tập" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "Thu phí" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "Thu phí sẽ rút các khoản phí hiện có sẵn cho bạn." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "Xác nhận" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "Xác nhận cung cấp" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "Xác nhận Hoán đổi" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "Xác nhận giao dịch này trong ví của bạn" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "Xác nhận giao dịch trong ví" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "Kết nối ví" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "Kết nối ví" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "Kết nối với ví để tìm nhóm" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "Kết nối với ví để xem tính thanh khoản V2 của bạn." - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "Kết nối với ví để xem tính thanh khoản của bạn." - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "Đã kết nối với {name}" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "Đã sao chép" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "Sao chép địa chỉ" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "Tạo Nhóm & Nguồn cung" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "Tạo đề xuất" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "Tạo một cặp" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "Tạo một nhóm" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "Tạo sự cố trên GitHub" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "Tạo nhóm và thêm {0}/{1} thanh khoản V3" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "Tạo nhóm." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "Tạo {0}/{1} hồ bơi V3" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "Giá hiện tại" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "Giá {0} hiện tại:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "Chủ đề tối" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "Bị đánh bại" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "Phiếu bầu ủy quyền" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "Ủy quyền biểu quyết thành {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "Giao cho:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "Ủy quyền phiếu bầu" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "Tiền gửi" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "Số tiền đặt cọc" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "Gửi token UNI-V2 LP" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "Thanh khoản tiền gửi" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "Gửi mã thông báo vào mạng {label}" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "Gửi mã token Nhà cung cấp thanh khoản của bạn để nhận UNI, mã token quản trị giao thức Uniswap." - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "Thanh khoản tiền gửi:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "Đã gửi {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "Thanh khoản tiền gửi" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "Sự miêu tả" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "Chi tiết" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "Chi tiết" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "Ngắt kết nối" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Bất hòa" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "Bỏ qua" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "Docs" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "Bạn không thấy một trong các vị trí v2 của mình? <0> Nhập nó ngay." - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "Token UNI kiếm được đại diện cho cổ phần có quyền biểu quyết trong quản trị Uniswap." - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "Biên tập" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "So sánh hiệu quả" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "Nhập một phần trăm" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "Nhập người nhận" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "Nhập phần trăm trượt giá hợp lệ" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "Nhập địa chỉ để kích hoạt khiếu nại UNI. Nếu địa chỉ có bất kỳ UNI nào có thể xác nhận quyền sở hữu, địa chỉ đó sẽ được gửi cho họ khi gửi." - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "Nhập số tiền" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "Nhập vị trí danh sách hợp lệ" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "Nhập địa chỉ mã token hợp lệ" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "Nhập số tiền {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "Lỗi" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "Lỗi kết nối" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "Lỗi kết nối. Hãy thử làm mới trang." - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "Lỗi khi nhập danh sách" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "Ước tính có thể khác do cài đặt gas ví của bạn" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "Phí mạng ước tính" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "Thực thi" - -#: src/components/SearchModal/CurrencyList.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" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "Chế độ chuyên gia" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "Chế độ chuyên gia tắt nhắc nhở xác nhận giao dịch và cho phép thực hiện các giao dịch trượt giá cao thường dẫn đến tỷ giá xấu và mất tiền." - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "Đã hết hạn" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "Khám phá Uniswap Analytics." - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "Không chuyển được mạng từ Giao diện Hoán đổi Uniswap. Để sử dụng Uniswap trên {0}, bạn phải thay đổi mạng trong ví của mình." - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "Bậc phí" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "Bậc phí" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "Đang tìm nạp giá tốt nhất ..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "Đối với" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "Đối với mỗi pool được hiển thị bên dưới, hãy nhấp vào di chuyển để xóa thanh khoản của bạn khỏi Uniswap V2 và gửi nó vào Uniswap V3." - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "Từ" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "Từ (nhiều nhất)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "Phạm vi đầy đủ" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "Các vị trí đầy đủ có thể kiếm được ít phí hơn các vị trí tập trung. Tìm hiểu thêm <0> tại đây ." - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "Nhận hỗ trợ về Discord" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "Trung tâm trợ giúp" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "Ẩn giấu" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "Ẩn các vị trí đã đóng" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "Tác động giá cao" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "Cách ứng dụng này sử dụng API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "Tôi hiểu" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "Nếu bạn mua mã token từ danh sách này, bạn có thể không bán lại được." - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "Nhập" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "Nhập danh sách" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "Nhập Pool" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "Nhập pool V2" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "Nhập rồi tự chịu mọi rủ ro" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "Trong phạm vi" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "Tăng tính thanh khoản" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "Giá ban đầu và tỷ trọng pool" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "Đang khởi tạo..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "Đầu vào được ước tính. Bạn sẽ bán nhiều nhất <0>{0} {1} hoặc giao dịch sẽ hoàn nguyên." - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "Cài đặt Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "Không đủ thanh khoản cho giao dịch này." - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "Số dư {0} không đủ" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "Cài đặt giao diện" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "Cặp không hợp lệ" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "Cặp không hợp lệ." - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "Giá đầu vào không hợp lệ" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "Đã chọn dải ô không hợp lệ. Giá tối thiểu phải thấp hơn giá tối đa." - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "Người nhận không hợp lệ" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "Ngôn ngữ" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "Học hỏi" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "Tìm hiểu về cung cấp tính thanh khoản" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "Tìm hiểu thêm" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "Pháp lý & Quyền riêng tư" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "Chủ đề ánh sáng" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "Thanh khoản" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "Dữ liệu thanh khoản không có sẵn." - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "Phần thưởng của nhà cung cấp thanh khoản" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "Các nhà cung cấp thanh khoản kiếm được một khoản phí 0,3% cho tất cả các giao dịch tỷ lệ với phần của họ trong pool. Phí được thêm vào pool, tích lũy trong thời gian thực và có thể được yêu cầu bằng cách rút tiền thanh khoản của bạn." - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "Danh sách" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "Đã nạp" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "Đang tải" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "TỐI ĐA" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "Quản lý" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "Quản lý tính thanh khoản trong Nhóm phần thưởng" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "Quản lý danh sách mã Token" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "Quản lý pool này." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "Tối đa" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "Giá tối đa" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "Giá tối đa" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "Tối đa:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "Đã gửi tối đa" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "Thực đơn" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "Di chuyển" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "Di chuyển thanh khoản sang V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "Di chuyển Thanh khoản V2" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "Di chuyển mã token thanh khoản của bạn từ Uniswap V2 sang Uniswap V3." - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "Di chuyển {0}/{1} thanh khoản cho V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "Đang di chuyển" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "Giá tối thiểu" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "Giá tối thiểu" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "Tối thiểu:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "Số tiền nhận được tối thiểu" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Thiếu phụ thuộc" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "Thêm nữa" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "Phí mạng" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "Cảnh báo mạng" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "Phí mạng vượt quá 50% số tiền hoán đổi!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "Vị trí mới" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "Không tìm thấy Thanh khoản V2." - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "Không có pool hoạt động" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "Không có dữ liệu" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "Không có mô tả." - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "Không tìm thấy thanh khoản." - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "Không tìm thấy pool." - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "Không tìm thấy đề xuất nào." - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "Không có kết quả nào được tìm thấy." - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "Chưa tạo" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "TẮT" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "BẬT" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "CHỈ SỬ DỤNG CHẾ ĐỘ NÀY NẾU BẠN BIẾT BẠN ĐANG LÀM GÌ." - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "Tắt" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "Bật" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "Một khi bạn hài lòng với tỷ lệ, nhấp vào cung cấp để xem xét." - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "Chỉ những phiếu bầu UNI đã được tự ủy quyền hoặc được ủy quyền cho một địa chỉ khác trước khối {0} đủ điều kiện để bỏ phiếu." - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "Ối! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Cổng lạc quan" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Tính năng lạc quan đang ở giai đoạn Beta và có thể gặp phải thời gian chết. Lạc quan mong đợi thời gian ngừng hoạt động theo kế hoạch để nâng cấp mạng trong tương lai gần. Trong thời gian ngừng hoạt động, vị trí của bạn sẽ không kiếm được phí và bạn sẽ không thể xóa thanh khoản. <0>Đọc thêm." - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Etherscan lạc quan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "Ngoài phạm vi" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "Đầu ra được ước tính. Nếu giá thay đổi nhiều hơn {0}%, giao dịch của bạn sẽ hoàn nguyên." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "Đầu ra được ước tính. Bạn sẽ nhận được ít nhất <0>{0} {1} hoặc giao dịch sẽ hoàn nguyên." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "Đầu ra sẽ được gửi đến <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "Chủ sở hữu" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "Pool tham gia" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "Đang chờ xử lý" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "Vui lòng xác nhận rằng bạn muốn xóa danh sách này bằng cách gõ XÓA" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "Vui lòng kết nối với Ethereum Lớp 1" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "Vui lòng kết nối với mạng Ethereum thích hợp." - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "Vui lòng nhập từ \"{confirmWord}\" để bật chế độ chuyên gia." - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "Cầu đa giác" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "Pool" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "Đã tìm thấy pool!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "Tỷ lệ Pool" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "Tỷ lệ pool" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "Nhóm mã token trong nhóm phần thưởng:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "Pool {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "Tổng quan về pool" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "Xem trước" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "Giá" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "Chênh lệch giá:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "Tác động giá" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "Tác động giá quá cao" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "Đã cập nhật giá" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "Phạm vi giá" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "Giá:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "Giá và pool chia sẻ" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "Đề nghị" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "Đề xuất đã được đệ trình" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "Tiêu đề đề xuất" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "Đề xuất" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "Các đề xuất do các thành viên cộng đồng gửi sẽ xuất hiện ở đây." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "Đề xuất hành động" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "Người đề xuất" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "Tuyên bố từ chối trách nhiệm" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "Đã xếp hàng" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "Tỷ giá" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "Đọc thêm về UNI" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "Đọc thêm về quản trị Uniswap" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "Đọc thêm về cung cấp thanh khoản" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "Đọc thêm về nội dung không được hỗ trợ" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "Giao dịch gần đây" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "Người nhận" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "Xóa" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "Xóa <0 /> và <1 />" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "Xóa số tiền" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "Xóa ủy quyền" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "Loại bỏ thanh khoản" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "Xóa danh sách" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "Loại bỏ {0} {1} và {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "Loại bỏ {0} {1} và{2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "Yêu cầu tính năng" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "Trở về" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "Tìm kiếm tên hoặc dán địa chỉ" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "Chọn cặp" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "Chọn một mạng" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "Chọn một mã token" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "Chọn một mã token để tìm thanh khoản v2 của bạn." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "Chọn một hành động" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "Phạm vi đã chọn" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "Bản thân" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "Tự ủy quyền" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "Đặt phạm vi giá" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "Đặt giá khởi điểm" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "Chia sẻ của Pool" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "Chia sẻ của Pool:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "Hiển thị Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "Hiển thị các vị trí đã đóng" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "Đơn giản" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "Khả năng chịu trượt" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "Một số tài sản không khả dụng thông qua giao diện này vì chúng không hoạt động tốt với các hợp đồng thông minh hoặc chúng tôi không thể cho phép giao dịch vì lý do pháp lý." - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "Đã xảy ra sự cố" - -#: 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" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "Gửi đề xuất mới" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "Gửi đề xuất" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "Gửi phiếu bầu" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "Thành công" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "Sự thành công" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "Cung cấp" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "Cung cấp {0} {1} và {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "Hoán đổi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "Hoán đổi <0 /> lấy chính xác <1 />" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "Vẫn hoán đổi" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "Hoán đổi chính xác <0 /> lấy <1 />" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "Hoán đổi không thành công: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "Đổi {0} {1} lấy {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "Cảm ơn bạn đã tham gia cộng đồng Uniswap <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "% Bạn sẽ kiếm được từ phí." - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "Bất biến Uniswap x * y = k không được thỏa mãn bởi hoán đổi. Điều này thường có nghĩa là một trong những mã token bạn đang hoán đổi kết hợp hành vi tùy chỉnh khi chuyển." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "Ứng dụng tìm nạp dữ liệu blockchain từ dịch vụ lưu trữ của The Graph." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "Ứng dụng tìm nạp dữ liệu trên chuỗi và tạo các lệnh gọi hợp đồng bằng API Infura." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "Ứng dụng tìm nạp lộ trình giao dịch tối ưu từ máy chủ Uniswap Labs." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "Ứng dụng ghi lại số liệu thống kê sử dụng ẩn danh để cải thiện theo thời gian." - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "Ứng dụng thu thập địa chỉ ví của bạn một cách an toàn và chia sẻ nó với TRM Labs Inc. vì lý do rủi ro và tuân thủ." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "Chi phí gửi giao dịch này là hơn một nửa giá trị của số tiền đầu vào." - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "Lượng gas nhanh hiện tại để gửi một giao dịch trên L1. Phí gas được thanh toán bằng đồng tiền bản địa của Ethereum (ETH) và có giá trị bằng GWEI." - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "Chênh lệch ước tính giữa giá trị USD của lượng đầu vào và đầu ra." - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Không thể chuyển mã token đầu vào. Có thể có sự cố với mã token đầu vào." - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "Giá thị trường nằm ngoài phạm vi giá đã chỉ định của bạn. Chỉ gửi một tài sản duy nhất." - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "Số khối gần đây nhất trên mạng này. Giá cập nhật trên mọi khối." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Không thể chuyển mã token đầu ra. Có thể có sự cố với mã token đầu ra." - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Không thể chuyển mã thông báo đầu ra. Có thể có sự cố với mã thông báo đầu ra. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "Giá của pool này nằm ngoài phạm vi bạn đã chọn. Vị trí của bạn hiện không kiếm được phí." - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "Giá của pool này nằm trong phạm vi bạn đã chọn. Vị trí của bạn hiện đang thu phí." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "Tỷ lệ mã token bạn thêm vào sẽ thiết lập giá của nhóm này." - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "Không thể gửi giao dịch vì đã hết thời hạn. Vui lòng kiểm tra xem thời hạn giao dịch của bạn không quá thấp." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "Không có dữ liệu thanh khoản." - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "Ứng dụng này sử dụng các API của bên thứ ba sau:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "Nhóm này phải được khởi tạo trước khi bạn có thể thêm thanh khoản. Để khởi tạo, hãy chọn giá khởi điểm cho nhóm. Sau đó, nhập phạm vi giá thanh khoản và số tiền ký quỹ của bạn. Phí gas sẽ cao hơn bình thường do giao dịch khởi tạo." - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "Lộ trình này tối ưu hóa tổng sản lượng của bạn bằng cách xem xét các lộ trình chia nhỏ, nhiều bước nhảy và chi phí xăng của mỗi bước." - -#: src/components/SearchModal/ImportToken.tsx -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/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" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "Công cụ này sẽ chuyển thanh khoản {0} sang V3. Quá trình này hoàn toàn không đáng tin cậy nhờ vào" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Giao dịch này sẽ không thành công do biến động giá. Hãy thử tăng khả năng chịu trượt của bạn. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3." - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Giao dịch này sẽ không thành công do biến động giá hoặc phí chuyển nhượng. Hãy thử tăng khả năng chịu trượt của bạn." - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "Mẹo: Mã token tùy chỉnh được lưu trữ cục bộ trong trình duyệt của bạn" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "Đến" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "Đến (Ít nhất)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "Mã thông báo không được hỗ trợ" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "Token" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "Tổng số tiền gửi" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "Tổng số tiền gửi" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "Con đường thương mại" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "Cài đặt giao dịch" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "Giao dịch đã được gửi" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "Giao dịch đã hoàn tất trong" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "Thời hạn giao dịch" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "Giao dịch bị từ chối." - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "Mã thông báo chuyển" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "Thử lại" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "Bật Chế độ chuyên gia" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI đã đến" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "Mã token UNI đại diện cho cổ phần có quyền biểu quyết trong quản trị Uniswap. Bạn có thể tự bỏ phiếu cho từng đề xuất hoặc ủy thác phiếu bầu của mình cho bên thứ ba." - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} đã đốt" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "Mã token UNI-V2 LP là bắt buộc. Khi bạn đã thêm tính thanh khoản vào nhóm {0}-{1} bạn có thể đặt cược mã token thanh khoản của mình trên trang này." - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "UNI chưa nhận" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "Phí chưa nhận" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "Không xác định" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Lỗi không mong đợi. Không thể ước tính khí cho hoán đổi." - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Vấn đề không mong muốn với ước tính khí. Vui lòng thử lại." - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Quản trị Uniswap" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Điều khoản dịch vụ của Uniswap Labs" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap có sẵn ở: <0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Quản trị Uniswap chỉ khả dụng trên Lớp 1. Chuyển mạng của bạn sang Ethereum Mainnet để xem các Đề xuất và Bỏ phiếu." - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Khai thác thanh khoản Uniswap" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Hợp đồng di chuyển Uniswap↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "Nguồn không rõ" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Lỗi không xác định{0}. Hãy thử tăng khả năng chịu trượt của bạn. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3." - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "Mở khóa phiếu bầu" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "Mở khóa biểu quyết" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "Mở khóa phiếu bầu" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "Tài sản không được hỗ trợ" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "Tài sản không được hỗ trợ" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "Không có tiêu đề" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "Tháo" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "Bỏ gói <0/> thành {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "Cập nhật ủy quyền" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "Cập nhật danh sách" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "Sử dụng API Uniswap Labs để nhận báo giá nhanh hơn." - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "Người dùng" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 không khả dụng trên Lớp 2. Chuyển sang Lớp 1 Ethereum." - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "Thanh khoản V2" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} Giá:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "Xem phí đã tích lũy và số liệu phân tích <0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "Danh sách xem" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "Xem trên Etherscan" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "Xem trên Explorer" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "Xem giao dịch trên Explorer" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "Bỏ phiếu" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "Bỏ phiếu chống lại" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "Bỏ phiếu cho" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "Bỏ phiếu chống lại đề xuất {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "Bỏ phiếu chống lại đề xuất {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "Bỏ phiếu chống lại đề xuất {proposalKey} với lý do \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "Bỏ phiếu cho đề xuất {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "Bỏ phiếu cho đề xuất {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "Bỏ phiếu cho đề xuất {proposalKey} với lý do \"{0}\"" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "Bỏ phiếu trắng đối với đề xuất {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "Bỏ phiếu trắng đối với đề xuất {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "Bỏ phiếu trắng đối với đề xuất {proposalKey} với lý do \"{0}\"" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "Bỏ phiếu đã kết thúc {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "Bỏ phiếu kết thúc vào khoảng {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "Bỏ phiếu bắt đầu khoảng {0}" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "Chờ đợi sự xác nhận" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "Địa chỉ ví hoặc tên ENS" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "Phần thưởng hàng tuần" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "Chào mừng đến với đội Unicorn :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "Khi bạn yêu cầu mà không rút tiền, thanh khoản của bạn vẫn còn trong pool khai thác." - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "Khi bạn rút tiền, hợp đồng sẽ tự động yêu cầu UNI thay mặt bạn!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "Khi bạn rút tiền, UNI của bạn sẽ được xác nhận quyền sở hữu và thanh khoản của bạn sẽ bị xóa khỏi pool khai thác." - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "Rút tiền" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "Rút tiền & xác nhận quyền sở hữu" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "Rút tiền thanh khoản đã ký gửi" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "Đang rút {0} UNI-V2" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "Đã rút UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "Bọc lại" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "Kết thúc từ <0/> đến {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "Mạng sai" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "Bạn đã có một đề xuất đang hoạt động hoặc đang chờ xử lý" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "Bạn đang tạo một pool" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "Bạn là nhà cung cấp thanh khoản đầu tiên cho pool Uniswap V3 này. Thanh khoản của bạn sẽ thay đổi ở mức giá {0}." - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "Bạn là nhà cung cấp thanh khoản đầu tiên." - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "Bạn có thể tự bỏ phiếu cho từng đề xuất hoặc ủy thác phiếu bầu của mình cho bên thứ ba." - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "Giờ đây, bạn có thể giao dịch {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "Bạn không có đủ phiếu bầu để gửi đề xuất" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -msgstr "Bạn chưa có thanh khoản trong pool này." - -#: 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." - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "Bạn có thể cân nhắc đợi cho đến khi phí mạng giảm để hoàn tất giao dịch này." - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "Bạn phải kết nối một tài khoản." - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "Bạn phải cấp quyền cho hợp đồng thông minh Uniswap để sử dụng số {0} của bạn. Bạn chỉ phải làm điều này một lần cho mỗi mã token." - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "Bạn phải có {formattedProposalThreshold} phiếu bầu để gửi đề xuất" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "Bạn chỉ nên gửi thanh khoản vào Uniswap V3 ở mức giá mà bạn tin là chính xác. <0/> Nếu giá có vẻ không chính xác, bạn có thể hoán đổi để thay đổi giá hoặc đợi người khác thực hiện." - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "Bạn cũng sẽ thu phí kiếm được từ vị trí này." - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "Bạn sẽ nhận" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "Thanh khoản V2 của bạn" - -#: src/pages/Pool/index.tsx -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/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "Tiền gửi thanh khoản của bạn" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "Chia sẻ pool của bạn:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "Vị trí của bạn" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "Vị thế của bạn có tính thanh khoản bằng 0 và không thu phí." - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "Vị trí của bạn sẽ xuất hiện ở đây." - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "Vị trí của bạn sẽ 100% bao gồm {0} ở mức giá này" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "Vị trí của bạn sẽ là 100% {0} ở mức giá này." - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "Vị trí của bạn sẽ không kiếm được phí hoặc được sử dụng trong các giao dịch cho đến khi giá thị trường di chuyển vào phạm vi của bạn." - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "Vị trí của bạn" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "Tỷ lệ của bạn" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "Tổng số mã token chung của bạn:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "Chi phí giao dịch của bạn sẽ cao hơn nhiều vì nó đã bao gồm khí để tạo pool." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "Giao dịch của bạn có thể chạy trước" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "Giao dịch của bạn có thể thất bại" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu nó đang chờ xử lý trong hơn khoảng thời gian này." - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất lợi hơn tỷ lệ phần trăm này." - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "Các giao dịch của bạn sẽ xuất hiện tại đây..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "UNI chưa được nhận của bạn" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "sau khi trượt" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "xác nhận" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "cho {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "có biểu tượng cảm xúc vớ" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "ở đây." - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// hoặc ipfs:// hoặc tên ENS" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "phút" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "qua {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "thông qua {0} mã token" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {Import token} other {Import tokens}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> mỗi <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} Token tùy chỉnh" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "{0} Đã gửi" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} Phí đã kiếm được:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} Đang chờ xử lý" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI / tuần" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} mã token UNI-V2 LP có sẵn" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} phiếu bầu" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} trên {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} mã token" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} Giá:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • Người dùng thêm vào" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "Mức phí {0}" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}%" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "{0}% chọn" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} Thanh khoản Mining" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} LP NFT" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} LP Token" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} mã thông báo" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} mã thông báo" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} trên {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← Quay lại Tổng quan về pool" - diff --git a/src/locales/zh-CN.po b/src/locales/zh-CN.po deleted file mode 100644 index 512070eaa5..0000000000 --- a/src/locales/zh-CN.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-24 07:06\n" -"Last-Translator: \n" -"Language: zh_CN\n" -"Language-Team: Chinese Simplified\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(在以太坊资源浏览器上查看)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(全部清除)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(编辑)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- 删除接收人" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI 代币 / 每周" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> 所有提案" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> 票" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>账户分析和已累积的手续费<1> ↗ " - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>当前兑换率: <1><2/> <3>{0} 每 {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>提示:退出资金池,按照当前汇率将您的资金池份额转换回原本代币。您收到的代币数额中将包含已累计的手续费。" - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>提示:选择操作并描述您的提案。提案提交后不可修改,提交前请核对所有信息。投票期将立即开始,持续 7 天。若要提议自定义操作,请<1>阅读文档。" - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>提示:使用此工具可查找未自动出现在界面中的 v2 池。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>提示:当您注入流动资金时,您将收到代表您份额的流动池代币。这些代币将根据您在池中所占份额,自动赚取和累计相称的手续费,并且可以随时赎回流动池币对。" - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>解锁投票,以准备下一个提案。" - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉 欢迎加入Unicorn(独角兽)团队 :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "提交提案所需的最低门槛为 UNI 总供应量的 0.25%" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "关于" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "接受" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "账户" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "已激活" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "添加" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "将 <0/> 和 <1/> 添加到 Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "添加委托 +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "添加流动性" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "添加 V2 流动性" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "添加流动性。" - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "增加更多流动性" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "将 {0} 添加到 Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "添加{0}-{1}流动性" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "添加{0}/{1} V3流动性" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "已添加 {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "地址没有可领取的代币" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "反对" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "允许流动池代币迁移" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "允许高度影响价格的交易,并跳过确认步骤。须自行承担使用风险。" - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "允许 Uniswap 调用您的 {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "已允许" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "数额" - -#: src/hooks/useSwapCallback.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." -msgstr "尝试执行此兑换时发生错误。您可能需要增加滑点限制。如果还是不行,则可能是您正在交易的代币与Uniswap不兼容。注:Uniswap V3不兼容转账时带扣除费用(fee-on-transfer)的代币和弹性供应(rebase)代币。" - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "批准" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "批准代币" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "批准 {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "已批准" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "批准中" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "正在批准 {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum桥" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum 处于 Beta 阶段,可能会遇到停机问题。在停机期间,您的仓位不会赚取手续费,也将无法移除流动性。<0>阅读更多。" - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "您确定吗?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "作为Uniswap社区的成员,您可以认领 UNI 代币,用于投票和治理。<0/><1/><2>阅读更多关于 UNI 代币信息" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "根据选定的兑换率范围,至少会有 {0} {1} 和 {2} {3} 将退还到您的钱包。" - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "自动" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "自动路由 API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "可调用的数额:{0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "余额: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "适合低交易量的币对。" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "适合大多数币对。" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "适合稳定币币对。" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "适合非常稳定的币对。" - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "最佳价格路由消耗的gas约为 {formattedGasPriceString}" - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "已屏蔽地址" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "桥" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "通过添加流动性,您将按您在流动池中所占比例赚取对应交易量的0.3%手续费。手续费将实时累加到流动池中,在您取回流动性时也将同时取回您赚取的手续费。" - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "连接钱包即表示您同意 Uniswap Labs 的 <0>服务条款 并确认您已阅读并理解 Uniswap <1>协议免责声明。" - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "已取消" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "更改" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "图表" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "检查网络状态" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "查看我们的v3流动池介绍和迁移指南。" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "领取" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "为 {0} 领取 <0/>" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "领取 UNI 代币" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "领取 UNI 代币" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "{0} 领取 UNI 奖励" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "领取已累积的手续费" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "领取您的 UNI 代币" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "已领取" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "已领取 UNI 代币!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "已领取!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "领取中" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "正在领取UNI" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "正在领取 {0} UNI 代币" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "全部清除" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "全部清除" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "关闭" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "已关闭" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "收取" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "以 WETH 方式收取" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "收取手续费" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "收取 {0}/{1} 手续费" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "已收取" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "收取中" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "收取手续费" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "收取手续费的操作将为您提取您当前已累积的手续费。" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "确认" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "确认供应" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "确认兑换" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "在您的钱包中确认这笔交易" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "在钱包中确认交易" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "连接钱包" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "连接钱包" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "连接到钱包以查找流动池" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "连接到钱包以查看您的 V2 流动资金。" - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "连接到钱包以查看您的流动资金。" - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "已与 {name} 连接" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "已复制" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "复制地址" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "创建流动池和供应流动资金" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "创建提案" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "创建币对" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "创建流动池" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "在GitHub上创建问题" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "创建流动池并注入 {0}/{1} V3 流动资金" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "创建流动池。" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "创建 {0}/{1} V3 池" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "当前兑换率" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "当前 {0} 兑换率:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "深色主题" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "未通过" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "委托投票" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "将投票权委托给 {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "委托给:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "委托投票" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "充值" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "充值数额" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "充入 UNI-V2 流动池代币" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "充入流动资金" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "将代币存入 {label} 网络。" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "充入您的流动池代币以领取 UNI(Uniswap 的治理代币)。" - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "已充入的流动资金:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "已充入 {0} UNI-V2 流动池代币" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "充入流动资金" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "描述" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "详细信息" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "详细信息" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "断开" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "关闭" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "文档" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "看不到您的一些 v2 流动资金吗?<0>将它手动导入。" - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "已赚取的 UNI 代币代表了 Uniswap 治理中的投票份额。" - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "修改" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "效率对比" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "输入百分比" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "输入接收者" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "输入有效的兑换率滑点百分比" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "输入地址来查看领取 UNI 代币的资质。如果地址有任何可领取的 UNI,代币将在提交领取申请后自动发送。" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "输入数额" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "输入有效的代币列表源" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "输入有效的代币合约地址" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "输入 {0} 数量" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "错误" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "连接错误" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "连接出错。请尝试刷新页面。" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "导入列表出错" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "由于您的钱包 gas 设置,估计值可能有差异" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "预估网络费用" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "已执行" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "从待用代币列表中扩展出的结果" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "预期获得" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "专家模式" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "“专家模式”将解除确认交易的提示,并允许兑换率高滑点的交易,从而可能导致较不利的兑换率和资金损失。" - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "已过期" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "查看 Uniswap 分析。" - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "无法从 Uniswap 切换网络。为了在 {0} 上使用 Uniswap,您必须更改钱包中的网络。" - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "手续费级别" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "手续费级别" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "正在获取最优兑换率..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "赞成" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "对于下面显示的每个流动池,单击“迁移”以从 Uniswap V2 赎回您的流动资金,并将其注入到 Uniswap V3。" - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "源自" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "来源 (最多为)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "全范围" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "全范围仓位可能比集中仓位赚取更少的费用。在<0>此处了解更多。" - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "在Discord上寻求支持" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "帮助中心" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "隐藏" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "隐藏已关闭的头寸" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "对兑换率有高度影响" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "此应用程序如何使用 API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "我已知悉" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "如果您从这个代币列表中购买代币,您可能无法再将其售出。" - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "导入" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "导入代币列表" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "导入流动池" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "导入 V2 流动池" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "自行承担导入的风险" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "在范围内" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "增加流动资金" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "初始兑换率和流动池份额" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "正在初始化..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "输入数额仅为估值。您最多会售出<0>{0} {1} 否则将还原交易。" - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "安装Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "现有流动量不足以支持此交易。" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "{0} 余额不足" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "界面设置" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "无效的币对" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "无效的币对。" - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "无效的兑换率输入" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "选择的范围无效。最小兑换率必须低于最大兑换率。" - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "无效的接收方" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "语言" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "学习" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "了解提供流动性的相关信息" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "了解更多" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "法律与隐私" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "浅色主题" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "流动资金" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "未获取到流动性数据。" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "流动资金提供者奖励" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "流动资金提供者在所有交易中按其在流动池中的份额获得0.3%的手续费。手续费按实时累计方式添加到流动池中,可与流动资金一起赎回。" - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "列表" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "已加载" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "正在加载" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "最大值" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "管理" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "在奖励池中管理流动资金" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "管理代币列表" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "管理此流动池。" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "最大值" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "最高兑换率" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "最高兑换率" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "最大值:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "发送的最大值" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "菜单" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "迁移" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "将流动资金迁移到V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "迁移V2 流动资金" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "将您的流动资金从 Uniswap V2 迁移到 Uniswap V3。" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "将 {0}/{1} 流动性迁移到 V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "迁移中" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "最低兑换率" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "最低兑换率" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "最小值:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "收到的最低数额" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "缺少依赖套件" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "更多" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "网络费用" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "网络警告" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "网络费用超过兑换金额的50%!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "新仓位" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "找不到V2流动资金。" - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "无运行中的流动池" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "没有数据" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "没有说明。" - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "未找到流动资金。" - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "未找到流动池。" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "没有提案。" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "未找到结果。" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "未创建" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "关闭" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "开启" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "务必在详细了解此模式应用后才使用此模式操作。" - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "关闭" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "开启" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "对费率感到满意的话,请点击“供应”键,到审查步骤。" - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "只有在 {0} 区块编号之前已自行委托或委托给另一个区块链地址的 UNI 代币才有资格投票。" - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism 网关" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Optimistic 处于 Beta 阶段,可能会遇到停机问题。Optimistic 计划近期会停机升级网络。在停机期间,您的头寸不会赚取手续费,也将无法移除流动性。<0>阅读更多。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistic Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "超出范围" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "输出数额仅为估值。如果兑换率变化超过 {0}%,您的交易将会还原。" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "输出数额仅为估值。您将收到至少 <0>{0} {1} 代币,否则将还原交易。" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "输出代币将发送至 <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "拥有者" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "参与的流动池" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "待办" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "请输入 REMOVE 以确认您要删除此列表" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "请连接到以太坊 Layer 1" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "请连接到适当的以太坊网络。" - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "请输入单词 \"{confirmWord}\" 以启用专家模式。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "多边形桥" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "Polygonscan" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "流动池" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "已找到流动池!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "流动池费率" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "流动池费率" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "奖励池中的流动池代币:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "流动池汇集 {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "流动池概览" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "预览" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "兑换率" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "兑换率差异:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "兑换率影响" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "太过影响兑换率" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "兑换率已更新" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "兑换率范围" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "兑换率:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "兑换率和流动池份额" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "提案" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "已提交提案" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "提案标题" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "提案" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "社区成员提交的提案将在此显示。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "提议操作" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "提案者" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "协议免责声明" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "待执行" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "费率" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "阅读更多关于 UNI 代币的信息" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "阅读有关Uniswap治理的更多信息" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "阅读更多关于提供流动资金的信息" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "阅读有关不受支持的代币的更多信息" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "最近的交易" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "接收方" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "去除" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "移除 <0/> 和 <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "去除数额" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "去除投票权委托" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "去除流动资金" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "去除代币列表" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "正在去除 {0} {1} 和 {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "移除 {0} {1} 和 {2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "功能建议" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "返回" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "搜索名称或粘贴地址" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "选择币对" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "选择网络" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "选择代币" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "选择代币以查找您的 v2 流动资金。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "选择一个操作。" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "选定范围" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "自我" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "自我委托" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "设置兑换率范围" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "设置起始兑换率" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "流动池份额" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "流动池份额:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "显示 Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "显示已关闭的仓位" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "简单型" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "滑点容差" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "有些代币无法通过此界面使用,因为它们可能无法很好地调用智能合约,或者由于法律原因无法允许交易。" - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "出错了" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "第 1 步:获取 UNI-V2 流动池代币" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "提交新提案" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "正提交提案" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "提交投票" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "投票通过" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "成功" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "供应" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "提供 {0} {1} 和 {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "兑换" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "将约 <0/> 兑换成 <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "仍要兑换" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "将恰好 <0/> 兑换成 <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "兑换失败: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "将 {0} {1} 兑换为 {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "感谢您加入 Uniswap 社区 <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "您将赚取的手续费百分比。" - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "兑换交易不满足 Uniswap 不变量 X × Y = K 的要求。这通常意味着您要兑换的代币之一在代币转账过程中带有一些自定义代币合约特性。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "该应用程序从 The Graph 的托管服务中获取区块链数据。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "该应用程序获取链上数据并使用 Infura API 构建合约调用。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "该应用程序从 Uniswap Labs 服务器获取最佳交易路径。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "该应用程序会匿名记录使用情况统计信息,以便不断改进。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "出于风险和合规性原因,该应用程序会安全地收集您的钱包地址并与 TRM Labs Inc. 共享。" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "发送此交易的成本是输入金额价值的一半以上。" - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "当前用于在 L1 上发送交易的快速 gas 量。 Gas 费用以以太坊的本位币以太币 (ETH) 支付,并以 GWEI 计价。" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "输入和输出金额的美元价值之间的估计差异。" - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "输入代币无法进行转账。输入代币可能有些问题。" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "市场兑换率超出您指定的范围。将只注入单项代币。" - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "此网络上的最新区块编号。兑换率会每区块都更新。" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "输出代币无法进行转账。输出代币可能有些问题。" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "无法对输出代币进行转账。输出代币可能有些问题。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "此流动池的兑换率超出了您选定的范围。因此您的流动资金目前没在赚取手续费。" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "此流动池的兑换率在您选定的范围内。因此您的流动资金目前正在赚取手续费。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "您注入的代币比率将决定此流动池的初始兑换率。" - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "由于期限已过,因此无法发送交易。请检查您的交易截止期限设置。" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "没有流动性数据。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "此应用程序使用以下第三方 API:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "需要先初始化,然后再添加流动性。初始化时,请先选择起始价格,然后输入您的流动性价格范围和存款金额。因需进行初始化相关操作,Gas 费将比平时高一些。" - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "此路线通过考虑拆分路线、多跳和每一步的 gas 成本来优化您的总输出额。" - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Uniswap Labs 应用程序不支持此代币" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "该工具将安全地将您的 {0} 流动资金迁移到 V3。该过程完全不依赖任何信任需求" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "由于兑换率变动,此交易将不会成功。尝试增加您的滑点容差。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "由于兑换率变动或代币带有转账时的扣除费用(fee-on-transfer),该交易将不会成功。请尝试增加滑点容差。" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "提示:自定义代币信息会本地存储在您的浏览器中" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "兑换到" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "兑换到(至少数额)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "不支持该代币" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "代币" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "存入总额" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "存入总额" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "交易路由" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "交易设置" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "已提交交易" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "交易完成于" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "交易截止期限" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "交易被拒绝。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "代币转账" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "再试一次" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "开启专家模式" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI 代币已到账" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI代币代表了Uniswap治理中的投票份额。您可以自行为提案进行投票,或将您的投票权委托给第三方。" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} 被摧毁" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "需要 UNI-V2 流动池代币。一旦您已注入流动资金到 {0}-{1} 池,您就可以在此页面上抵押您的流动池代币。" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "未被领取的 UNI 代币" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "未领取的手续费" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "未定" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "错误。无法估计兑换所需的gas。" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "估计 gas 时遇到问题。请再试一次。" - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap治理" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs 的服务条款" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap可用:<0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap 治理仅在 Layer 1 可用。将您的网络切换到以太坊主网以查看提案和投票。" - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap 流动性挖矿:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap 迁移合约↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "未知来源" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "未知错误{0}。可以尝试增加滑点容差。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "解锁投票" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "解锁投票" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "解锁投票" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "不支持的代币" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "不支持的代币" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "无标题" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "展开" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "将 <0/> 换回为 {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "更新投票权委托" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "更新代币列表" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "使用 Uniswap Labs API 获得更快的报价。" - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "用户" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 在 Layer 2 不可用。切换到以太坊 Layer 1。" - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 流动资金" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} 兑换率:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "查看已累积手续费和数据分析<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "查看代币列表" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "在 Etherscan 上查看" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "在以太坊资源浏览器上查看" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "在以太坊资源浏览器上查看交易" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "投票" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "投票反对" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "投票赞成" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "投票反对提案 {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "投票反对提案 {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "以“{0}”为由反对提案 {proposalKey}" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "投票赞成提案 {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "投票赞成提案 {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "以“{0}”为由赞成提案 {proposalKey}" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "针对提案 {proposalId} 投弃权票" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "为提案 {proposalKey} 投弃权票" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "以“{0}”为由为提案 {proposalKey} 投弃权票" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "投票结束 {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "投票大约结束于 {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "投票大约于 {0} 开始" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "等待确认" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "钱包地址或 ENS 名" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "每周奖励" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "欢迎来到 Unicorn (独角兽)团队 :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "当您领取奖励但没赎回流动资金时,流动资金仍然留在矿池内。" - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "当您赎回流动资金时,智能合约将自动为您领取 UNI 代币!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "当您赎回流动资金时,您的 UNI 代币将被领取,流动资金也将从矿池中移除。" - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "赎回" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "赎回和领取" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "赎回注入的流动资金" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "赎回 {0} UNI-V2 流动池代币" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "已赎回 UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "兑换" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "将 <0/> 换为 {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "错误的网络" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "您已经有一个现有或待处理的提案" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "您正在创建一个流动池" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "您是此 Uniswap V3 流动池的第一个流动资金提供者。您的流动资金将以当前的 {0} 兑换率迁移。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "您是第一个流动资金提供者。" - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "您可以对每个提案自行进行投票,也可以将您的投票权委托给第三方。" - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "您现在可以交易 {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "您没有足够的票数来提交提案" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "您的网络连接可能断了。" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "您可能要考虑等到网络费用下降才完成此交易。" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "您必须连接帐户。" - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "您必须授予 Uniswap 智能合约使用您的 {0} 的权限。每个代币只需要授权一次。" - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "您必须有 {formattedProposalThreshold} 票才能提交提案" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "请确保以您认为是正确的兑换率来将流动资金注入到 Uniswap V3。 <0/>如果兑换率看起来不正确,您可以进行兑换交易以移动兑换率,或者等待别人进行此操作。" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "您还将从此仓位中领取已赚取的手续费。" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "您将收到" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "您的V2流动资金" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "您的有效 V3 流动性头寸将显示在此处。" - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "您注入的流动资金" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "您的流动池份额:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "您的流动资金仓位" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "您的仓位没有任何流动资金,没在赚取手续费。" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "您的仓位将在此显示。" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "在达到此兑换率时,您的仓位流动资金将 100% 由 {0} 代币所组成。" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "在达到此兑换率时,您的仓位流动资金将 100% 由 {0} 代币所组成。" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "您的仓位在市场兑换率变化进入到您设置的范围内之前不会赚取手续费或被用于进行兑换交易。" - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "您的仓位" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "您的费率" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "您的流动池代币总额:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "由于需包含创建流动池的 gas 费用,您的此交易成本将高出许多。" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "您的交易可能会被别人“抢先”(从而赚取差价)" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "您的交易可能失败" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "如果您的交易待处理超过此时间期限,则将还原该交易。" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "如果兑换率变动超过此百分比,则将还原该交易。" - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "您的交易将出现在这里..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "您未领取的 UNI 代币" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "滑点后" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "确认" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "为 {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "有 socks 表情包" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "这里。" - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// 或 ipfs:// 或 ENS 名" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "分钟" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "通过 {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "从 {0} 代币列表" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {导入代币} other {导入代币}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> 每 <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} 自定义代币" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "注入 {0}" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} 已赚取手续费:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} 待处理" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI 代币" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI 代币 / 每周" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2 流动池代币" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 流动池代币可用" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} 票" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} 每 {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} 代币" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} 兑换率:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • 由用户添加" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% 手续费级别" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% 池" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "选择 {0}%" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} 流动资金采矿" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} 流动池 NFT 代币" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}/{1} 流动池代币" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI 代币" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI 代币" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} 代币" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} 代币桥" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} 每 {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← 返回流动池概述" - diff --git a/src/locales/zh-TW.po b/src/locales/zh-TW.po deleted file mode 100644 index 6f4b43439a..0000000000 --- a/src/locales/zh-TW.po +++ /dev/null @@ -1,2433 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2021-12-23 21:06\n" -"Last-Translator: \n" -"Language: zh_TW\n" -"Language-Team: Chinese Traditional\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: uniswap-interface\n" -"X-Crowdin-Project-ID: 458284\n" -"X-Crowdin-Language: zh-TW\n" -"X-Crowdin-File: en-US.po\n" -"X-Crowdin-File-ID: 4\n" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -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 -#: src/pages/Pool/PositionPage.tsx -msgid "${0}" -msgstr "${0}" - -#: src/components/swap/TradePrice.tsx -msgid "(${0})" -msgstr "(${0})" - -#: src/components/AddressInputPanel/index.tsx -msgid "(View on Explorer)" -msgstr "(在以太坊資源瀏覽器上查看)" - -#: src/components/AccountDetails/index.tsx -msgid "(clear all)" -msgstr "(全部清除)" - -#: src/pages/Vote/Landing.tsx -msgid "(edit)" -msgstr "(編輯)" - -#: src/pages/Swap/index.tsx -msgid "- Remove recipient" -msgstr "- 刪除接收人" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "0 UNI / week" -msgstr "0 UNI 代幣 / 每周" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "25%" -msgstr "25%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "50%" -msgstr "50%" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "75%" -msgstr "75%" - -#: src/pages/Vote/VotePage.tsx -msgid "<0/> All Proposals" -msgstr "<0/> 所有提案" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/Landing.tsx -msgid "<0/> Votes" -msgstr "<0/> 投票" - -#: src/pages/Pool/v2.tsx -msgid "<0>Account analytics and accrued fees<1> ↗ " -msgstr "<0>帳戶分析和已累積的手續費<1>↗" - -#: src/pages/AddLiquidity/index.tsx -msgid "<0>Current Price:<1><2/><3>{0} per {1}" -msgstr "<0>當前兌換率: <1><2/> <3>{0} 每 {1}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "<0>Tip: Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive." -msgstr "<0>提示:退出資金池,按照當前匯率將您的資金池份額轉換回原本代幣。您收到的代幣數額中將包含已累計的手續費。" - -#: src/pages/CreateProposal/index.tsx -msgid "<0>Tip: Select an action and describe your proposal for the community. The proposal cannot be modified after submission, so please verify all information before submitting. The voting period will begin immediately and last for 7 days. To propose a custom action, <1>read the docs." -msgstr "<0>提示:選擇操作並描述您的提案。提案提交後不可修改,提交前請核對所有信息。投票期將立即開始,持續 7 天。若要提議自定義操作,請<1>閱讀文檔。" - -#: src/pages/PoolFinder/index.tsx -msgid "<0>Tip: Use this tool to find v2 pools that don't automatically appear in the interface." -msgstr "<0>提示:使用此工具可查找未自動出現在界面中的 v2 池。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "<0>Tip: When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time." -msgstr "<0>提示:當您註入流動資金時,您將收到代表您份額的流動池代幣。這些代幣將根據您在池中所占份額,自動賺取和累計相稱的手續費,並且可以隨時贖回流動池幣對。" - -#: src/pages/Vote/VotePage.tsx -msgid "<0>Unlock voting to prepare for the next proposal." -msgstr "<0>解鎖投票,以準備下一個提案。" - -#: src/components/claim/ClaimModal.tsx -msgid "<0>🎉 Welcome to team Unicorn :) <1>🎉" -msgstr "<0>🎉歡迎加入Unicorn(獨角獸)團隊 :) <1>🎉" - -#: src/pages/Vote/Landing.tsx -msgid "A minimum threshold of 0.25% of the total UNI supply is required to submit proposals" -msgstr "提交提案所需的最低門檻為 UNI 總供應量的 0.25%" - -#: src/components/Menu/index.tsx -msgid "About" -msgstr "關於" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Accept" -msgstr "接受" - -#: src/components/AccountDetails/index.tsx -msgid "Account" -msgstr "帳戶" - -#: src/components/SearchModal/ImportRow.tsx -#: src/pages/Vote/styled.tsx -msgid "Active" -msgstr "啟用" - -#: src/components/PositionCard/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add" -msgstr "新增" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add <0/> and <1/> to Uniswap V2" -msgstr "將 <0/> 和 <1/> 添加到 Uniswap V2" - -#: src/components/vote/DelegateModal.tsx -msgid "Add Delegate +" -msgstr "添加委托 +" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "Add Liquidity" -msgstr "註入流動資金" - -#: src/pages/Pool/v2.tsx -msgid "Add V2 Liquidity" -msgstr "註入 V2 流動資金" - -#: src/pages/PoolFinder/index.tsx -msgid "Add liquidity." -msgstr "註入流動資金。" - -#: src/pages/AddLiquidity/index.tsx -msgid "Add more liquidity" -msgstr "增加流動性" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Add {0} to Metamask <0/>" -msgstr "將 {0} 添加到 Metamask <0/>" - -#: src/pages/Earn/Manage.tsx -msgid "Add {0}-{1} liquidity" -msgstr "註入 {0}-{1} 流動資金" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Add {0}/{1} V3 liquidity" -msgstr "註入 {0}/{1} V3 流動資金" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Added {0}" -msgstr "已添加 {0}" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Address has no available claim" -msgstr "地址沒有可领取的代幣" - -#: src/pages/Vote/VotePage.tsx -msgid "Against" -msgstr "反對" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allow LP token migration" -msgstr "允許流動池代幣遷移" - -#: src/components/Settings/index.tsx -msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk." -msgstr "允許高兌換率影響的交易,並跳過確認步驟。須自行承擔使用風險。" - -#: src/pages/Swap/index.tsx -msgid "Allow the Uniswap Protocol to use your {0}" -msgstr "允許 Uniswap 使用您的 {0}" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Allowed" -msgstr "已允許" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Amount" -msgstr "數額" - -#: src/hooks/useSwapCallback.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." -msgstr "嘗試執行此兌換時發生錯誤。您可能需要增加滑點限制。如果還是不行,則可能是您正在交易的代幣與Uniswap不兼容。注:Uniswap V3不兼容轉賬時帶扣除費用(fee-on-transfer)的代幣和彈性供應(rebase)代幣。" - -#: src/components/earn/StakingModal.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approve" -msgstr "批準" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Approve Token" -msgstr "批准代幣" - -#: src/components/AccountDetails/TransactionSummary.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approve {0}" -msgstr "批準 {0}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approved" -msgstr "已批準" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Approving" -msgstr "批準中" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -msgid "Approving {0}" -msgstr "批準 {0}" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbiscan" -msgstr "Arbiscan" - -#: src/components/Header/NetworkSelector.tsx -msgid "Arbitrum Bridge" -msgstr "Arbitrum橋" - -#: src/components/DowntimeWarning/index.tsx -msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "Arbitrum 處於 Beta 階段,可能會遇到停機問題。在停機期間,您的倉位不會賺取手續費,也將無法移除流動性。 <0>閱讀更多。 " - -#: src/components/Settings/index.tsx -msgid "Are you sure?" -msgstr "您確定嗎?" - -#: src/components/claim/ClaimModal.tsx -msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI" -msgstr "作為 Uniswap 社群的成員,您可以認領 UNI 代幣,用於投票和治理。<0/><1/><2>閱讀更多關於 UNI 代幣的訊息" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range." -msgstr "根據選定的兌換率範圍,至少會有 {0} {1} 和 {2} {3} 將退還到您的錢包。" - -#: src/components/TransactionSettings/index.tsx -msgid "Auto" -msgstr "自動" - -#: src/components/Settings/index.tsx -msgid "Auto Router API" -msgstr "自動路由 API" - -#: src/components/earn/StakingModal.tsx -msgid "Available to deposit: {0}" -msgstr "可存入的數額:{0}" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "Balance: {0}" -msgstr "餘額: {0}" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for exotic pairs." -msgstr "適合低交易量的幣對。" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for most pairs." -msgstr "適合大部分幣對。" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for stable pairs." -msgstr "適合穩定幣幣對。" - -#: src/components/FeeSelector/shared.tsx -msgid "Best for very stable pairs." -msgstr "適合非常穩定的幣對。" - -#: src/components/swap/SwapRoute.tsx -msgid "Best price route costs ~{formattedGasPriceString} in gas." -msgstr "最佳價格路由消耗的gas約為 {formattedGasPriceString}" - -#: src/components/Blocklist/index.tsx -msgid "Blocked address" -msgstr "已屏蔽地址" - -#: src/components/Header/NetworkSelector.tsx -msgid "Bridge" -msgstr "橋" - -#: src/components/PositionCard/index.tsx -msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "通過添加流動性,您將按您在流動池中所佔比例賺取對應交易量的0.3%手續費。手續費將實時累加到流動池中,在您取回流動性時也將同時取回您賺取的手續費。" - -#: src/components/SearchModal/ImportList.tsx -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 -msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer." -msgstr "連接錢包即表示您同意 Uniswap Labs 的 <0>服務條款 並確認您已閱讀並理解 Uniswap <1>協議免責聲明。" - -#: src/pages/Vote/styled.tsx -msgid "Canceled" -msgstr "已取消" - -#: src/components/AccountDetails/index.tsx -msgid "Change" -msgstr "更改" - -#: src/components/Header/index.tsx -msgid "Charts" -msgstr "圖表" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Check network status" -msgstr "檢查網絡狀態" - -#: src/pages/Pool/CTACards.tsx -msgid "Check out our v3 LP walkthrough and migration guides." -msgstr "查看我們的 v3 流動池介紹和遷移指南。" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Claim" -msgstr "領取" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim <0/> for {0}" -msgstr "為 {0} 領取 <0/>" - -#: src/components/Header/index.tsx -#: src/components/Menu/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claim UNI" -msgstr "領取 UNI" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claim UNI Token" -msgstr "領取 UNI 代幣" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Claim UNI reward for {0}" -msgstr "{0} 索取 UNI 獎勵" - -#: src/pages/Pool/PositionPage.tsx -msgid "Claim fees" -msgstr "領取手續費" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Claim your UNI tokens" -msgstr "領取您的 UNI 代幣" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Claimed" -msgstr "已領取" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claimed UNI!" -msgstr "已領取 UNI 代幣!" - -#: src/components/claim/ClaimModal.tsx -msgid "Claimed!" -msgstr "已領取!" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "Claiming" -msgstr "領取中" - -#: src/components/Header/index.tsx -msgid "Claiming UNI" -msgstr "正在領取 UNI 代幣" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Claiming {0} UNI" -msgstr "正在領取 {0} UNI 代幣" - -#: src/pages/AddLiquidity/index.tsx -msgid "Clear All" -msgstr "全部清除" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Clear all" -msgstr "全部清除" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Close" -msgstr "關閉" - -#: src/components/Badge/RangeBadge.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Closed" -msgstr "已關閉" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect" -msgstr "收取" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Collect as WETH" -msgstr "以 WETH 方式收取" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collect fees" -msgstr "收取手續費" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Collect {0}/{1} fees" -msgstr "收取 {0}/{1} 手续费" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collected" -msgstr "已收取" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting" -msgstr "收取中" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees" -msgstr "收取手續費" - -#: src/pages/Pool/PositionPage.tsx -msgid "Collecting fees will withdraw currently available fees for you." -msgstr "收取手續費的操作將為您提取您當前已累積的手續費。" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Confirm" -msgstr "確認" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Confirm Supply" -msgstr "確認供應" - -#: src/components/swap/ConfirmSwapModal.tsx -#: src/components/swap/SwapModalFooter.tsx -msgid "Confirm Swap" -msgstr "確認兌換" - -#: src/components/ModalViews/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Confirm this transaction in your wallet" -msgstr "在您的錢包中確認這筆交易" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Confirm transaction in wallet" -msgstr "在錢包中確認交易" - -#: src/components/Web3Status/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -#: src/pages/Swap/index.tsx -#: src/state/burn/hooks.tsx -#: src/state/burn/v3/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Connect Wallet" -msgstr "連接錢包" - -#: src/components/WalletModal/index.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Pool/index.tsx -msgid "Connect a wallet" -msgstr "連接錢包" - -#: src/pages/PoolFinder/index.tsx -msgid "Connect to a wallet to find pools" -msgstr "連接到錢包以查找流動池" - -#: src/pages/MigrateV2/index.tsx -msgid "Connect to a wallet to view your V2 liquidity." -msgstr "連接到錢包以查看您的 V2 流動資金。" - -#: src/pages/Pool/v2.tsx -msgid "Connect to a wallet to view your liquidity." -msgstr "連接到錢包以查看您的流動資金。" - -#: src/components/AccountDetails/index.tsx -msgid "Connected with {name}" -msgstr "已與 {name} 連接" - -#: src/components/AccountDetails/Copy.tsx -msgid "Copied" -msgstr "已複製" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -msgid "Copy Address" -msgstr "複製地址" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Create Pool & Supply" -msgstr "創建流動池和供應流動資金" - -#: src/pages/CreateProposal/index.tsx -#: src/pages/Vote/Landing.tsx -msgid "Create Proposal" -msgstr "創建提案" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/v2.tsx -msgid "Create a pair" -msgstr "創建幣對" - -#: src/pages/Pool/index.tsx -msgid "Create a pool" -msgstr "創建流動池" - -#: src/components/ErrorBoundary/index.tsx -msgid "Create an issue on GitHub" -msgstr "在GitHub上創建問題" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create pool and add {0}/{1} V3 liquidity" -msgstr "創建流動池並註入 {0}/{1} V3 流動資金" - -#: src/pages/PoolFinder/index.tsx -msgid "Create pool." -msgstr "創建流動池。" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Create {0}/{1} V3 pool" -msgstr "創建 {0}/{1} V3 池" - -#: src/components/PositionPreview/index.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Current price" -msgstr "當前兌換率" - -#: src/pages/AddLiquidity/index.tsx -msgid "Current {0} Price:" -msgstr "當前 {0} 兌換率:" - -#: src/components/Menu/index.tsx -msgid "Dark Theme" -msgstr "深色" - -#: src/pages/Vote/styled.tsx -msgid "Defeated" -msgstr "未通過" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegate Votes" -msgstr "委托投票" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Delegate voting power to {0}" -msgstr "將投票權委託給 {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Delegated to:" -msgstr "委托給:" - -#: src/components/vote/DelegateModal.tsx -msgid "Delegating votes" -msgstr "委托投票" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Deposit" -msgstr "充值" - -#: src/pages/AddLiquidity/index.tsx -msgid "Deposit Amounts" -msgstr "充值數額" - -#: src/pages/Earn/Manage.tsx -msgid "Deposit UNI-V2 LP Tokens" -msgstr "存入 UNI-V2 流動池代幣" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Deposit liquidity" -msgstr "存入流動資金" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "Deposit tokens to the {label} network." -msgstr "將代幣存入 {label} 網絡。" - -#: src/pages/Earn/index.tsx -msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token." -msgstr "存入您的流動池代幣以領取 UNI(Uniswap 的治理代幣)。" - -#: src/components/earn/UnstakingModal.tsx -msgid "Deposited liquidity:" -msgstr "已存入的流動資金:" - -#: src/components/earn/StakingModal.tsx -msgid "Deposited {0} UNI-V2" -msgstr "已存入 {0} UNI-V2" - -#: src/components/earn/StakingModal.tsx -msgid "Depositing Liquidity" -msgstr "存入流動資金" - -#: src/pages/Vote/VotePage.tsx -msgid "Description" -msgstr "描述" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Detailed" -msgstr "詳細信息" - -#: src/pages/Vote/VotePage.tsx -msgid "Details" -msgstr "詳細信息" - -#: src/components/AccountDetails/index.tsx -msgid "Disconnect" -msgstr "斷開" - -#: src/components/Menu/index.tsx -msgid "Discord" -msgstr "Discord" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Dismiss" -msgstr "關閉" - -#: src/components/Menu/index.tsx -msgid "Docs" -msgstr "文檔" - -#: src/pages/MigrateV2/index.tsx -msgid "Don’t see one of your v2 positions? <0>Import it." -msgstr "看不到您的一些 v2 流動資金嗎?<0>將它手動導入。" - -#: src/components/vote/DelegateModal.tsx -msgid "Earned UNI tokens represent voting shares in Uniswap governance." -msgstr "已賺取的 UNI 代幣代表了 Uniswap 治理中的投票份額。" - -#: src/components/FeeSelector/index.tsx -msgid "Edit" -msgstr "修改" - -#: src/pages/AddLiquidity/index.tsx -msgid "Efficiency Comparison" -msgstr "效率對比" - -#: src/state/burn/v3/hooks.tsx -msgid "Enter a percent" -msgstr "輸入百分比" - -#: src/state/swap/hooks.tsx -msgid "Enter a recipient" -msgstr "輸入接收者" - -#: src/components/TransactionSettings/index.tsx -msgid "Enter a valid slippage percentage" -msgstr "輸入有效的兌換率滑點百分比" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission." -msgstr "輸入地址來查看領取 UNI 代幣的資質。如果地址有任何可領取的 UNI,代幣將在提交領取申請後自動發送。" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/state/burn/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/stake/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Enter an amount" -msgstr "輸入數額" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Enter valid list location" -msgstr "輸入有效的代幣列表源" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Enter valid token address" -msgstr "輸入有效的代幣地址" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -msgid "Enter {0} amount" -msgstr "輸入 {0} 金額" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Error" -msgstr "錯誤" - -#: src/components/WalletModal/PendingView.tsx -#: src/components/WalletModal/index.tsx -msgid "Error connecting" -msgstr "連接錯誤" - -#: src/components/WalletModal/index.tsx -msgid "Error connecting. Try refreshing the page." -msgstr "連接錯誤。請嘗試刷新頁面。" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Error importing list" -msgstr "導入列表時出錯" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimate may differ due to your wallet gas settings" -msgstr "由於您的錢包 gas 設置,估計值可能有差異" - -#: src/components/swap/GasEstimateBadge.tsx -msgid "Estimated network fee" -msgstr "預估網絡費用" - -#: src/components/Header/NetworkSelector.tsx -msgid "Etherscan" -msgstr "Etherscan" - -#: src/pages/Vote/styled.tsx -msgid "Executed" -msgstr "已執行" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "Expanded results from inactive Token Lists" -msgstr "從待用代幣列表中擴展出的結果" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Expected Output" -msgstr "預期獲得" - -#: src/components/Settings/index.tsx -msgid "Expert Mode" -msgstr "專家模式" - -#: src/components/Settings/index.tsx -msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds." -msgstr "“專家模式”將解除確認交易的提示,並允許兌換率高滑點的交易,從而可能導致較不利的兌換率和資金損失。" - -#: src/pages/Vote/styled.tsx -msgid "Expired" -msgstr "已過期" - -#: src/pages/Pool/CTACards.tsx -msgid "Explore Uniswap Analytics." -msgstr "探索 Uniswap 分析。" - -#: src/components/Popups/FailedNetworkSwitchPopup.tsx -msgid "Failed to switch networks from the Uniswap Interface. In order to use Uniswap on {0}, you must change the network in your wallet." -msgstr "無法從 Uniswap 接口切換網絡。 {0}上使用 Uniswap,您必須更改錢包中的網絡。" - -#: src/components/PositionPreview/index.tsx -msgid "Fee Tier" -msgstr "手續費級別" - -#: src/components/FeeSelector/index.tsx -msgid "Fee tier" -msgstr "手續費級別" - -#: src/components/swap/SwapDetailsDropdown.tsx -msgid "Fetching best price..." -msgstr "正在獲取最優兌換率..." - -#: src/pages/Vote/VotePage.tsx -msgid "For" -msgstr "贊成" - -#: src/pages/MigrateV2/index.tsx -msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3." -msgstr "對於下面顯示的每個流動池,單擊“遷移”以從 Uniswap V2 贖回您的流動資金,並將其註入到 Uniswap V3。" - -#: src/pages/Swap/index.tsx -msgid "From" -msgstr "源自" - -#: src/pages/Swap/index.tsx -msgid "From (at most)" -msgstr "來源 (最多為)" - -#: src/components/RangeSelector/PresetsButtons.tsx -msgid "Full Range" -msgstr "全範圍" - -#: src/pages/AddLiquidity/index.tsx -msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here." -msgstr "全範圍倉位可能比集中倉位賺取更少的費用。在<0>此處了解更多。" - -#: src/components/ErrorBoundary/index.tsx -msgid "Get support on Discord" -msgstr "在 Discord 上尋求技術支持" - -#: src/components/Header/NetworkSelector.tsx -#: src/components/Menu/index.tsx -msgid "Help Center" -msgstr "幫助中心" - -#: src/components/FeeSelector/index.tsx -msgid "Hide" -msgstr "隱藏" - -#: src/components/PositionList/index.tsx -msgid "Hide closed positions" -msgstr "隱藏已關閉的倉位" - -#: src/pages/Swap/index.tsx -msgid "High Price Impact" -msgstr "高兌換率影響" - -#: src/components/WalletModal/index.tsx -msgid "How this app uses APIs" -msgstr "此應用程序如何使用 API" - -#: src/components/SearchModal/ImportList.tsx -#: src/pages/AddLiquidity/index.tsx -msgid "I understand" -msgstr "我已知悉" - -#: src/components/SearchModal/ImportList.tsx -msgid "If you purchase a token from this list, you may not be able to sell it back." -msgstr "如果您從這個代幣列表中購買代幣,您可能無法再將其售出。" - -#: src/components/SearchModal/BlockedToken.tsx -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ImportRow.tsx -#: src/components/SearchModal/ImportToken.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "Import" -msgstr "導入" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import List" -msgstr "導入代幣列表" - -#: src/pages/Pool/v2.tsx -msgid "Import Pool" -msgstr "導入流動池" - -#: src/components/NavigationTabs/index.tsx -msgid "Import V2 Pool" -msgstr "導入 V2 流動池" - -#: src/components/SearchModal/ImportList.tsx -msgid "Import at your own risk" -msgstr "自行承擔導入的風險" - -#: src/components/Badge/RangeBadge.tsx -msgid "In range" -msgstr "在範圍內" - -#: src/pages/Pool/PositionPage.tsx -msgid "Increase Liquidity" -msgstr "增加流動資金" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Initial prices and pool share" -msgstr "初始兌換率和流動池份額" - -#: src/components/WalletModal/PendingView.tsx -msgid "Initializing..." -msgstr "初始化中..." - -#: src/components/swap/SwapModalHeader.tsx -msgid "Input is estimated. You will sell at most <0>{0} {1} or the transaction will revert." -msgstr "輸入數額僅為估值。您最多會售出<0>{0} {1} 否則將還原交易。" - -#: src/components/WalletModal/index.tsx -msgid "Install Metamask" -msgstr "安裝Metamask" - -#: src/pages/Swap/index.tsx -msgid "Insufficient liquidity for this trade." -msgstr "現有流動量不足以支持此交易。" - -#: src/hooks/useWrapCallback.tsx -#: src/hooks/useWrapCallback.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/mint/v3/hooks.tsx -#: src/state/swap/hooks.tsx -msgid "Insufficient {0} balance" -msgstr "{0} 餘額不足" - -#: src/components/Settings/index.tsx -msgid "Interface Settings" -msgstr "界面設置" - -#: src/state/mint/hooks.tsx -#: src/state/mint/v3/hooks.tsx -msgid "Invalid pair" -msgstr "無效的幣對" - -#: src/pages/PoolFinder/index.tsx -msgid "Invalid pair." -msgstr "無效的幣對。" - -#: src/state/mint/v3/hooks.tsx -msgid "Invalid price input" -msgstr "無效的兌換率輸入" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Invalid range selected. The min price must be lower than the max price." -msgstr "選擇的範圍無效。最小兌換率必須低於最大兌換率。" - -#: src/hooks/useSwapCallback.tsx -#: src/state/swap/hooks.tsx -msgid "Invalid recipient" -msgstr "無效的接收方" - -#: src/components/Menu/index.tsx -msgid "Language" -msgstr "語言" - -#: src/pages/Pool/index.tsx -msgid "Learn" -msgstr "瞭解" - -#: src/pages/Pool/CTACards.tsx -msgid "Learn about providing liquidity" -msgstr "閱讀有關提供流動資金的資訊" - -#: src/components/PrivacyPolicy/index.tsx -#: src/components/PrivacyPolicy/index.tsx -msgid "Learn more" -msgstr "瞭解更多" - -#: src/components/Menu/index.tsx -#: src/components/PrivacyPolicy/index.tsx -#: src/components/WalletModal/index.tsx -msgid "Legal & Privacy" -msgstr "法律與隱私" - -#: src/components/Menu/index.tsx -msgid "Light Theme" -msgstr "淺色" - -#: src/components/claim/ClaimModal.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Liquidity" -msgstr "流動資金" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Liquidity data not available." -msgstr "沒有流動性數據。" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity provider rewards" -msgstr "流動資金提供者獎勵" - -#: src/pages/Pool/v2.tsx -msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity." -msgstr "流動資金提供者在所有交易中按其在流動池中的份額獲得0.3%的手續費。手續費按實時累計方式添加到流動池中,可與流動資金一起贖回。" - -#: src/components/SearchModal/Manage.tsx -msgid "Lists" -msgstr "列表" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Loaded" -msgstr "已加載" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -#: src/pages/Pool/v2.tsx -#: src/pages/PoolFinder/index.tsx -msgid "Loading" -msgstr "載入中" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "MAX" -msgstr "最大值" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/components/SearchModal/Manage.tsx -#: src/components/earn/PoolCard.tsx -msgid "Manage" -msgstr "管理" - -#: src/components/PositionCard/index.tsx -msgid "Manage Liquidity in Rewards Pool" -msgstr "在獎勵池中管理流動資金" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Manage Token Lists" -msgstr "管理代幣列表" - -#: src/pages/PoolFinder/index.tsx -msgid "Manage this pool." -msgstr "管理此流動池。" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Max" -msgstr "最大值" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Max Price" -msgstr "最高兌換率" - -#: src/pages/Pool/PositionPage.tsx -msgid "Max price" -msgstr "最高兌換率" - -#: src/components/PositionListItem/index.tsx -msgid "Max:" -msgstr "最大值:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Maximum sent" -msgstr "發送的最大值" - -#: src/components/Menu/index.tsx -msgid "Menu" -msgstr "菜單" - -#: src/components/PositionCard/Sushi.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/index.tsx -msgid "Migrate" -msgstr "遷移" - -#: src/pages/Pool/v2.tsx -msgid "Migrate Liquidity to V3" -msgstr "將流動資金遷移到V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/index.tsx -msgid "Migrate V2 Liquidity" -msgstr "遷移 V2 流動資金" - -#: src/pages/MigrateV2/index.tsx -msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3." -msgstr "將您的流動資金從 Uniswap V2 遷移到 Uniswap V3。" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Migrate {0}/{1} liquidity to V3" -msgstr "將 {0}/{1} 流動性遷移到 V3" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Migrating" -msgstr "正在遷移" - -#: src/components/PositionPreview/index.tsx -#: src/components/RangeSelector/index.tsx -msgid "Min Price" -msgstr "最低兌換率" - -#: src/pages/Pool/PositionPage.tsx -msgid "Min price" -msgstr "最低兌換率" - -#: src/components/PositionListItem/index.tsx -msgid "Min:" -msgstr "最小值:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Minimum received" -msgstr "收到的最低數額" - -#: src/hooks/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "缺少依賴套件" - -#: src/pages/Pool/index.tsx -msgid "More" -msgstr "更多" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Network Fee" -msgstr "網絡費用" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "Network Warning" -msgstr "網絡警告" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "Network fees exceed 50% of the swap amount!" -msgstr "網絡費用超過兌換金額的50%!" - -#: src/pages/Pool/index.tsx -msgid "New Position" -msgstr "新倉位" - -#: src/pages/MigrateV2/index.tsx -msgid "No V2 Liquidity found." -msgstr "找不到V2流動資金。" - -#: src/pages/Earn/index.tsx -#: src/pages/Earn/index.tsx -msgid "No active pools" -msgstr "無運行中的流動池" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "No data" -msgstr "沒有資料" - -#: src/state/governance/hooks.ts -msgid "No description." -msgstr "沒有說明。" - -#: src/pages/Pool/v2.tsx -msgid "No liquidity found." -msgstr "未找到流動資金。" - -#: src/pages/PoolFinder/index.tsx -msgid "No pool found." -msgstr "未找到流動池。" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "No proposals found." -msgstr "沒有提案。" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "No results found." -msgstr "未找到任何結果。" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "Not created" -msgstr "未創建" - -#: src/components/Toggle/ListToggle.tsx -msgid "OFF" -msgstr "關閉" - -#: src/components/Toggle/ListToggle.tsx -msgid "ON" -msgstr "開啟" - -#: src/components/Settings/index.tsx -msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING." -msgstr "務必在詳細了解此模式應用後才使用此模式操作。" - -#: src/components/Toggle/index.tsx -msgid "Off" -msgstr "關閉" - -#: src/components/Toggle/index.tsx -msgid "On" -msgstr "開啟" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Once you are happy with the rate click supply to review." -msgstr "對費率感到滿意的話,請點擊“供應”鍵,到審查步驟。" - -#: src/pages/Vote/VotePage.tsx -msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting." -msgstr "只有在 {0} 區塊編號之前已自行委托或委托給另一個區塊鏈地址的 UNI 代幣才有資格投票。" - -#: src/components/Web3ReactManager/index.tsx -msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device." -msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimism Gateway" -msgstr "Optimism 網關" - -#: src/components/DowntimeWarning/index.tsx -msgid "Optimism is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more." -msgstr "樂觀處於測試階段,可能會遇到停機時間。樂觀預計計劃停機時間將在不久的將來升級網絡。在停機期間,您的頭寸將不會產生費用,並且您將無法移除流動性。 <0>閱讀更多。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Optimistic Etherscan" -msgstr "Optimistic Etherscan" - -#: src/components/Badge/RangeBadge.tsx -msgid "Out of range" -msgstr "超出範圍" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Output is estimated. If the price changes by more than {0}% your transaction will revert." -msgstr "輸出數額僅為估值。如果兌換率變化超過 {0}%,您的交易將會還原。" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output is estimated. You will receive at least <0>{0} {1} or the transaction will revert." -msgstr "輸出數額僅為估值。您將收到至少 <0>{0} {1} 代幣,否則將還原交易。" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Output will be sent to <0>{0}" -msgstr "輸出代幣將發送至 <0>{0}" - -#: src/pages/Pool/PositionPage.tsx -msgid "Owner" -msgstr "擁有者" - -#: src/pages/Earn/index.tsx -msgid "Participating pools" -msgstr "參與的流動池" - -#: src/pages/Vote/styled.tsx -msgid "Pending" -msgstr "待辦" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Please confirm you would like to remove this list by typing REMOVE" -msgstr "請輸入 REMOVE 以確認您要刪除此列表" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Please connect to Layer 1 Ethereum" -msgstr "請連接到以太坊 Layer 1" - -#: src/components/WalletModal/index.tsx -msgid "Please connect to the appropriate Ethereum network." -msgstr "請連接到適當的以太坊網絡。" - -#: src/components/Settings/index.tsx -msgid "Please type the word \"{confirmWord}\" to enable expert mode." -msgstr "請輸入單詞“{confirmWord}”以啟用專家模式。" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygon Bridge" -msgstr "多邊形橋" - -#: src/components/Header/NetworkSelector.tsx -msgid "Polygonscan" -msgstr "多邊形掃描" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -msgid "Pool" -msgstr "流動池" - -#: src/pages/PoolFinder/index.tsx -msgid "Pool Found!" -msgstr "已找到流動池!" - -#: src/pages/Earn/Manage.tsx -msgid "Pool Rate" -msgstr "流動池費率" - -#: src/components/earn/PoolCard.tsx -msgid "Pool rate" -msgstr "流動池費率" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Pool tokens in rewards pool:" -msgstr "獎勵池中的流動池代幣:" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Pooled {0}:" -msgstr "流動池匯集 {0}:" - -#: src/pages/Pool/index.tsx -msgid "Pools Overview" -msgstr "流動池概覽" - -#: src/pages/AddLiquidity/index.tsx -msgid "Preview" -msgstr "預覽" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price" -msgstr "兌換率" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Price Difference:" -msgstr "兌換率差異:" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "Price Impact" -msgstr "兌換率影響" - -#: src/pages/Swap/index.tsx -msgid "Price Impact Too High" -msgstr "兌換率影響太高" - -#: src/components/swap/SwapModalHeader.tsx -msgid "Price Updated" -msgstr "兌換率已更新" - -#: src/pages/Pool/PositionPage.tsx -msgid "Price range" -msgstr "兌換率範圍" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Price:" -msgstr "兌換率:" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Prices and pool share" -msgstr "兌換率和流動池份額" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal" -msgstr "提案" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Proposal Submitted" -msgstr "已提交提案" - -#: src/pages/CreateProposal/ProposalEditor.tsx -msgid "Proposal Title" -msgstr "提案標題" - -#: src/pages/Vote/Landing.tsx -msgid "Proposals" -msgstr "提案" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Proposals submitted by community members will appear here." -msgstr "社區成員提交的提案將在此顯示。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Proposed Action" -msgstr "提議操作" - -#: src/pages/Vote/VotePage.tsx -msgid "Proposer" -msgstr "提案人" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Protocol Disclaimer" -msgstr "協議免責聲明" - -#: src/pages/Vote/styled.tsx -msgid "Queued" -msgstr "待執行" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Rates" -msgstr "費率" - -#: src/pages/Earn/index.tsx -msgid "Read more about UNI" -msgstr "了解有關 UNI 的更多資訊" - -#: src/pages/Vote/Landing.tsx -msgid "Read more about Uniswap governance" -msgstr "閱讀有關 Uniswap 治理的更多資訊" - -#: src/pages/Pool/v2.tsx -msgid "Read more about providing liquidity" -msgstr "閱讀有關提供流動資金的更多資訊" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Read more about unsupported assets" -msgstr "閱讀有關不受支持的代幣的更多資訊" - -#: src/components/AccountDetails/index.tsx -msgid "Recent Transactions" -msgstr "最近交易" - -#: src/components/AddressInputPanel/index.tsx -msgid "Recipient" -msgstr "接收方" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove" -msgstr "去除" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Remove <0/> and <1/>" -msgstr "移除 <0/> 和 <1/>" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Remove Amount" -msgstr "去除數額" - -#: src/components/vote/DelegateModal.tsx -msgid "Remove Delegate" -msgstr "去除投票權代表" - -#: src/components/NavigationTabs/index.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Remove Liquidity" -msgstr "去除流動資金" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Remove list" -msgstr "去除代幣列表" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "Removing {0} {1} and {2} {3}" -msgstr "正在去除 {0} {1} 和 {2} {3}" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Removing {0} {1} and{2} {3}" -msgstr "移除 {0} {1} 和 {2} {3}" - -#: src/components/Menu/index.tsx -msgid "Request Features" -msgstr "功能建議" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Return" -msgstr "返回" - -#: src/components/SearchModal/CurrencySearch.tsx -msgid "Search name or paste address" -msgstr "搜索名稱或粘貼地址" - -#: src/pages/AddLiquidity/index.tsx -msgid "Select Pair" -msgstr "選擇幣對" - -#: src/components/Header/NetworkSelector.tsx -msgid "Select a network" -msgstr "選擇網絡" - -#: src/components/CurrencyInputPanel/index.tsx -#: src/components/SearchModal/CurrencySearch.tsx -#: src/pages/PoolFinder/index.tsx -#: src/pages/PoolFinder/index.tsx -#: src/state/swap/hooks.tsx -msgid "Select a token" -msgstr "選擇代幣" - -#: src/pages/PoolFinder/index.tsx -msgid "Select a token to find your v2 liquidity." -msgstr "選擇代幣以查找您的 v2 流動資金。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Select an action" -msgstr "選擇操作" - -#: src/pages/AddLiquidity/index.tsx -msgid "Selected Range" -msgstr "選定範圍" - -#: src/pages/Vote/Landing.tsx -msgid "Self" -msgstr "自身" - -#: src/components/vote/DelegateModal.tsx -msgid "Self Delegate" -msgstr "自我代表" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Set Price Range" -msgstr "設置兌換率範圍" - -#: src/pages/AddLiquidity/index.tsx -msgid "Set Starting Price" -msgstr "設置起始兌換率" - -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -msgid "Share of Pool" -msgstr "流動池份額" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "Share of Pool:" -msgstr "流動池份額:" - -#: src/components/AccountDetails/index.tsx -msgid "Show Portis" -msgstr "顯示 Portis" - -#: src/pages/Pool/index.tsx -msgid "Show closed positions" -msgstr "顯示已關閉的倉位" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "Simple" -msgstr "簡單型" - -#: src/components/TransactionSettings/index.tsx -msgid "Slippage tolerance" -msgstr "滑點容差" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons." -msgstr "有些代幣無法通過此界面使用,因為它們可能無法很好地調用智能合約,或者由於法律原因無法允許交易。" - -#: src/components/ErrorBoundary/index.tsx -msgid "Something went wrong" -msgstr "出問題了" - -#: src/pages/Earn/Manage.tsx -msgid "Step 1. Get UNI-V2 Liquidity tokens" -msgstr "第 1 步:獲取 UNI-V2 流動池代幣" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Submit new proposal" -msgstr "提交新提案" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "Submitting Proposal" -msgstr "正提交提案" - -#: src/components/vote/VoteModal.tsx -msgid "Submitting Vote" -msgstr "提交投票" - -#: src/pages/Vote/styled.tsx -msgid "Succeeded" -msgstr "投票通過" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Success" -msgstr "成功" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supply" -msgstr "供應" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "Supplying {0} {1} and {2} {3}" -msgstr "供應 {0} {1} 和 {2} {3}" - -#: src/components/Header/index.tsx -#: src/components/NavigationTabs/index.tsx -#: src/components/swap/SwapHeader.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap" -msgstr "兌換" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap <0/> for exactly <1/>" -msgstr "將約 <0/> 兌換成 <1/>" - -#: src/pages/Swap/index.tsx -#: src/pages/Swap/index.tsx -msgid "Swap Anyway" -msgstr "仍要兌換" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Swap exactly <0/> for <1/>" -msgstr "將恰好 <0/> 兌換成 <1/>" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Swap failed: {0}" -msgstr "兑换失败: {0}" - -#: src/components/swap/ConfirmSwapModal.tsx -msgid "Swapping {0} {1} for {2} {3}" -msgstr "將 {0} {1} 兌換為 {2} {3}" - -#: src/components/Popups/ClaimPopup.tsx -msgid "Thanks for being part of the Uniswap community <0/>" -msgstr "感謝您加入 Uniswap 社區 <0/>" - -#: src/components/FeeSelector/index.tsx -msgid "The % you will earn in fees." -msgstr "您將賺取的手續費百分比。" - -#: src/hooks/useSwapCallback.tsx -msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer." -msgstr "兌換交易不滿足 Uniswap 不變量 X × Y = K 的要求。這通常意味著您要兌換的代幣之一在代幣轉賬過程中帶有一些自定義代幣合約特性。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches blockchain data from The Graph’s hosted service." -msgstr "該應用程序從 The Graph 的託管服務中獲取區塊鏈數據。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches on-chain data and constructs contract calls with an Infura API." -msgstr "該應用程序獲取鏈上數據並使用 Infura API 構建合約調用。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app fetches the optimal trade route from a Uniswap Labs server." -msgstr "該應用程序從 Uniswap Labs 服務器獲取最佳交易路徑。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app logs anonymized usage statistics in order to improve over time." -msgstr "該應用程序會記錄匿名使用情況統計信息,以便不斷改進。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons." -msgstr "出於風險和合規性原因,該應用程序會安全地收集您的錢包地址並與 TRM Labs Inc. 共享。" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "The cost of sending this transaction is more than half of the value of the input amount." -msgstr "發送此交易的成本是輸入金額價值的一半以上。" - -#: src/components/Header/Polling.tsx -msgid "The current fast gas amount for sending a transaction on L1. Gas fees are paid in Ethereum's native currency Ether (ETH) and denominated in GWEI." -msgstr "當前用於在 L1 上發送交易的快速 gas 量。 Gas 費用以以太坊的本幣以太幣 (ETH) 支付,並以 GWEI 計價。" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -msgid "The estimated difference between the USD values of input and output amounts." -msgstr "輸入和輸出金額的美元價值之間的估計差異。" - -#: src/hooks/useSwapCallback.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "輸入代幣無法進行轉賬。輸入代幣可能有些問題。" - -#: src/components/CurrencyInputPanel/index.tsx -msgid "The market price is outside your specified price range. Single-asset deposit only." -msgstr "市場兌換率超出您指定的範圍。將只註入單項代幣。" - -#: src/components/Header/Polling.tsx -msgid "The most recent block number on this network. Prices update on every block." -msgstr "此網絡上的最新區塊編號。兌換率會每區塊都更新。" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "輸出代幣無法進行轉賬。輸出代幣可能有些問題。" - -#: src/hooks/useSwapCallback.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "輸出代幣無法進行轉賬。輸出代幣可能有些問題。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不相容。" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees." -msgstr "此流動池的兌換率超出了您選定的範圍。因此您的流動資金目前沒在賺取手續費。" - -#: src/components/Badge/RangeBadge.tsx -msgid "The price of this pool is within your selected range. Your position is currently earning fees." -msgstr "此流動池的兌換率在您選定的範圍內。因此您的流動資金目前正在賺取手續費。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "The ratio of tokens you add will set the price of this pool." -msgstr "您註入的代幣比率將決定此流動池的初始兌換率。" - -#: src/hooks/useSwapCallback.tsx -msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low." -msgstr "由於期限已過,因此無法發送交易。請檢查您的交易截止期限設置。" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "There is no liquidity data." -msgstr "沒有流動性數據。" - -#: src/components/PrivacyPolicy/index.tsx -msgid "This app uses the following third-party APIs:" -msgstr "此應用程序使用以下第三方 API:" - -#: src/pages/AddLiquidity/index.tsx -msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction." -msgstr "需要先初始化,然後再添加流動性。初始化時,請先選擇起始價格,然後輸入您的流動性價格範圍和存款金額。因需進行初始化相關操作,Gas 費將比平時高一些。" - -#: src/components/swap/SwapRoute.tsx -msgid "This route optimizes your total output by considering split routes, multiple hops, and the gas cost of each step." -msgstr "此路線通過考慮拆分路線、多跳和每一步的 gas 成本來優化您的總輸出額。" - -#: src/components/SearchModal/ImportToken.tsx -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/SearchModal/BlockedToken.tsx -msgid "This token is not supported in the Uniswap Labs app" -msgstr "Uniswap Labs 應用程序不支持此代幣" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the" -msgstr "該工具將安全地將您的 {0} 流動資金遷移到 V3。該過程完全不依賴任何信任需求" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "由於兌換率變動,該交易將不會成功。請嘗試增加滑點容差。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不兼容。" - -#: src/hooks/useSwapCallback.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "由於兌換率變動或代幣帶有轉賬時的扣除費用(fee-on-transfer),該交易將不會成功。請嘗試增加滑點容差。" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "Tip: Custom tokens are stored locally in your browser" -msgstr "提示:自定義代幣信息會本地存儲在您的瀏覽器中" - -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/CreateProposal/ProposalActionDetail.tsx -#: src/pages/Swap/index.tsx -msgid "To" -msgstr "至" - -#: src/pages/Swap/index.tsx -msgid "To (at least)" -msgstr "到(至少)" - -#: src/components/SearchModal/BlockedToken.tsx -msgid "Token not supported" -msgstr "不支持此代幣" - -#: src/components/SearchModal/Manage.tsx -msgid "Tokens" -msgstr "代幣" - -#: src/components/SearchModal/CurrencyList.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/earn/PoolCard.tsx -msgid "Total deposited" -msgstr "存入總額" - -#: src/pages/Earn/Manage.tsx -msgid "Total deposits" -msgstr "存款總額" - -#: src/components/swap/RouterLabel.tsx -msgid "Trade Route" -msgstr "交易路由" - -#: src/components/Settings/index.tsx -#: src/components/Settings/index.tsx -msgid "Transaction Settings" -msgstr "交易設定" - -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/StakingModal.tsx -#: src/components/earn/UnstakingModal.tsx -#: src/components/vote/DelegateModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Transaction Submitted" -msgstr "交易已提交" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Transaction completed in" -msgstr "交易完成於" - -#: src/components/TransactionSettings/index.tsx -msgid "Transaction deadline" -msgstr "交易截止期限" - -#: src/hooks/useSwapCallback.tsx -#: src/hooks/useSwapCallback.tsx -msgid "Transaction rejected." -msgstr "交易被拒絕。" - -#: src/pages/CreateProposal/ProposalActionSelector.tsx -msgid "Transfer Token" -msgstr "代幣轉賬" - -#: src/components/WalletModal/PendingView.tsx -msgid "Try Again" -msgstr "再試一次" - -#: src/components/Settings/index.tsx -msgid "Turn On Expert Mode" -msgstr "開啟專家模式" - -#: src/components/Popups/ClaimPopup.tsx -msgid "UNI has arrived" -msgstr "UNI 代幣已到賬" - -#: src/pages/Vote/Landing.tsx -msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party." -msgstr "UNI 代幣代表了 Uniswap 治理中的投票份額。您可以自行為提案進行投票,或將您的投票權委托給第三方。" - -#: src/pages/RemoveLiquidity/index.tsx -msgid "UNI {0}/{1} Burned" -msgstr "UNI {0}/{1} 已銷毀" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page." -msgstr "需要 UNI-V2 LP 代幣。在您注入流動性到 {0}-{1} 池後,您就可以在此頁面上抵押您的流動性代幣。" - -#: src/pages/Earn/Manage.tsx -msgid "UNI-V2 {0}-{1}" -msgstr "UNI-V2 {0}-{1}" - -#: src/components/earn/ClaimRewardModal.tsx -#: src/components/earn/UnstakingModal.tsx -msgid "Unclaimed UNI" -msgstr "未被領取的 UNI 代幣" - -#: src/pages/Pool/PositionPage.tsx -msgid "Unclaimed fees" -msgstr "未領取的手續費" - -#: src/pages/Vote/styled.tsx -msgid "Undetermined" -msgstr "未定" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "錯誤。無法估計兑换所需的 gas。" - -#: src/hooks/useSwapCallback.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "估計 gas 時遇到問題。請再試一次。" - -#: src/pages/Vote/Landing.tsx -msgid "Uniswap Governance" -msgstr "Uniswap治理" - -#: src/components/PrivacyPolicy/index.tsx -msgid "Uniswap Labs' Terms of Service" -msgstr "Uniswap Labs 的服務條款" - -#: src/components/SwitchLocaleLink/index.tsx -msgid "Uniswap available in: <0>{0}" -msgstr "Uniswap 可選語言:<0>{0}" - -#: src/components/vote/ProposalEmptyState.tsx -msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote." -msgstr "Uniswap 治理僅在 Layer 1 可用。將您的網絡切換到以太坊主網以查看提案和投票。" - -#: src/pages/Earn/index.tsx -msgid "Uniswap liquidity mining" -msgstr "Uniswap 流動資金挖礦" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Uniswap migration contract↗" -msgstr "Uniswap 遷移合約↗" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "Unknown Source" -msgstr "未知來源" - -#: src/hooks/useSwapCallback.tsx -msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "未知錯誤{0}。請嘗試增加滑點容差。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不相容。" - -#: src/pages/Vote/Landing.tsx -#: src/pages/Vote/VotePage.tsx -msgid "Unlock Votes" -msgstr "解鎖投票" - -#: src/pages/Vote/Landing.tsx -msgid "Unlock Voting" -msgstr "解鎖投票" - -#: src/components/vote/DelegateModal.tsx -msgid "Unlocking Votes" -msgstr "解鎖投票" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/Swap/index.tsx -msgid "Unsupported Asset" -msgstr "不支持的資產" - -#: src/components/swap/UnsupportedCurrencyFooter.tsx -msgid "Unsupported Assets" -msgstr "不支持的資產" - -#: src/state/governance/hooks.ts -msgid "Untitled" -msgstr "無標題" - -#: src/pages/Swap/index.tsx -msgid "Unwrap" -msgstr "展開" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Unwrap <0/> to {0}" -msgstr "展開 <0/> 到 {0}" - -#: src/pages/Vote/Landing.tsx -msgid "Update Delegation" -msgstr "更新投票權委托" - -#: src/components/SearchModal/ManageLists.tsx -msgid "Update list" -msgstr "更新代幣列表" - -#: src/components/Settings/index.tsx -msgid "Use the Uniswap Labs API to get faster quotes." -msgstr "使用 Uniswap Labs API 獲得更快的報價。" - -#: src/components/claim/ClaimModal.tsx -msgid "User" -msgstr "用戶" - -#: src/pages/Pool/v2.tsx -msgid "V2 is not available on Layer 2. Switch to Layer 1 Ethereum." -msgstr "V2 在 Layer 2 不可用。切換到以太坊 Layer 1。" - -#: src/pages/Pool/index.tsx -msgid "V2 liquidity" -msgstr "V2 流動資金" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "V3 {0} Price:" -msgstr "V3 {0} 兌換率:" - -#: src/components/PositionCard/index.tsx -msgid "View accrued fees and analytics<0>↗" -msgstr "查看已累積手續費和數據分析<0>↗" - -#: src/components/SearchModal/ManageLists.tsx -msgid "View list" -msgstr "查看代幣列表" - -#: src/pages/CreateProposal/ProposalSubmissionModal.tsx -msgid "View on Etherscan" -msgstr "在Etherscan上查看" - -#: src/components/AccountDetails/index.tsx -#: src/components/AccountDetails/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -#: src/components/TransactionConfirmationModal/index.tsx -msgid "View on Explorer" -msgstr "在以太坊資源瀏覽器上查看" - -#: src/components/ModalViews/index.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "View transaction on Explorer" -msgstr "在以太坊資源瀏覽器上查看" - -#: src/components/Header/index.tsx -msgid "Vote" -msgstr "投票" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote Against" -msgstr "投票反對" - -#: src/pages/Vote/VotePage.tsx -msgid "Vote For" -msgstr "投票贊成" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote against proposal {proposalId}" -msgstr "投票反對提案 {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey}" -msgstr "投票反對提案 {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote against proposal {proposalKey} with reason \"{0}\"" -msgstr "以“{0}”為理由反對提案 {proposalKey}" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote for proposal {proposalId}" -msgstr "投票贊成提案 {proposalId}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey}" -msgstr "投票贊成提案 {proposalKey}" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote for proposal {proposalKey} with reason \"{0}\"" -msgstr "以“{0}”為理由贊成提案 {proposalKey}" - -#: src/components/vote/VoteModal.tsx -#: src/components/vote/VoteModal.tsx -msgid "Vote to abstain on proposal {proposalId}" -msgstr "針對提案 {proposalId} 投棄權票" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey}" -msgstr "為提案 {proposalKey} 投棄權票" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\"" -msgstr "以“{0}”為由為提案 {proposalKey} 投棄權票" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ended {0}" -msgstr "投票結束 {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting ends approximately {0}" -msgstr "投票大約結束於 {0}" - -#: src/pages/Vote/VotePage.tsx -msgid "Voting starts approximately {0}" -msgstr "投票大約於 {0} 開始" - -#: src/components/TransactionConfirmationModal/index.tsx -msgid "Waiting For Confirmation" -msgstr "等待確認中" - -#: src/components/AddressInputPanel/index.tsx -msgid "Wallet Address or ENS name" -msgstr "錢包地址或 ENS 名" - -#: src/components/earn/StakingModal.tsx -msgid "Weekly Rewards" -msgstr "每週獎勵" - -#: src/components/claim/AddressClaimModal.tsx -msgid "Welcome to team Unicorn :)" -msgstr "歡迎來到 Unicorn (獨角獸)團隊 :)" - -#: src/components/earn/ClaimRewardModal.tsx -msgid "When you claim without withdrawing your liquidity remains in the mining pool." -msgstr "當您領取獎勵但沒贖回流動資金時,流動資金仍然留在礦池內。" - -#: src/pages/Earn/Manage.tsx -msgid "When you withdraw, the contract will automagically claim UNI on your behalf!" -msgstr "當您贖回流動資金時,智能合約將自動為您領取 UNI 代幣!" - -#: src/components/earn/UnstakingModal.tsx -msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool." -msgstr "當您贖回流動資金時,您的 UNI 代幣將被領取,流動資金也將從礦池中移除。" - -#: src/components/earn/UnstakingModal.tsx -#: src/pages/Earn/Manage.tsx -msgid "Withdraw" -msgstr "贖回" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdraw & Claim" -msgstr "贖回和領取" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Withdraw deposited liquidity" -msgstr "贖回註入的流動資金" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrawing {0} UNI-V2" -msgstr "贖回 {0} UNI-V2 流動池代幣" - -#: src/components/earn/UnstakingModal.tsx -msgid "Withdrew UNI-V2!" -msgstr "已贖回 UNI-V2!" - -#: src/pages/Swap/index.tsx -msgid "Wrap" -msgstr "包裹" - -#: src/components/AccountDetails/TransactionSummary.tsx -msgid "Wrap <0/> to {0}" -msgstr "從 <0/> 到 {0}" - -#: src/components/WalletModal/index.tsx -#: src/components/Web3Status/index.tsx -msgid "Wrong Network" -msgstr "錯誤的網絡" - -#: src/pages/CreateProposal/index.tsx -msgid "You already have an active or pending proposal" -msgstr "您已經有一個現有或待處理的提案" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are creating a pool" -msgstr "您正在創建一個流動池" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price." -msgstr "您是此 Uniswap V3 流動池的第一個流動資金提供者。您的流動資金將以當前的 {0} 兌換率遷移。" - -#: src/pages/AddLiquidityV2/index.tsx -msgid "You are the first liquidity provider." -msgstr "您是第一個流動資金提供者。" - -#: src/components/vote/DelegateModal.tsx -msgid "You can either vote on each proposal yourself or delegate your votes to a third party." -msgstr "您可以對每個提案自行進行投票,也可以將您的投票權委托給第三方。" - -#: src/pages/Swap/index.tsx -msgid "You can now trade {0}" -msgstr "您現在可以交易 {0}" - -#: src/pages/CreateProposal/index.tsx -msgid "You don't have enough votes to submit a proposal" -msgstr "您沒有足夠的票數來提交提案" - -#: src/pages/PoolFinder/index.tsx -msgid "You don’t have liquidity in this pool yet." -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 "您的網絡連接可能斷了。" - -#: src/components/swap/SwapWarningDropdown.tsx -msgid "You might consider waiting until the network fees go down to complete this transaction." -msgstr "您可能要考慮等到網絡費用下降才完成此交易。" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You must connect an account." -msgstr "您必須連接帳戶。" - -#: src/pages/Swap/index.tsx -msgid "You must give the Uniswap smart contracts permission to use your {0}. You only have to do this once per token." -msgstr "您必須授予 Uniswap 智能合約使用您的 {0} 的權限。每個代幣只需要授權一次。" - -#: src/pages/CreateProposal/index.tsx -msgid "You must have {formattedProposalThreshold} votes to submit a proposal" -msgstr "您必須有 {formattedProposalThreshold} 票才能提交提案" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "You should only deposit liquidity into Uniswap V3 at a price you believe is correct. <0/>If the price seems incorrect, you can either make a swap to move the price or wait for someone else to do so." -msgstr "請確保以您認為是正確的兌換率來將流動資金註入到 Uniswap V3。 <0/>如果兌換率看起來不正確,您可以進行兌換交易以移動兌換率,或者等待別人進行此操作。" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "You will also collect fees earned from this position." -msgstr "您還將從此倉位中領取已賺取的手續費。" - -#: src/pages/AddLiquidityV2/index.tsx -#: src/pages/RemoveLiquidity/index.tsx -msgid "You will receive" -msgstr "您將收到" - -#: src/pages/Pool/v2.tsx -msgid "Your V2 liquidity" -msgstr "您的V2流動資金" - -#: src/pages/Pool/index.tsx -msgid "Your active V3 liquidity positions will appear here." -msgstr "您的活躍 V3 流動性頭寸將顯示在此處。" - -#: src/pages/Earn/Manage.tsx -msgid "Your liquidity deposits" -msgstr "您註入的流動資金" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -#: src/components/PositionCard/index.tsx -msgid "Your pool share:" -msgstr "您的流動池份額:" - -#: src/components/PositionCard/index.tsx -msgid "Your position" -msgstr "您的流動資金倉位" - -#: src/components/Badge/RangeBadge.tsx -msgid "Your position has 0 liquidity, and is not earning fees." -msgstr "您的倉位沒有任何流動資金,沒在賺取手續費。" - -#: src/components/LiquidityChartRangeInput/index.tsx -msgid "Your position will appear here." -msgstr "您的倉位將在此顯示。" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -msgid "Your position will be 100% composed of {0} at this price" -msgstr "在此兌換率,您的倉位將 100% 由 {0} 所組成。" - -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "Your position will be 100% {0} at this price." -msgstr "在此兌換率,您的倉位將 100% 由 {0} 所組成。" - -#: src/pages/AddLiquidity/index.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your position will not earn fees or be used in trades until the market price moves into your range." -msgstr "您的倉位在市場兌換率變化進入到您設置的範圍內之前不會賺取手續費或被用於進行兌換交易。" - -#: src/components/PositionList/index.tsx -#: src/components/PositionList/index.tsx -msgid "Your positions" -msgstr "您的倉位" - -#: src/components/earn/PoolCard.tsx -msgid "Your rate" -msgstr "您的費率" - -#: src/components/PositionCard/V2.tsx -#: src/components/PositionCard/index.tsx -msgid "Your total pool tokens:" -msgstr "您的流動池代幣總額:" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "Your transaction cost will be much higher as it includes the gas to create the pool." -msgstr "由於需包含創建流動池的 gas 費用,您的此交易成本將高出許多。" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may be frontrun" -msgstr "您的交易可能會被別人“搶先”(從而賺取差價)" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction may fail" -msgstr "您的交易可能失敗" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if it is pending for more than this period of time." -msgstr "如果您的交易待處理超過此時間期限,則將還原該交易。" - -#: src/components/TransactionSettings/index.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "如果兌換率變動超過此百分比,則將還原該交易。" - -#: src/components/AccountDetails/index.tsx -msgid "Your transactions will appear here..." -msgstr "您的交易將出現在這裏..." - -#: src/pages/Earn/Manage.tsx -msgid "Your unclaimed UNI" -msgstr "您未領取的 UNI 代幣" - -#: src/components/swap/AdvancedSwapDetails.tsx -msgid "after slippage" -msgstr "滑點後" - -#: src/components/Settings/index.tsx -msgid "confirm" -msgstr "確認" - -#: src/components/claim/AddressClaimModal.tsx -msgid "for {0}" -msgstr "為 {0}" - -#: src/components/Header/Polling.tsx -msgid "gwei" -msgstr "gwei" - -#: src/components/Web3Status/index.tsx -msgid "has socks emoji" -msgstr "有 socks 表情包" - -#: src/components/Header/ChainConnectivityWarning.tsx -msgid "here." -msgstr "這裡。" - -#: src/components/SearchModal/ManageLists.tsx -msgid "https:// or ipfs:// or ENS name" -msgstr "https:// 或 ipfs:// 或 ENS 名" - -#: src/components/TransactionSettings/index.tsx -msgid "minutes" -msgstr "分鐘" - -#: src/components/SearchModal/ImportRow.tsx -msgid "via {0}" -msgstr "通過 {0}" - -#: src/components/SearchModal/TokenImportCard.tsx -msgid "via {0} token list" -msgstr "從 {0} 代幣列表" - -#: src/components/SearchModal/ImportToken.tsx -msgid "{0, plural, one {Import token} other {Import tokens}}" -msgstr "{0, plural, one {導入代幣} other {導入代幣}}" - -#: src/components/RateToggle/index.tsx -#: src/components/RateToggle/index.tsx -msgid "{0}" -msgstr "{0}" - -#: src/components/PositionCard/index.tsx -#: src/pages/Vote/VotePage.tsx -#: src/pages/Vote/VotePage.tsx -msgid "{0} %" -msgstr "{0} %" - -#: src/components/PositionListItem/index.tsx -#: src/components/PositionListItem/index.tsx -msgid "{0} <0/> per <1/>" -msgstr "{0} <0/> 每 <1/>" - -#: src/components/SearchModal/ManageTokens.tsx -msgid "{0} Custom Tokens" -msgstr "{0} 自定義代幣" - -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -msgid "{0} Deposited" -msgstr "註入 {0}" - -#: src/components/earn/PoolCard.tsx -msgid "{0} ETH" -msgstr "{0} ETH" - -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{0} Fees Earned:" -msgstr "{0} 已賺取手續費:" - -#: src/components/Web3Status/index.tsx -msgid "{0} Pending" -msgstr "{0} 待處理" - -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/AddressClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -#: src/components/claim/ClaimModal.tsx -msgid "{0} UNI" -msgstr "{0} UNI" - -#: src/components/earn/PoolCard.tsx -#: src/components/earn/PoolCard.tsx -#: src/components/earn/StakingModal.tsx -#: src/pages/Earn/Manage.tsx -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI / week" -msgstr "{0} UNI /週" - -#: src/components/earn/StakingModal.tsx -msgid "{0} UNI-V2" -msgstr "{0} UNI-V2" - -#: src/pages/Earn/Manage.tsx -msgid "{0} UNI-V2 LP tokens available" -msgstr "{0} UNI-V2 流動池代幣可用" - -#: src/components/vote/VoteModal.tsx -msgid "{0} Votes" -msgstr "{0} 票" - -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/AddLiquidityV2/PoolPriceBar.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0} per {1}" -msgstr "{0} 每 {1}" - -#: src/components/SearchModal/ImportList.tsx -#: src/components/SearchModal/ManageLists.tsx -msgid "{0} tokens" -msgstr "{0} 代幣" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0} {1} Price:" -msgstr "{0} {1} 兌換率:" - -#: src/components/Header/index.tsx -msgid "{0} {nativeCurrencySymbol}" -msgstr "{0} {nativeCurrencySymbol}" - -#: src/components/SearchModal/CurrencyList.tsx -msgid "{0} • Added by user" -msgstr "{0} • 由用戶添加" - -#: src/components/CurrencyInputPanel/FiatValue.tsx -#: src/components/FeeSelector/FeeOption.tsx -#: src/components/PositionListItem/index.tsx -#: src/components/PositionPreview/index.tsx -#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx -#: src/pages/MigrateV2/MigrateV2Pair.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -#: src/pages/Pool/PositionPage.tsx -msgid "{0}%" -msgstr "{0}%" - -#: src/components/FeeSelector/index.tsx -msgid "{0}% fee tier" -msgstr "{0}% 手續費級別" - -#: src/components/RoutingDiagram/RoutingDiagram.tsx -msgid "{0}% pool" -msgstr "{0}% 池" - -#: src/components/FeeSelector/FeeTierPercentageBadge.tsx -msgid "{0}% select" -msgstr "選擇 {0}%" - -#: src/pages/Earn/Manage.tsx -msgid "{0}-{1} Liquidity Mining" -msgstr "{0}-{1} 流動資金采礦" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP NFT" -msgstr "{0}/{1} 流動池 NFT 代幣" - -#: src/pages/MigrateV2/MigrateV2Pair.tsx -msgid "{0}/{1} LP Tokens" -msgstr "{0}{1} 流動池代幣" - -#: src/components/claim/ClaimModal.tsx -msgid "{SOCKS_AMOUNT} UNI" -msgstr "{SOCKS_AMOUNT} UNI 代幣" - -#: src/components/claim/ClaimModal.tsx -msgid "{USER_AMOUNT} UNI" -msgstr "{USER_AMOUNT} UNI" - -#: src/components/SearchModal/ManageLists.tsx -msgid "{activeTokensOnThisChain} tokens" -msgstr "{activeTokensOnThisChain} 代幣" - -#: src/components/NetworkAlert/NetworkAlert.tsx -msgid "{label} token bridge" -msgstr "{label} 令牌橋" - -#: src/pages/RemoveLiquidity/V3.tsx -msgid "{percentForSlider}%" -msgstr "{percentForSlider}%" - -#: src/components/InputStepCounter/InputStepCounter.tsx -msgid "{tokenB} per {tokenA}" -msgstr "{tokenB} 每 {tokenA}" - -#: src/pages/Pool/PositionPage.tsx -msgid "← Back to Pools Overview" -msgstr "← 返回流動池概述" - diff --git a/src/react-app-env.d.ts b/src/react-app-env.d.ts index 450b2c2581..ce617efb0d 100644 --- a/src/react-app-env.d.ts +++ b/src/react-app-env.d.ts @@ -13,8 +13,6 @@ interface Window { // value that is populated and returns true by the Coinbase Wallet mobile dapp browser isCoinbaseWallet?: true isMetaMask?: true - on?: (...args: any[]) => void - removeListener?: (...args: any[]) => void autoRefreshOnNetworkChange?: boolean } web3?: Record diff --git a/src/state/lists/updater.ts b/src/state/lists/updater.ts index 8d4b21cb4c..b057160489 100644 --- a/src/state/lists/updater.ts +++ b/src/state/lists/updater.ts @@ -1,12 +1,12 @@ import { getVersionUpgrade, minVersionBump, VersionUpgrade } from '@uniswap/token-lists' import { SupportedChainId } from 'constants/chains' import { ARBITRUM_LIST, OPTIMISM_LIST, UNSUPPORTED_LIST_URLS } from 'constants/lists' +import useInterval from 'lib/hooks/useInterval' import { useCallback, useEffect } from 'react' import { useAppDispatch } from 'state/hooks' import { useAllLists } from 'state/lists/hooks' import { useFetchListCallback } from '../../hooks/useFetchListCallback' -import useInterval from '../../hooks/useInterval' import useIsWindowVisible from '../../hooks/useIsWindowVisible' import { useActiveWeb3React } from '../../hooks/web3' import { acceptListUpdate, enableList } from './actions' diff --git a/tsconfig.base.json b/tsconfig.base.json index 27f52d718d..c92c0ef831 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -25,5 +25,4 @@ "types": ["react-spring", "jest"] }, "exclude": ["node_modules", "cypress"], - "include": ["src/**/*"] } diff --git a/tsconfig.lib.json b/tsconfig.lib.json index 3885c8159c..f08ded8174 100644 --- a/tsconfig.lib.json +++ b/tsconfig.lib.json @@ -2,7 +2,12 @@ "extends": "./tsconfig.base.json", "compilerOptions": { "jsx": "preserve", - "baseUrl": "src/lib" + "baseUrl": "src/lib", + "paths": { + "lib/*": ["./*"], + "constants/*": ["../constants/*"], + "hooks/*": ["../hooks/*"], + }, }, "exclude": ["node_modules", "src/lib/**/*.test.*"], "include": ["src/lib/**/*"] diff --git a/yarn.lock b/yarn.lock index a2cf789acd..8f4b93d9cb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1466,7 +1466,7 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" -"@ethersproject/abi@5.4.1", "@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.4.0": +"@ethersproject/abi@5.4.1": version "5.4.1" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.4.1.tgz#6ac28fafc9ef6f5a7a37e30356a2eb31fa05d39b" integrity sha512-9mhbjUk76BiSluiiW4BaYyI58KSbDMMQpCLdsAR+RsT2GyATiNYxVv+pGWRrekmsIdY3I+hOqsYQSTkc8L/mcg== @@ -1481,7 +1481,7 @@ "@ethersproject/properties" "^5.4.0" "@ethersproject/strings" "^5.4.0" -"@ethersproject/abi@^5.5.0": +"@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.4.0", "@ethersproject/abi@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.5.0.tgz#fb52820e22e50b854ff15ce1647cc508d6660613" integrity sha512-loW7I4AohP5KycATvc0MgujU6JyCHPqHdeoo9z3Nr9xEiNioxa65ccdm1+fsoJhkuhdRtfcL8cfyGamz2AxZ5w== @@ -1496,7 +1496,7 @@ "@ethersproject/properties" "^5.5.0" "@ethersproject/strings" "^5.5.0" -"@ethersproject/abstract-provider@5.4.1", "@ethersproject/abstract-provider@^5.4.0": +"@ethersproject/abstract-provider@5.4.1": version "5.4.1" resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz#e404309a29f771bd4d28dbafadcaa184668c2a6e" integrity sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ== @@ -1509,7 +1509,7 @@ "@ethersproject/transactions" "^5.4.0" "@ethersproject/web" "^5.4.0" -"@ethersproject/abstract-provider@^5.5.0": +"@ethersproject/abstract-provider@^5.4.0", "@ethersproject/abstract-provider@^5.5.0": version "5.5.1" resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.5.1.tgz#2f1f6e8a3ab7d378d8ad0b5718460f85649710c5" integrity sha512-m+MA/ful6eKbxpr99xUYeRvLkfnlqzrF8SZ46d/xFB1A7ZVknYc/sXJG0RcufF52Qn2jeFj1hhcoQ7IXjNKUqg== @@ -1522,7 +1522,7 @@ "@ethersproject/transactions" "^5.5.0" "@ethersproject/web" "^5.5.0" -"@ethersproject/abstract-signer@5.4.1", "@ethersproject/abstract-signer@^5.4.0": +"@ethersproject/abstract-signer@5.4.1": version "5.4.1" resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz#e4e9abcf4dd4f1ba0db7dff9746a5f78f355ea81" integrity sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA== @@ -1533,7 +1533,7 @@ "@ethersproject/logger" "^5.4.0" "@ethersproject/properties" "^5.4.0" -"@ethersproject/abstract-signer@^5.5.0": +"@ethersproject/abstract-signer@^5.4.0", "@ethersproject/abstract-signer@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.5.0.tgz#590ff6693370c60ae376bf1c7ada59eb2a8dd08d" integrity sha512-lj//7r250MXVLKI7sVarXAbZXbv9P50lgmJQGr2/is82EwEb8r7HrxsmMqAjTsztMYy7ohrIhGMIml+Gx4D3mA== @@ -1544,7 +1544,7 @@ "@ethersproject/logger" "^5.5.0" "@ethersproject/properties" "^5.5.0" -"@ethersproject/address@5.4.0", "@ethersproject/address@^5.0.0", "@ethersproject/address@^5.0.2", "@ethersproject/address@^5.4.0": +"@ethersproject/address@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.4.0.tgz#ba2d00a0f8c4c0854933b963b9a3a9f6eb4a37a3" integrity sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q== @@ -1555,7 +1555,7 @@ "@ethersproject/logger" "^5.4.0" "@ethersproject/rlp" "^5.4.0" -"@ethersproject/address@^5.5.0": +"@ethersproject/address@^5.0.0", "@ethersproject/address@^5.0.2", "@ethersproject/address@^5.4.0", "@ethersproject/address@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.5.0.tgz#bcc6f576a553f21f3dd7ba17248f81b473c9c78f" integrity sha512-l4Nj0eWlTUh6ro5IbPTgbpT4wRbdH5l8CQf7icF7sb/SI3Nhd9Y9HzhonTSTi6CefI0necIw7LJqQPopPLZyWw== @@ -1566,21 +1566,21 @@ "@ethersproject/logger" "^5.5.0" "@ethersproject/rlp" "^5.5.0" -"@ethersproject/base64@5.4.0", "@ethersproject/base64@^5.4.0": +"@ethersproject/base64@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.4.0.tgz#7252bf65295954c9048c7ca5f43e5c86441b2a9a" integrity sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ== dependencies: "@ethersproject/bytes" "^5.4.0" -"@ethersproject/base64@^5.5.0": +"@ethersproject/base64@^5.4.0", "@ethersproject/base64@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.5.0.tgz#881e8544e47ed976930836986e5eb8fab259c090" integrity sha512-tdayUKhU1ljrlHzEWbStXazDpsx4eg1dBXUSI6+mHlYklOXoXF6lZvw8tnD6oVaWfnMxAgRSKROg3cVKtCcppA== dependencies: "@ethersproject/bytes" "^5.5.0" -"@ethersproject/basex@5.4.0", "@ethersproject/basex@^5.4.0": +"@ethersproject/basex@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.4.0.tgz#0a2da0f4e76c504a94f2b21d3161ed9438c7f8a6" integrity sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg== @@ -1588,16 +1588,15 @@ "@ethersproject/bytes" "^5.4.0" "@ethersproject/properties" "^5.4.0" -"@ethersproject/bignumber@5.4.1", "@ethersproject/bignumber@^5.4.0": - version "5.4.1" - resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.1.tgz#64399d3b9ae80aa83d483e550ba57ea062c1042d" - integrity sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg== +"@ethersproject/basex@^5.4.0", "@ethersproject/basex@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.5.0.tgz#e40a53ae6d6b09ab4d977bd037010d4bed21b4d3" + integrity sha512-ZIodwhHpVJ0Y3hUCfUucmxKsWQA5TMnavp5j/UOuDdzZWzJlRmuOjcTMIGgHCYuZmHt36BfiSyQPSRskPxbfaQ== dependencies: - "@ethersproject/bytes" "^5.4.0" - "@ethersproject/logger" "^5.4.0" - bn.js "^4.11.9" + "@ethersproject/bytes" "^5.5.0" + "@ethersproject/properties" "^5.5.0" -"@ethersproject/bignumber@5.4.2", "@ethersproject/bignumber@^5.1.1": +"@ethersproject/bignumber@5.4.2": version "5.4.2" resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.2.tgz#44232e015ae4ce82ac034de549eb3583c71283d8" integrity sha512-oIBDhsKy5bs7j36JlaTzFgNPaZjiNDOXsdSgSpXRucUl+UA6L/1YLlFeI3cPAoodcenzF4nxNPV13pcy7XbWjA== @@ -1606,7 +1605,7 @@ "@ethersproject/logger" "^5.4.0" bn.js "^4.11.9" -"@ethersproject/bignumber@^5.5.0": +"@ethersproject/bignumber@^5.1.1", "@ethersproject/bignumber@^5.4.0", "@ethersproject/bignumber@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.5.0.tgz#875b143f04a216f4f8b96245bde942d42d279527" integrity sha512-6Xytlwvy6Rn3U3gKEc1vP7nR92frHkv6wtVr95LFR3jREXiCPzdWxKQ1cx4JGQBXxcguAwjA8murlYN2TSiEbg== @@ -1615,28 +1614,28 @@ "@ethersproject/logger" "^5.5.0" bn.js "^4.11.9" -"@ethersproject/bytes@5.4.0", "@ethersproject/bytes@^5.4.0": +"@ethersproject/bytes@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.4.0.tgz#56fa32ce3bf67153756dbaefda921d1d4774404e" integrity sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA== dependencies: "@ethersproject/logger" "^5.4.0" -"@ethersproject/bytes@^5.5.0": +"@ethersproject/bytes@^5.4.0", "@ethersproject/bytes@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.5.0.tgz#cb11c526de657e7b45d2e0f0246fb3b9d29a601c" integrity sha512-ABvc7BHWhZU9PNM/tANm/Qx4ostPGadAuQzWTr3doklZOhDlmcBqclrQe/ZXUIj3K8wC28oYeuRa+A37tX9kog== dependencies: "@ethersproject/logger" "^5.5.0" -"@ethersproject/constants@5.4.0", "@ethersproject/constants@^5.4.0": +"@ethersproject/constants@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.4.0.tgz#ee0bdcb30bf1b532d2353c977bf2ef1ee117958a" integrity sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q== dependencies: "@ethersproject/bignumber" "^5.4.0" -"@ethersproject/constants@^5.5.0": +"@ethersproject/constants@^5.4.0", "@ethersproject/constants@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.5.0.tgz#d2a2cd7d94bd1d58377d1d66c4f53c9be4d0a45e" integrity sha512-2MsRRVChkvMWR+GyMGY4N1sAX9Mt3J9KykCsgUFd/1mwS0UH1qw+Bv9k1UJb3X3YJYFco9H20pjSlOIfCG5HYQ== @@ -1668,7 +1667,7 @@ ethers "^5.4.0" scrypt-js "3.0.1" -"@ethersproject/hash@5.4.0", "@ethersproject/hash@^5.4.0": +"@ethersproject/hash@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.4.0.tgz#d18a8e927e828e22860a011f39e429d388344ae0" integrity sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA== @@ -1682,7 +1681,7 @@ "@ethersproject/properties" "^5.4.0" "@ethersproject/strings" "^5.4.0" -"@ethersproject/hash@^5.5.0": +"@ethersproject/hash@^5.4.0", "@ethersproject/hash@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.5.0.tgz#7cee76d08f88d1873574c849e0207dcb32380cc9" integrity sha512-dnGVpK1WtBjmnp3mUT0PlU2MpapnwWI0PibldQEq1408tQBAbZpPidkWoVVuNMOl/lISO3+4hXZWCL3YV7qzfg== @@ -1733,7 +1732,7 @@ aes-js "3.0.0" scrypt-js "3.0.1" -"@ethersproject/keccak256@5.4.0", "@ethersproject/keccak256@^5.0.0-beta.130", "@ethersproject/keccak256@^5.4.0": +"@ethersproject/keccak256@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.4.0.tgz#7143b8eea4976080241d2bd92e3b1f1bf7025318" integrity sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A== @@ -1741,7 +1740,7 @@ "@ethersproject/bytes" "^5.4.0" js-sha3 "0.5.7" -"@ethersproject/keccak256@^5.5.0": +"@ethersproject/keccak256@^5.0.0-beta.130", "@ethersproject/keccak256@^5.4.0", "@ethersproject/keccak256@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.5.0.tgz#e4b1f9d7701da87c564ffe336f86dcee82983492" integrity sha512-5VoFCTjo2rYbBe1l2f4mccaRFN/4VQEYFwwn04aJV2h7qf4ZvI2wFxUE1XOX+snbwCLRzIeikOqtAoPwMza9kg== @@ -1749,24 +1748,24 @@ "@ethersproject/bytes" "^5.5.0" js-sha3 "0.8.0" -"@ethersproject/logger@5.4.1", "@ethersproject/logger@^5.4.0": +"@ethersproject/logger@5.4.1": version "5.4.1" resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.4.1.tgz#503bd33683538b923c578c07d1c2c0dd18672054" integrity sha512-DZ+bRinnYLPw1yAC64oRl0QyVZj43QeHIhVKfD/+YwSz4wsv1pfwb5SOFjz+r710YEWzU6LrhuSjpSO+6PeE4A== -"@ethersproject/logger@^5.5.0": +"@ethersproject/logger@^5.4.0", "@ethersproject/logger@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.5.0.tgz#0c2caebeff98e10aefa5aef27d7441c7fd18cf5d" integrity sha512-rIY/6WPm7T8n3qS2vuHTUBPdXHl+rGxWxW5okDfo9J4Z0+gRRZT0msvUdIJkE4/HS29GUMziwGaaKO2bWONBrg== -"@ethersproject/networks@5.4.2", "@ethersproject/networks@^5.4.0": +"@ethersproject/networks@5.4.2": version "5.4.2" resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.4.2.tgz#2247d977626e97e2c3b8ee73cd2457babde0ce35" integrity sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw== dependencies: "@ethersproject/logger" "^5.4.0" -"@ethersproject/networks@^5.5.0": +"@ethersproject/networks@^5.4.0", "@ethersproject/networks@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.5.0.tgz#babec47cab892c51f8dd652ce7f2e3e14283981a" integrity sha512-KWfP3xOnJeF89Uf/FCJdV1a2aDJe5XTN2N52p4fcQ34QhDqQFkgQKZ39VGtiqUgHcLI8DfT0l9azC3KFTunqtA== @@ -1781,14 +1780,14 @@ "@ethersproject/bytes" "^5.4.0" "@ethersproject/sha2" "^5.4.0" -"@ethersproject/properties@5.4.1", "@ethersproject/properties@^5.4.0": +"@ethersproject/properties@5.4.1": version "5.4.1" resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.4.1.tgz#9f051f976ce790142c6261ccb7b826eaae1f2f36" integrity sha512-cyCGlF8wWlIZyizsj2PpbJ9I7rIlUAfnHYwy/T90pdkSn/NFTa5YWZx2wTJBe9V7dD65dcrrEMisCRUJiq6n3w== dependencies: "@ethersproject/logger" "^5.4.0" -"@ethersproject/properties@^5.5.0": +"@ethersproject/properties@^5.4.0", "@ethersproject/properties@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.5.0.tgz#61f00f2bb83376d2071baab02245f92070c59995" integrity sha512-l3zRQg3JkD8EL3CPjNK5g7kMx4qSwiR60/uk5IVjd3oq1MZR5qUg40CNOoEJoX5wc3DyY5bt9EbMk86C7x0DNA== @@ -1820,7 +1819,32 @@ bech32 "1.1.4" ws "7.4.6" -"@ethersproject/random@5.4.0", "@ethersproject/random@^5.4.0": +"@ethersproject/providers@^5.4.5": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.5.0.tgz#bc2876a8fe5e0053ed9828b1f3767ae46e43758b" + integrity sha512-xqMbDnS/FPy+J/9mBLKddzyLLAQFjrVff5g00efqxPzcAwXiR+SiCGVy6eJ5iAIirBOATjx7QLhDNPGV+AEQsw== + dependencies: + "@ethersproject/abstract-provider" "^5.5.0" + "@ethersproject/abstract-signer" "^5.5.0" + "@ethersproject/address" "^5.5.0" + "@ethersproject/basex" "^5.5.0" + "@ethersproject/bignumber" "^5.5.0" + "@ethersproject/bytes" "^5.5.0" + "@ethersproject/constants" "^5.5.0" + "@ethersproject/hash" "^5.5.0" + "@ethersproject/logger" "^5.5.0" + "@ethersproject/networks" "^5.5.0" + "@ethersproject/properties" "^5.5.0" + "@ethersproject/random" "^5.5.0" + "@ethersproject/rlp" "^5.5.0" + "@ethersproject/sha2" "^5.5.0" + "@ethersproject/strings" "^5.5.0" + "@ethersproject/transactions" "^5.5.0" + "@ethersproject/web" "^5.5.0" + bech32 "1.1.4" + ws "7.4.6" + +"@ethersproject/random@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.4.0.tgz#9cdde60e160d024be39cc16f8de3b9ce39191e16" integrity sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw== @@ -1828,7 +1852,15 @@ "@ethersproject/bytes" "^5.4.0" "@ethersproject/logger" "^5.4.0" -"@ethersproject/rlp@5.4.0", "@ethersproject/rlp@^5.4.0": +"@ethersproject/random@^5.4.0", "@ethersproject/random@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.5.0.tgz#305ed9e033ca537735365ac12eed88580b0f81f9" + integrity sha512-egGYZwZ/YIFKMHcoBUo8t3a8Hb/TKYX8BCBoLjudVCZh892welR3jOxgOmb48xznc9bTcMm7Tpwc1gHC1PFNFQ== + dependencies: + "@ethersproject/bytes" "^5.5.0" + "@ethersproject/logger" "^5.5.0" + +"@ethersproject/rlp@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.4.0.tgz#de61afda5ff979454e76d3b3310a6c32ad060931" integrity sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg== @@ -1836,7 +1868,7 @@ "@ethersproject/bytes" "^5.4.0" "@ethersproject/logger" "^5.4.0" -"@ethersproject/rlp@^5.5.0": +"@ethersproject/rlp@^5.4.0", "@ethersproject/rlp@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.5.0.tgz#530f4f608f9ca9d4f89c24ab95db58ab56ab99a0" integrity sha512-hLv8XaQ8PTI9g2RHoQGf/WSxBfTB/NudRacbzdxmst5VHAqd1sMibWG7SENzT5Dj3yZ3kJYx+WiRYEcQTAkcYA== @@ -1844,7 +1876,7 @@ "@ethersproject/bytes" "^5.5.0" "@ethersproject/logger" "^5.5.0" -"@ethersproject/sha2@5.4.0", "@ethersproject/sha2@^5.4.0": +"@ethersproject/sha2@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.4.0.tgz#c9a8db1037014cbc4e9482bd662f86c090440371" integrity sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg== @@ -1853,7 +1885,16 @@ "@ethersproject/logger" "^5.4.0" hash.js "1.1.7" -"@ethersproject/signing-key@5.4.0", "@ethersproject/signing-key@^5.4.0": +"@ethersproject/sha2@^5.4.0", "@ethersproject/sha2@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.5.0.tgz#a40a054c61f98fd9eee99af2c3cc6ff57ec24db7" + integrity sha512-B5UBoglbCiHamRVPLA110J+2uqsifpZaTmid2/7W5rbtYVz6gus6/hSDieIU/6gaKIDcOj12WnOdiymEUHIAOA== + dependencies: + "@ethersproject/bytes" "^5.5.0" + "@ethersproject/logger" "^5.5.0" + hash.js "1.1.7" + +"@ethersproject/signing-key@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.4.0.tgz#2f05120984e81cf89a3d5f6dec5c68ee0894fbec" integrity sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A== @@ -1865,7 +1906,7 @@ elliptic "6.5.4" hash.js "1.1.7" -"@ethersproject/signing-key@^5.5.0": +"@ethersproject/signing-key@^5.4.0", "@ethersproject/signing-key@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.5.0.tgz#2aa37169ce7e01e3e80f2c14325f624c29cedbe0" integrity sha512-5VmseH7qjtNmDdZBswavhotYbWB0bOwKIlOTSlX14rKn5c11QmJwGt4GHeo7NrL/Ycl7uo9AHvEqs5xZgFBTng== @@ -1888,7 +1929,7 @@ "@ethersproject/sha2" "^5.4.0" "@ethersproject/strings" "^5.4.0" -"@ethersproject/strings@5.4.0", "@ethersproject/strings@^5.4.0": +"@ethersproject/strings@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.4.0.tgz#fb12270132dd84b02906a8d895ae7e7fa3d07d9a" integrity sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA== @@ -1897,7 +1938,7 @@ "@ethersproject/constants" "^5.4.0" "@ethersproject/logger" "^5.4.0" -"@ethersproject/strings@^5.5.0": +"@ethersproject/strings@^5.4.0", "@ethersproject/strings@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.5.0.tgz#e6784d00ec6c57710755699003bc747e98c5d549" integrity sha512-9fy3TtF5LrX/wTrBaT8FGE6TDJyVjOvXynXJz5MT5azq+E6D92zuKNx7i29sWW2FjVOaWjAsiZ1ZWznuduTIIQ== @@ -1906,7 +1947,7 @@ "@ethersproject/constants" "^5.5.0" "@ethersproject/logger" "^5.5.0" -"@ethersproject/transactions@5.4.0", "@ethersproject/transactions@^5.4.0": +"@ethersproject/transactions@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.4.0.tgz#a159d035179334bd92f340ce0f77e83e9e1522e0" integrity sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ== @@ -1921,7 +1962,7 @@ "@ethersproject/rlp" "^5.4.0" "@ethersproject/signing-key" "^5.4.0" -"@ethersproject/transactions@^5.5.0": +"@ethersproject/transactions@^5.4.0", "@ethersproject/transactions@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.5.0.tgz#7e9bf72e97bcdf69db34fe0d59e2f4203c7a2908" integrity sha512-9RZYSKX26KfzEd/1eqvv8pLauCKzDTub0Ko4LfIgaERvRuwyaNV78mJs7cpIgZaDl6RJui4o49lHwwCM0526zA== @@ -1966,7 +2007,7 @@ "@ethersproject/transactions" "^5.4.0" "@ethersproject/wordlists" "^5.4.0" -"@ethersproject/web@5.4.0", "@ethersproject/web@^5.4.0": +"@ethersproject/web@5.4.0": version "5.4.0" resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.4.0.tgz#49fac173b96992334ed36a175538ba07a7413d1f" integrity sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og== @@ -1977,7 +2018,7 @@ "@ethersproject/properties" "^5.4.0" "@ethersproject/strings" "^5.4.0" -"@ethersproject/web@^5.5.0": +"@ethersproject/web@^5.4.0", "@ethersproject/web@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.5.0.tgz#0e5bb21a2b58fb4960a705bfc6522a6acf461e28" integrity sha512-BEgY0eL5oH4mAo37TNYVrFeHsIXLRxggCRG/ksRIxI2X5uj5IsjGmcNiRN/VirQOlBxcUhCgHhaDLG4m6XAVoA== @@ -2359,6 +2400,16 @@ resolved "https://registry.yarnpkg.com/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.6.0.tgz#e18ea901c84917f8dadd0185048a9d00573fe595" integrity sha512-Pz4+7HPzKvOFI1ICQ6pyUv/VgStEWq9IGiVaaV1cQLi66NIA1mD5INnY4CDNoVAxlkuZvDEUZ+cVHLQ8iwA2hQ== +"@fontsource/ibm-plex-mono@^4.5.1": + version "4.5.1" + resolved "https://registry.yarnpkg.com/@fontsource/ibm-plex-mono/-/ibm-plex-mono-4.5.1.tgz#f09822dc9d143710687ff8bd05248a86cc2dc4d1" + integrity sha512-LW12fxDJ5AsehWKjSdmIV3UZx/DAsbLrLXW7rBww/Rasid2Jgkr6l7mccC1JjcK3RtfQLK8bSYo9OaH61eSikw== + +"@fontsource/inter@^4.5.1": + version "4.5.1" + resolved "https://registry.yarnpkg.com/@fontsource/inter/-/inter-4.5.1.tgz#058d8a02354f3c78e369d452c15d33557ec1b705" + integrity sha512-mvtOvXNNVLlF1p/UbLgLrmz2RCOl6Ow+TqyiK10SosoLKX7edsXYiHFHb7XIZdjII6F2sJVPPsJXWhBnbXT2DQ== + "@gnosis.pm/safe-apps-provider@0.6.0": version "0.6.0" resolved "https://registry.yarnpkg.com/@gnosis.pm/safe-apps-provider/-/safe-apps-provider-0.6.0.tgz#07cc78df57ca4d0fa9c24c4040ea6322ac759a23" @@ -3216,6 +3267,11 @@ "@babel/runtime" "^7.11.2" "@lingui/core" "^3.9.0" +"@metamask/detect-provider@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@metamask/detect-provider/-/detect-provider-1.2.0.tgz#3667a7531f2a682e3c3a43eaf3a1958bdb42a696" + integrity sha512-ocA76vt+8D0thgXZ7LxFPyqw3H7988qblgzddTDA6B8a/yU0uKV42QR/DhA+Jh11rJjxW0jKvwb5htA6krNZDQ== + "@metamask/jazzicon@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@metamask/jazzicon/-/jazzicon-2.0.0.tgz#5615528e91c0fc5c9d79202d1f0954a7922525a0" @@ -3827,6 +3883,21 @@ "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" "@svgr/babel-plugin-transform-svg-component" "^5.5.0" +"@svgr/cli@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/cli/-/cli-5.5.0.tgz#b5b43383cc3b22c327a7bc3277dd8fc7d962452b" + integrity sha512-KwEWi8olD7MpHR9pD5CrgsH7W8kQpzhSM0Ar3gGQyXqXdIuRYX5RgkWGm8Zi5ALZV9UhbPE+ObLhuSwEJxOzgA== + dependencies: + "@svgr/core" "^5.5.0" + "@svgr/plugin-jsx" "^5.5.0" + "@svgr/plugin-prettier" "^5.5.0" + "@svgr/plugin-svgo" "^5.5.0" + camelcase "^6.2.0" + chalk "^4.1.0" + commander "^6.2.0" + dashify "^2.0.0" + glob "^7.1.4" + "@svgr/core@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579" @@ -3853,6 +3924,14 @@ "@svgr/hast-util-to-babel-ast" "^5.5.0" svg-parser "^2.0.2" +"@svgr/plugin-prettier@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-prettier/-/plugin-prettier-5.5.0.tgz#6c5cc8100f0c895f356d24d523f6ea5165b75366" + integrity sha512-mVc+u+eKUmy8sW5UnFpes9NqVtizJfnhasF8Srbi3XdxVTWyU5lmhWlQAgHLhcrsZKowQ0b7xBa4qWHI5Ew/VQ== + dependencies: + deepmerge "^4.2.2" + prettier "^2.1.2" + "@svgr/plugin-svgo@^5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246" @@ -4434,21 +4513,16 @@ dependencies: "@types/node" "*" -"@types/node@*": - version "16.7.9" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.9.tgz#3bf27710839e62a470ddf6bd8dd321f1737ce5b4" - integrity sha512-KktxVzS4FPDFVHUUOWyZMvRo//8vqOLITtLMhFSW9IdLsYT/sPyXj3wXtaTcR7A7olCe7R2Xy7R+q5pg2bU46g== +"@types/node@*", "@types/node@>=12.12.47", "@types/node@>=13.7.0": + version "16.11.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.1.tgz#2e50a649a50fc403433a14f829eface1a3443e97" + integrity sha512-PYGcJHL9mwl1Ek3PLiYgyEKtwTMmkMw4vbiyz/ps3pfdRYLVv+SN7qHVAImrjdAXxgluDEw6Ph4lyv+m9UpRmA== "@types/node@12.12.54": version "12.12.54" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.54.tgz#a4b58d8df3a4677b6c08bfbc94b7ad7a7a5f82d1" integrity sha512-ge4xZ3vSBornVYlDnk7yZ0gK6ChHf/CHB7Gl1I0Jhah8DDnEQqBzgohYG4FX4p81TNirSETOiSyn+y1r9/IR6w== -"@types/node@>=12.12.47", "@types/node@>=13.7.0": - version "16.11.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.1.tgz#2e50a649a50fc403433a14f829eface1a3443e97" - integrity sha512-PYGcJHL9mwl1Ek3PLiYgyEKtwTMmkMw4vbiyz/ps3pfdRYLVv+SN7qHVAImrjdAXxgluDEw6Ph4lyv+m9UpRmA== - "@types/node@^10.12.18": version "10.17.60" resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b" @@ -4713,9 +4787,9 @@ source-map "^0.7.3" "@types/webpack@^4.41.8": - version "4.41.30" - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.30.tgz#fd3db6d0d41e145a8eeeafcd3c4a7ccde9068ddc" - integrity sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA== + version "4.41.32" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.32.tgz#a7bab03b72904070162b2f169415492209e94212" + integrity sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg== dependencies: "@types/node" "*" "@types/tapable" "^1" @@ -4863,7 +4937,7 @@ "@typescript-eslint/types" "4.30.0" eslint-visitor-keys "^2.0.0" -"@uniswap/default-token-list@^2.0.0": +"@uniswap/default-token-list@^2.0.0", "@uniswap/default-token-list@^2.1.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@uniswap/default-token-list/-/default-token-list-2.2.0.tgz#d85a5c2520f57f4920bd989dfc9f01e1b701a567" integrity sha512-vFPWoGzDjHP4i2l7yLaober/lZMmzOZXXirVF8XNyfNzRxgmYCWKO6SzKtfEUwxpd3/KUebgdK55II4Mnak62A== @@ -4900,21 +4974,10 @@ resolved "https://registry.yarnpkg.com/@uniswap/redux-multicall/-/redux-multicall-1.0.0.tgz#0cee4448909a788ea4700e5ede75ffeba05b5d75" integrity sha512-zR6tNC3XF6JuI6PjGlZW2Hz7tTzRzzVaPJfZ01BBWBJVt/2ixJY0SH514uffD03NHYiXZA//hlPQLfw3TkIxQg== -"@uniswap/router-sdk@^1.0.1": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@uniswap/router-sdk/-/router-sdk-1.0.2.tgz#6f104a9e507a14182b90fb93a69aceb59d6a9a62" - integrity sha512-NYsNsSMY+B0F9TuARDPjVsrfS61X87qsLIfHOcza4Tbp8/bLLnXPA67Jwc6iN4u7xUEdDR049mn0ALPlGeTkDw== - dependencies: - "@ethersproject/abi" "^5.5.0" - "@uniswap/sdk-core" "^3.0.1" - "@uniswap/swap-router-contracts" "1.0.0" - "@uniswap/v2-sdk" "^3.0.1" - "@uniswap/v3-sdk" "^3.7.1" - -"@uniswap/router-sdk@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@uniswap/router-sdk/-/router-sdk-1.0.4.tgz#88371b84ef2a64b1fb18036e1933ebaa1a48133f" - integrity sha512-uh6/RBDsUL2L3eFDodMu40tW3OBQHo4tgkI4GD74VlBoHLoBzsrvmg9/g2BfwTRWSnQma4mg0IRwVdJ5untsFg== +"@uniswap/router-sdk@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@uniswap/router-sdk/-/router-sdk-1.0.3.tgz#378a8cc96a3f17b5627b811e64bfcf1e0e50a551" + integrity sha512-9Nq0+J4+u5cPkZlLjCnV1IbbmPVVDxlwrIuYh/fPTVMH4DnPVVEcP68BArtkSUG0OSC87rWrkEHIZd+L8CO6sQ== dependencies: "@ethersproject/abi" "^5.5.0" "@uniswap/sdk-core" "^3.0.1" @@ -4934,10 +4997,10 @@ tiny-invariant "^1.1.0" toformat "^2.0.0" -"@uniswap/smart-order-router@^2.5.7": - version "2.5.7" - resolved "https://registry.yarnpkg.com/@uniswap/smart-order-router/-/smart-order-router-2.5.7.tgz#369544adabf6aeea1bbbdafbba380427a8346916" - integrity sha512-xX65WK5TrVu9lq4plauG4RlbyA0T6yKA1bjD+wUHHfFZQ/xUaRjNOQQmYeviHBFpsgSqIM1C9XQX1qH2AWzT5g== +"@uniswap/smart-order-router@^2.5.4": + version "2.5.4" + resolved "https://registry.yarnpkg.com/@uniswap/smart-order-router/-/smart-order-router-2.5.4.tgz#dee2580d5fd836aecd46d935ab6ca7f7963c0501" + integrity sha512-uInC4+gL/n28XtEVOY/jrV7uT8FFBtgoW7x0Ks6SGoe/Gx/dYRmzhdeIR1rb3Tg1WP10OwnnC0AW73BJghdGxA== dependencies: "@bitauth/libauth" "^1.17.1" "@ethersproject/bignumber" "^5.1.1" @@ -4951,7 +5014,7 @@ "@types/sinon" "^10.0.2" "@types/stats-lite" "^2.2.0" "@uniswap/default-token-list" "^2.0.0" - "@uniswap/router-sdk" "^1.0.4" + "@uniswap/router-sdk" "^1.0.3" "@uniswap/swap-router-contracts" "1.1.0" "@uniswap/token-lists" "^1.0.0-beta.25" "@uniswap/v2-core" "^1.0.1" @@ -4977,17 +5040,6 @@ stats-lite "^2.2.0" tslib "^1.14.1" -"@uniswap/swap-router-contracts@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@uniswap/swap-router-contracts/-/swap-router-contracts-1.0.0.tgz#357a5b681fa5d5a5b1629271b99845c96932d4fa" - integrity sha512-EOO94glkJ4KI38IVklmMJkZzQLSY2MCNndYBPWlu64g3DkYJ/d04rbiHTEh7zYwT4gvGW8InQpmQA7mzmGIANw== - dependencies: - "@openzeppelin/contracts" "3.4.1-solc-0.7-2" - "@uniswap/v2-core" "1.0.1" - "@uniswap/v3-core" "1.0.0" - "@uniswap/v3-periphery" "1.3.0" - hardhat-watcher "^2.1.1" - "@uniswap/swap-router-contracts@1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@uniswap/swap-router-contracts/-/swap-router-contracts-1.1.0.tgz#e027b14d4c172f231c53c48e1fd708a78d7d94d8" @@ -5038,7 +5090,7 @@ resolved "https://registry.npmjs.org/@uniswap/v3-core/-/v3-core-1.0.0.tgz" integrity sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA== -"@uniswap/v3-periphery@1.3.0": +"@uniswap/v3-periphery@1.3.0", "@uniswap/v3-periphery@^1.0.1", "@uniswap/v3-periphery@^1.1.1": version "1.3.0" resolved "https://registry.yarnpkg.com/@uniswap/v3-periphery/-/v3-periphery-1.3.0.tgz#37f0a1ef6025221722e50e9f3f2009c2d5d6e4ec" integrity sha512-HjHdI5RkjBl8zz3bqHShrbULFoZSrjbbrRHoO2vbzn+WRzTa6xY4PWphZv2Tlcb38YEKfKHp6NPl5hVedac8uw== @@ -5050,30 +5102,6 @@ base64-sol "1.0.1" hardhat-watcher "^2.1.1" -"@uniswap/v3-periphery@^1.0.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@uniswap/v3-periphery/-/v3-periphery-1.2.1.tgz#7775630bea774a2cf989ab87ce3c328ac52e0d50" - integrity sha512-45W8hT8X1j9ZcXa+y3NSVao90hMZtgtoJyDlMOg91wmUGi2idXAiGivOQYdB7+7Lq8Gc6Upv/ggFZknixZrv7g== - dependencies: - "@openzeppelin/contracts" "3.4.1-solc-0.7-2" - "@uniswap/lib" "^4.0.1-alpha" - "@uniswap/v2-core" "1.0.1" - "@uniswap/v3-core" "1.0.0" - base64-sol "1.0.1" - hardhat-watcher "^2.1.1" - -"@uniswap/v3-periphery@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@uniswap/v3-periphery/-/v3-periphery-1.1.1.tgz#be6dfca7b29318ea0d76a7baf15d3b33c3c5e90a" - integrity sha512-orqD2Xy4lxVPF6pxd7ECSJY0gzEuqyeVSDHjzM86uWxOXlA4Nlh5pvI959KaS32pSOFBOVVA4XbbZywbJj+CZg== - dependencies: - "@openzeppelin/contracts" "3.4.1-solc-0.7-2" - "@uniswap/lib" "^4.0.1-alpha" - "@uniswap/v2-core" "1.0.1" - "@uniswap/v3-core" "1.0.0" - base64-sol "1.0.1" - hardhat-watcher "^2.1.1" - "@uniswap/v3-sdk@^3.7.0", "@uniswap/v3-sdk@^3.7.1": version "3.7.1" resolved "https://registry.yarnpkg.com/@uniswap/v3-sdk/-/v3-sdk-3.7.1.tgz#8a3740ff6302d8069e7ce4a38b7588721398048b" @@ -5377,14 +5405,14 @@ "@web3-react/abstract-connector@6.0.7", "@web3-react/abstract-connector@^6.0.7": version "6.0.7" - resolved "https://registry.npmjs.org/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz" + resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" integrity sha512-RhQasA4Ox8CxUC0OENc1AJJm8UTybu/oOCM61Zjg6y0iF7Z0sqv1Ai1VdhC33hrQpA8qSBgoXN9PaP8jKmtdqg== dependencies: "@web3-react/types" "^6.0.7" "@web3-react/core@^6.0.9": version "6.1.9" - resolved "https://registry.npmjs.org/@web3-react/core/-/core-6.1.9.tgz" + resolved "https://registry.yarnpkg.com/@web3-react/core/-/core-6.1.9.tgz#5f5daa0545a8ea07770a699580ced552583afc97" integrity sha512-P877DslsbAkWIlMANpWiK7pCvNwlz0kJC0EGckuVh0wlA23J4UnFxq6xyOaxkxaDCu14rA/tAO0NbwjcXTQgSA== dependencies: "@ethersproject/keccak256" "^5.0.0-beta.130" @@ -5395,7 +5423,7 @@ "@web3-react/fortmatic-connector@^6.0.9": version "6.1.6" - resolved "https://registry.npmjs.org/@web3-react/fortmatic-connector/-/fortmatic-connector-6.1.6.tgz" + resolved "https://registry.yarnpkg.com/@web3-react/fortmatic-connector/-/fortmatic-connector-6.1.6.tgz#99836c4ff4428432e34ed859b55c5842b02726a5" integrity sha512-AKiEVvKlZPpRj5pADXyucl2FBt3ymf7PSsRhraHeI8hJCfCEACQ2+bq7okvJq9sNqaeUKukzwUYJmgBYn0qkYQ== dependencies: "@web3-react/abstract-connector" "^6.0.7" @@ -5405,7 +5433,7 @@ "@web3-react/injected-connector@^6.0.7": version "6.0.7" - resolved "https://registry.npmjs.org/@web3-react/injected-connector/-/injected-connector-6.0.7.tgz" + resolved "https://registry.yarnpkg.com/@web3-react/injected-connector/-/injected-connector-6.0.7.tgz#1e0be23f51fa07fe6547fe986768a46b74c3a426" integrity sha512-Y7aJSz6pg+MWKtvdyuqyy6LWuH+4Tqtph1LWfiyVms9II9ar/9B/de4R8wh4wjg91wmHkU+D75yP09E/Soh2RA== dependencies: "@web3-react/abstract-connector" "^6.0.7" @@ -5414,7 +5442,7 @@ "@web3-react/portis-connector@^6.0.9": version "6.1.9" - resolved "https://registry.npmjs.org/@web3-react/portis-connector/-/portis-connector-6.1.9.tgz" + resolved "https://registry.yarnpkg.com/@web3-react/portis-connector/-/portis-connector-6.1.9.tgz#33216ce320d2c6d6e75d0c42c6e977b7a157ad4a" integrity sha512-dYP1b6a1Y91t9xEu1NrlGvLwuAqYEuVfAerZtVkVf3JZ3O5TiQyVt7O7KWPPg4WsqQ8JEqOrZcE/2bmozP47mA== dependencies: "@portis/web3" "^2.0.0-beta.54" @@ -5422,11 +5450,27 @@ "@web3-react/types" "^6.0.7" tiny-invariant "^1.0.6" +"@web3-react/store@^8.0.15-alpha.0": + version "8.0.15-alpha.0" + resolved "https://registry.yarnpkg.com/@web3-react/store/-/store-8.0.15-alpha.0.tgz#2586390e9b2168ea132f55aa47fd09461d5f77da" + integrity sha512-cHva0gDMSob6AAvcWXGRGFCdKeoTD0P3Kb5gOWQDUuhGCBdqEVBldjYHdewBnVPkylZ5EYKSDkFoBj87WKtvHA== + dependencies: + "@ethersproject/address" "^5.4.0" + "@web3-react/types" "^8.0.15-alpha.0" + zustand "^4.0.0-beta.0" + "@web3-react/types@^6.0.7": version "6.0.7" - resolved "https://registry.npmjs.org/@web3-react/types/-/types-6.0.7.tgz" + resolved "https://registry.yarnpkg.com/@web3-react/types/-/types-6.0.7.tgz#34a6204224467eedc6123abaf55fbb6baeb2809f" integrity sha512-ofGmfDhxmNT1/P/MgVa8IKSkCStFiyvXe+U5tyZurKdrtTDFU+wJ/LxClPDtFerWpczNFPUSrKcuhfPX1sI6+A== +"@web3-react/types@^8.0.15-alpha.0", "widgets-web3-react/types@npm:@web3-react/types@8.0.15-alpha.0": + version "8.0.15-alpha.0" + resolved "https://registry.yarnpkg.com/@web3-react/types/-/types-8.0.15-alpha.0.tgz#cc3da4360cee6a04306509a8b32b47079547cb10" + integrity sha512-gKIp03QbRzGdBpd/vDF6pDkbDDlVAuq2QofthtNR/lIUOgl/V2Smwt1m80yXPHhSQG9L6OfkiJPkiTth/QsbOw== + dependencies: + zustand "^4.0.0-beta.0" + "@web3-react/walletconnect-connector@^7.0.2-alpha.0": version "7.0.2-alpha.0" resolved "https://registry.yarnpkg.com/@web3-react/walletconnect-connector/-/walletconnect-connector-7.0.2-alpha.0.tgz#dacd59db626b42137a1e4f34ea23ef1f04cc8b99" @@ -7835,6 +7879,21 @@ chokidar@3.5.1: optionalDependencies: fsevents "~2.3.1" +"chokidar@>=3.0.0 <4.0.0", chokidar@^3.4.1, chokidar@^3.4.3, chokidar@^3.5.1, chokidar@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" @@ -7854,21 +7913,6 @@ chokidar@^2.1.8: optionalDependencies: fsevents "^1.2.7" -chokidar@^3.4.1, chokidar@^3.4.3, chokidar@^3.5.1, chokidar@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" - integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -8239,7 +8283,7 @@ commander@^5.1.0: resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== -commander@^6.1.0: +commander@^6.1.0, commander@^6.2.0: version "6.2.1" resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== @@ -9323,6 +9367,11 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" +dashify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dashify/-/dashify-2.0.0.tgz#fff270ca2868ca427fee571de35691d6e437a648" + integrity sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A== + data-urls@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" @@ -10038,31 +10087,7 @@ error-stack-parser@^2.0.6: dependencies: stackframe "^1.1.1" -es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: - version "1.18.6" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.6.tgz#2c44e3ea7a6255039164d26559777a6d978cb456" - integrity sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - get-intrinsic "^1.1.1" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-symbols "^1.0.2" - internal-slot "^1.0.3" - is-callable "^1.2.4" - is-negative-zero "^2.0.1" - is-regex "^1.1.4" - is-string "^1.0.7" - object-inspect "^1.11.0" - object-keys "^1.1.1" - object.assign "^4.1.2" - string.prototype.trimend "^1.0.4" - string.prototype.trimstart "^1.0.4" - unbox-primitive "^1.0.1" - -es-abstract@^1.18.5: +es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2, es-abstract@^1.18.5: version "1.19.1" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== @@ -10195,6 +10220,14 @@ eslint-module-utils@^2.6.1: debug "^3.2.7" pkg-dir "^2.0.0" +eslint-plugin-better-styled-components@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-better-styled-components/-/eslint-plugin-better-styled-components-1.1.2.tgz#cc8af5607abfcdabb53160e94f8e342582a46031" + integrity sha512-pGLIv8Z05xnmMyDyLWV65KQs7HU+FN403Tqb5xv3BZvw5kjC3K18/aYm7mcRpLLPse5/lwhX8ieGQKflPgr0xQ== + dependencies: + postcss "^7.0.2" + requireindex "~1.1.0" + eslint-plugin-flowtype@^5.2.0: version "5.8.0" resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.8.0.tgz#35b55e4ce559b90efbe913ed33630e391e301481" @@ -10796,7 +10829,7 @@ ethereumjs-vm@^2.1.0, ethereumjs-vm@^2.3.4, ethereumjs-vm@^2.6.0: rustbn.js "~0.2.0" safe-buffer "^5.1.1" -ethers@^5.1.4: +ethers@^5.1.4, ethers@^5.4.0, ethers@^5.4.6: version "5.4.7" resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.7.tgz#0fd491a5da7c9793de2d6058d76b41b1e7efba8f" integrity sha512-iZc5p2nqfWK1sj8RabwsPM28cr37Bpq7ehTQ5rWExBr2Y09Sn1lDKZOED26n+TsZMye7Y6mIgQ/1cwpSD8XZew== @@ -10832,42 +10865,6 @@ ethers@^5.1.4: "@ethersproject/web" "5.4.0" "@ethersproject/wordlists" "5.4.0" -ethers@^5.4.0, ethers@^5.4.6: - version "5.4.6" - resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.6.tgz#fe0a023956b5502c947f58e82fbcf9a73e5e75b6" - integrity sha512-F7LXARyB/Px3AQC6/QKedWZ8eqCkgOLORqL4B/F0Mag/K+qJSFGqsR36EaOZ6fKg3ZonI+pdbhb4A8Knt/43jQ== - dependencies: - "@ethersproject/abi" "5.4.1" - "@ethersproject/abstract-provider" "5.4.1" - "@ethersproject/abstract-signer" "5.4.1" - "@ethersproject/address" "5.4.0" - "@ethersproject/base64" "5.4.0" - "@ethersproject/basex" "5.4.0" - "@ethersproject/bignumber" "5.4.1" - "@ethersproject/bytes" "5.4.0" - "@ethersproject/constants" "5.4.0" - "@ethersproject/contracts" "5.4.1" - "@ethersproject/hash" "5.4.0" - "@ethersproject/hdnode" "5.4.0" - "@ethersproject/json-wallets" "5.4.0" - "@ethersproject/keccak256" "5.4.0" - "@ethersproject/logger" "5.4.1" - "@ethersproject/networks" "5.4.2" - "@ethersproject/pbkdf2" "5.4.0" - "@ethersproject/properties" "5.4.1" - "@ethersproject/providers" "5.4.5" - "@ethersproject/random" "5.4.0" - "@ethersproject/rlp" "5.4.0" - "@ethersproject/sha2" "5.4.0" - "@ethersproject/signing-key" "5.4.0" - "@ethersproject/solidity" "5.4.0" - "@ethersproject/strings" "5.4.0" - "@ethersproject/transactions" "5.4.0" - "@ethersproject/units" "5.4.0" - "@ethersproject/wallet" "5.4.0" - "@ethersproject/web" "5.4.0" - "@ethersproject/wordlists" "5.4.0" - ethjs-util@0.1.6, ethjs-util@^0.1.3: version "0.1.6" resolved "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz" @@ -12533,10 +12530,15 @@ immer@8.0.1: resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656" integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA== -immer@^9.0.1: - version "9.0.3" - resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.3.tgz#146e2ba8b84d4b1b15378143c2345559915097f4" - integrity sha512-mONgeNSMuyjIe0lkQPa9YhdmTv8P19IeHV0biYhcXhbd5dhdB9HSK93zBpyKjp6wersSUgT5QyU0skmejUVP2A== +immer@^9.0.1, immer@^9.0.6: + version "9.0.6" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.6.tgz#7a96bf2674d06c8143e327cbf73539388ddf1a73" + integrity sha512-G95ivKpy+EvVAnAab4fVa4YGYn24J1SpEktnJX7JJ45Bd7xqME/SCplFzYFmTbrkwZbQ4xJK1xMTUYBkN6pWsQ== + +immutable@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.0.0.tgz#b86f78de6adef3608395efb269a91462797e2c23" + integrity sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw== immutable@~3.7.6: version "3.7.6" @@ -13855,6 +13857,11 @@ joi@^17.3.0: "@sideway/formula" "^3.0.0" "@sideway/pinpoint" "^2.0.0" +jotai@^1.3.7: + version "1.4.0" + resolved "https://registry.yarnpkg.com/jotai/-/jotai-1.4.0.tgz#0f350f65a968dd3ee2f9ad3618a3af635cd10220" + integrity sha512-CUB+A3N+WjtimZvtDnMXvVRognzKh86KB3rKnQlbRvpnmGYU+O9aOZMWSgTaxstXc4Y5GYy02LBEjiv4Rs8MAg== + jpeg-js@0.4.2: version "0.4.2" resolved "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.2.tgz" @@ -14169,15 +14176,7 @@ keccak@^1.0.2: nan "^2.2.1" safe-buffer "^5.1.0" -keccak@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz" - integrity sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA== - dependencies: - node-addon-api "^2.0.0" - node-gyp-build "^4.2.0" - -keccak@^3.0.1: +keccak@^3.0.0, keccak@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/keccak/-/keccak-3.0.2.tgz#4c2c6e8c54e04f2670ee49fa734eb9da152206e0" integrity sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ== @@ -14737,6 +14736,11 @@ make-plural@^6.2.2: resolved "https://registry.npmjs.org/make-plural/-/make-plural-6.2.2.tgz" integrity sha512-8iTuFioatnTTmb/YJjywkVIHLjcwkFD9Ms0JpxjEm9Mo8eQYkh1z+55dwv4yc1jQ8ftVBxWQbihvZL1DfzGGWA== +make-plural@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-7.0.0.tgz#f4c9c5c3334b935788f10815ffbaa55c9b2e8393" + integrity sha512-OTuzMnuhrc7G3LJU5upkhKy7EIAq/dRqANqTUh0B8au7jM5mXq9kVdla3sn3g2GCRIxgooCDQtSJ3s1fAjasbQ== + makeerror@1.0.x: version "1.0.11" resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" @@ -15404,12 +15408,12 @@ node-fetch@2.1.2: resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz" integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U= -node-fetch@2.6.1, node-fetch@^2.6.1: +node-fetch@2.6.1: version "2.6.1" resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz" integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== -node-fetch@2.6.5: +node-fetch@2.6.5, node-fetch@^2.6.1: version "2.6.5" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz#42735537d7f080a7e5f78b6c549b7146be1742fd" integrity sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ== @@ -16403,6 +16407,11 @@ polyfill-object.fromentries@^1.0.1: resolved "https://registry.nlark.com/polyfill-object.fromentries/download/polyfill-object.fromentries-1.0.1.tgz#1a5d89e3777684a852c9b6a6a1d2c3f9c262fc86" integrity sha1-Gl2J43d2hKhSybamodLD+cJi/IY= +popper-max-size-modifier@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/popper-max-size-modifier/-/popper-max-size-modifier-0.2.0.tgz#1574744401296a488b4974909d130a85db94256f" + integrity sha512-UerPt9pZfTFnpSpIBVJrR3ibHMuU1k5K01AyNLfMUWCr4z1MFH+dsayPlAF9ZeYExa02HPiQn5OIMqUSVtJEbg== + portfinder@^1.0.26: version "1.0.28" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" @@ -18272,10 +18281,10 @@ redux-thunk@^2.3.0: resolved "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz" integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw== -redux@^4.0.0, redux@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.1.tgz#76f1c439bb42043f985fbd9bf21990e60bd67f47" - integrity sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw== +redux@^4.0.0, redux@^4.1.0, redux@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.2.tgz#140f35426d99bb4729af760afcf79eaaac407104" + integrity sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw== dependencies: "@babel/runtime" "^7.9.2" @@ -18597,6 +18606,11 @@ require-main-filename@^2.0.0: resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== +requireindex@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.1.0.tgz#e5404b81557ef75db6e49c5a72004893fe03e162" + integrity sha1-5UBLgVV+91225JxacgBIk/4D4WI= + requires-port@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" @@ -19020,6 +19034,15 @@ sass-loader@^10.0.5: schema-utils "^3.0.0" semver "^7.3.2" +sass@^1.45.1: + version "1.45.1" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.45.1.tgz#fa03951f924d1ba5762949567eaf660e608a1ab0" + integrity sha512-pwPRiq29UR0o4X3fiQyCtrESldXvUQAAE0QmcJTpsI4kuHHcLzZ54M1oNBVIXybQv8QF2zfkpFcTxp8ta97dUA== + dependencies: + chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" + sax@>=0.6.0, sax@~1.2.4: version "1.2.4" resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" @@ -19526,6 +19549,11 @@ source-list-map@^2.0.0: resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== +"source-map-js@>=0.6.2 <2.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.1.tgz#a1741c131e3c77d048252adfa24e23b908670caf" + integrity sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA== + source-map-js@^0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e" @@ -20402,10 +20430,10 @@ tiny-glob@^0.2.8: globalyzer "0.1.0" globrex "^0.1.2" -tiny-invariant@^1.0.2, tiny-invariant@^1.0.6, tiny-invariant@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz" - integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== +tiny-invariant@^1.0.2, tiny-invariant@^1.0.6, tiny-invariant@^1.1.0, tiny-invariant@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" + integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== tiny-warning@^1.0.0, tiny-warning@^1.0.3: version "1.0.3" @@ -21064,6 +21092,11 @@ use-sidecar@^1.0.1: detect-node-es "^1.1.0" tslib "^1.9.3" +use-sync-external-store@1.0.0-beta-96ca8d915-20211115: + version "1.0.0-beta-96ca8d915-20211115" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.0.0-beta-96ca8d915-20211115.tgz#80777c497f60b57ca23f52de760ff22080814a3c" + integrity sha512-Xkzd7SoZv29jYc95GO0k1v69oSHUdC+4nNaBQ309zvFFyvzYn+I87ee+OD1RKF8SGRwkEJQxjyFzYRcncdpSSg== + use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" @@ -21575,6 +21608,11 @@ which@^2.0.1, which@^2.0.2: dependencies: isexe "^2.0.0" +wicg-inert@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/wicg-inert/-/wicg-inert-3.1.1.tgz#b033fd4fbfb9e3fd709e5d84becbdf2e06e5c229" + integrity sha512-PhBaNh8ur9Xm4Ggy4umelwNIP6pPP1bv3EaWaKqfb/QNme2rdLjm7wIInvV4WhxVHhzA4Spgw9qNSqWtB/ca2A== + widest-line@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz" @@ -21589,6 +21627,39 @@ widest-line@^3.1.0: dependencies: string-width "^4.0.0" +"widgets-web3-react/core@npm:@web3-react/core@8.0.15-alpha.0": + version "8.0.15-alpha.0" + resolved "https://registry.yarnpkg.com/@web3-react/core/-/core-8.0.15-alpha.0.tgz#2e42b7b980366bdef9aff5978b3352796e71dbe9" + integrity sha512-k6blVwxqXzaVsz1eBV86Zc4RM5iCRhMKtg+bJlvsFrqzHLJZOv7FoC1pnssGE3yDTkRFFzQmHbcMSLlZcAxFjg== + dependencies: + "@web3-react/store" "^8.0.15-alpha.0" + "@web3-react/types" "^8.0.15-alpha.0" + zustand "^4.0.0-beta.0" + +"widgets-web3-react/eip1193@npm:@web3-react/eip1193@8.0.15-alpha.0": + version "8.0.15-alpha.0" + resolved "https://registry.yarnpkg.com/@web3-react/eip1193/-/eip1193-8.0.15-alpha.0.tgz#ee6ea16886bd89d9d68d16577f18911bc37be114" + integrity sha512-bUjXoFWu+6Kqb8TDOYi+GF8ZMfprQHo7H5/doG9txPjbaqlQMRUIgpzhp4qmdzx0x9PFaloa8MumBNXPX9akDg== + dependencies: + "@web3-react/types" "^8.0.15-alpha.0" + +"widgets-web3-react/metamask@npm:@web3-react/metamask@8.0.15-alpha.0": + version "8.0.15-alpha.0" + resolved "https://registry.yarnpkg.com/@web3-react/metamask/-/metamask-8.0.15-alpha.0.tgz#b710c0fb791cc6c4990647f4cebc636df32d84c8" + integrity sha512-NUU0dg39bLUkuRKk99ZJjsi/t4rL0b+H2erzuKm5/rvDDgwM26tBbndUqzGB7d1vz/iJOVtjjUv/dfZQAHhS9g== + dependencies: + "@metamask/detect-provider" "^1.2.0" + "@web3-react/types" "^8.0.15-alpha.0" + +"widgets-web3-react/network@npm:@web3-react/network@8.0.15-alpha.0": + version "8.0.15-alpha.0" + resolved "https://registry.yarnpkg.com/@web3-react/network/-/network-8.0.15-alpha.0.tgz#ad4f5979a0978f8b800151afb6c57637c52150f6" + integrity sha512-ajmyXXd7cZ9wNzuADzvBZHBZXRfeDWQBteq6AN4q9P44AreOzoAVpUB7KzaSdCe8JOt6l3GO4cL1znbF+Jzq6A== + dependencies: + "@ethersproject/experimental" "^5.4.0" + "@ethersproject/providers" "^5.4.5" + "@web3-react/types" "^8.0.15-alpha.0" + word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" @@ -22086,3 +22157,10 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zustand@^4.0.0-beta.0: + version "4.0.0-beta.0" + resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.0.0-beta.0.tgz#880bb21d9308ebc733a2ae07edd7c2c7b4f68eed" + integrity sha512-m7POAHkAeTEQqUdGC9M62/KXSsX6YQu6Gd4CiGZ6FOOTaUp1a0Hm9D8/fnBiMv8rGg0dfZu19JFSbRT9b+qQwA== + dependencies: + use-sync-external-store "1.0.0-beta-96ca8d915-20211115"