From 89575886e75217ae5ccab876761ffbc714ce28f2 Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Fri, 18 Nov 2022 16:17:26 -0800 Subject: [PATCH] build: move crowdin upload/download to release (#306) --- .github/workflows/crowdin-download.yaml | 31 -- .github/workflows/crowdin-upload.yaml | 28 -- .github/workflows/release.yaml | 16 + .gitignore | 3 +- src/locales/af-ZA.po | 415 ------------------------ src/locales/ar-SA.po | 415 ------------------------ src/locales/ca-ES.po | 415 ------------------------ src/locales/cs-CZ.po | 415 ------------------------ src/locales/da-DK.po | 415 ------------------------ src/locales/de-DE.po | 415 ------------------------ src/locales/el-GR.po | 415 ------------------------ src/locales/es-ES.po | 415 ------------------------ src/locales/fi-FI.po | 415 ------------------------ src/locales/fr-FR.po | 415 ------------------------ src/locales/he-IL.po | 415 ------------------------ src/locales/hu-HU.po | 415 ------------------------ src/locales/id-ID.po | 415 ------------------------ src/locales/it-IT.po | 415 ------------------------ src/locales/ja-JP.po | 415 ------------------------ src/locales/ko-KR.po | 415 ------------------------ src/locales/nl-NL.po | 415 ------------------------ src/locales/no-NO.po | 415 ------------------------ src/locales/pl-PL.po | 415 ------------------------ src/locales/pt-BR.po | 415 ------------------------ src/locales/pt-PT.po | 415 ------------------------ src/locales/ro-RO.po | 415 ------------------------ src/locales/ru-RU.po | 415 ------------------------ src/locales/sl-SI.po | 415 ------------------------ src/locales/sr-SP.po | 415 ------------------------ src/locales/sv-SE.po | 415 ------------------------ src/locales/sw-TZ.po | 415 ------------------------ src/locales/th-TH.po | 415 ------------------------ src/locales/tr-TR.po | 415 ------------------------ src/locales/uk-UA.po | 415 ------------------------ src/locales/vi-VN.po | 415 ------------------------ src/locales/zh-CN.po | 415 ------------------------ src/locales/zh-TW.po | 415 ------------------------ 37 files changed, 17 insertions(+), 13756 deletions(-) delete mode 100644 .github/workflows/crowdin-download.yaml delete mode 100644 .github/workflows/crowdin-upload.yaml delete mode 100644 src/locales/af-ZA.po delete mode 100644 src/locales/ar-SA.po delete mode 100644 src/locales/ca-ES.po delete mode 100644 src/locales/cs-CZ.po delete mode 100644 src/locales/da-DK.po delete mode 100644 src/locales/de-DE.po delete mode 100644 src/locales/el-GR.po delete mode 100644 src/locales/es-ES.po delete mode 100644 src/locales/fi-FI.po delete mode 100644 src/locales/fr-FR.po delete mode 100644 src/locales/he-IL.po delete mode 100644 src/locales/hu-HU.po delete mode 100644 src/locales/id-ID.po delete mode 100644 src/locales/it-IT.po delete mode 100644 src/locales/ja-JP.po delete mode 100644 src/locales/ko-KR.po delete mode 100644 src/locales/nl-NL.po delete mode 100644 src/locales/no-NO.po delete mode 100644 src/locales/pl-PL.po delete mode 100644 src/locales/pt-BR.po delete mode 100644 src/locales/pt-PT.po delete mode 100644 src/locales/ro-RO.po delete mode 100644 src/locales/ru-RU.po delete mode 100644 src/locales/sl-SI.po delete mode 100644 src/locales/sr-SP.po delete mode 100644 src/locales/sv-SE.po delete mode 100644 src/locales/sw-TZ.po delete mode 100644 src/locales/th-TH.po delete mode 100644 src/locales/tr-TR.po delete mode 100644 src/locales/uk-UA.po delete mode 100644 src/locales/vi-VN.po delete mode 100644 src/locales/zh-CN.po delete mode 100644 src/locales/zh-TW.po diff --git a/.github/workflows/crowdin-download.yaml b/.github/workflows/crowdin-download.yaml deleted file mode 100644 index 5e08127ee..000000000 --- a/.github/workflows/crowdin-download.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Crowdin Download - -on: - schedule: - - cron: '0 * * * *' # hourly - workflow_dispatch: # manually - -jobs: - download-translations: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/setup - - - run: yarn i18n:extract - - - uses: crowdin/github-action@1.4.8 - with: - upload_sources: false - download_translations: true - create_pull_request: false - localization_branch_name: main - commit_message: "chore(i18n): download translations from crowdin [skip ci]" - source: 'src/locales/en-US.po' - translation: 'src/locales/%locale%.po' - crowdin_branch_name: widgets - token: ${{ secrets.CROWDIN_TOKEN }} - project_id: 458284 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/crowdin-upload.yaml b/.github/workflows/crowdin-upload.yaml deleted file mode 100644 index da05771d0..000000000 --- a/.github/workflows/crowdin-upload.yaml +++ /dev/null @@ -1,28 +0,0 @@ -name: Crowdin Upload - -on: - push: - branches: - - main - -jobs: - upload-sources: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/setup - - - run: yarn i18n:extract - - - uses: crowdin/github-action@1.4.8 - with: - upload_sources: true - download_translations: false - source: 'src/locales/en-US.po' - translation: 'src/locales/%locale%.po' - crowdin_branch_name: widgets - token: ${{ secrets.CROWDIN_TOKEN }} - project_id: 458284 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0d74a6a33..b2ad707e8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,6 +17,22 @@ jobs: - uses: ./.github/actions/setup - run: yarn prepare + - run: yarn i18n:extract + - uses: crowdin/github-action@1.4.8 + with: + upload_sources: true + download_translations: true + create_pull_request: false + push_translations: false + localization_branch_name: main + source: 'src/locales/en-US.po' + translation: 'src/locales/%locale%.po' + crowdin_branch_name: widgets + token: ${{ secrets.CROWDIN_TOKEN }} + project_id: 458284 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - run: yarn test if: success() diff --git a/.gitignore b/.gitignore index 473fe5a47..24c6834a9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,8 +6,7 @@ # generated locales /src/locales/**/*.js -/src/locales/**/en-US.po -/src/locales/**/pseudo.po +/src/locales/**/*.po # dependency management package-lock.json diff --git a/src/locales/af-ZA.po b/src/locales/af-ZA.po deleted file mode 100644 index 117753ef3..000000000 --- a/src/locales/af-ZA.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Aanvaar" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Erken" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Laat toe" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Laat in jou beursie" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Laat eers {symbol} toe" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Toelaag hangende" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Goedkeuring hangende" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Goedkeur" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Keur in jou beursie goed" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Keur eers {symbol} goed" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Outomaties" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Outo-roeteerder" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Naby" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Bevestig in jou beursie" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Bevestig omruiling" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Verbind beursie" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Koppel beursie om te ruil" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Verbind…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Skakel {0} om na {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Ontkoppel beursie" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Verwerp" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Voer 'n bedrag in" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Foutbesonderhede" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Kon nie handel haal nie" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Haal die beste prys…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Hoë prys impak" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Hoë gly" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Hoë glip verhoog die risiko van prysbeweging" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Ek het nie 'n beursie nie" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Onvoldoende likiditeit in die swembad vir jou handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Onvoldoende {0} balans" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Ongeldige ontvanger" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maks" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Maksimum gly" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksimum gestuur" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum ontvang" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Ontbrekings ontbreek" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Netwerk fooi" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Geen resultate gevind." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Geen tokens is op hierdie netwerk beskikbaar nie. Skakel asseblief oor na 'n ander netwerk." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "AF" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "AAN" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Uitset word geskat. Jy sal ten minste {0} {1} ontvang of die transaksie sal terugdraai." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Uitset word geskat. Jy sal hoogstens {0} {1} stuur of die transaksie sal terugdraai." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Voer asseblief 'n geldige glip-% in" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Herlaai asseblief die bladsy en probeer weer." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Aangedryf deur die Uniswap-protokol" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Prys impak" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Prys opgedateer" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Onlangse transaksies" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Herlaai die bladsy" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Stel terug" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Review ruil" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Soek volgens tekennaam of adres" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Kies 'n teken" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Instellings" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Glipverdraagsaamheid" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Iets het verkeerd geloop." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Ruil om" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Ruil bevestig" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Ruil besonderhede uit" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Ruil misluk: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Ruil hangende" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Ruil opsomming" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Skakel oor" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Skakel netwerk" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Skakel netwerk in jou beursie" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Skakel netwerk" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaksie is bevestig" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Transaksiesperdatum" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaksie hangende" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaksie verwerp." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Probeer om jou gliptoleransie te verhoog.<0/>LET WEL: Fooi op oordrag en herbasis-tokens is onversoenbaar met Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Onverwagte fout. Kon nie gas vir die ruil skat nie." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Onverwagte probleem met die skatting van die gas. Probeer asseblief weer." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nie-ondersteunde netwerk - skakel oor na 'n ander om handel te dryf" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Ontwikkel bevestig" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Ontwikkel hangende" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Uitsig op Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Jou transaksie sal terugdraai as dit vir langer as hierdie tydperk hangende was." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minute" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} fooi" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/ar-SA.po b/src/locales/ar-SA.po deleted file mode 100644 index 0eac139c6..000000000 --- a/src/locales/ar-SA.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "قبول" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "يقر" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "السماح" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "السماح في محفظتك" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "اسمح بـ {symbol} أولاً" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "البدل معلق" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "حدث خطأ أثناء محاولة تنفيذ هذا التبادل. قد تحتاج إلى زيادة تحملك للانزلاق. إذا لم يفلح ذلك ، فقد يكون هناك عدم توافق مع الرمز الذي تتداوله. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "في انتظار الموافقة" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "الموافقة" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "الموافقة في محفظتك" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "الموافقة على {symbol} أولاً" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "تلقائي" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "جهاز التوجيه التلقائي" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "الرصيد:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "إغلاق" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "قم بالتأكيد في محفظتك" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "تأكيد المبادلة" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "توصيل بمحفظة" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "قم بتوصيل المحفظة بالمبادلة" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "ربط…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "قم بالتحويل من {0} إلى {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "افصل المحفظة" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "تجاهل" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "أدخل مبلغ" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "تفاصيل الخطأ" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "خطأ في جلب التجارة" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "الحصول على أفضل سعر…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "تأثير سعر مرتفع" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "ارتفاع سعر الانزلاق" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "يزيد الانزلاق العالي من مخاطر حركة السعر" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "ليس لدي محفظة" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "سيولة غير كافية في المجمع لتداولك" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "رصيد {0} غير كاف" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "مستلم غير صالح" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "الحد الأقصى" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "ماكس انزلاق" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "الحد الأقصى المرسل" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "تلقى الحد الأدنى" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "التبعيات المفقودة" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "رسوم الشبكة" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "لا توجد نتائج." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "لا توجد رموز متاحة على هذه الشبكة. يرجى التبديل إلى شبكة أخرى." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "إيقاف" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "على" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "الناتج يقدر. سوف تتلقى {0} {1} على الأقل أو ستعود المعاملة." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "الناتج يقدر. سوف ترسل {0} {1} على الأكثر وإلا ستعود المعاملة." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "الرجاء إدخال انزلاق سعر صالح٪" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "يرجى تحديث الصفحة وحاول مرة أخرى." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "مدعوم من بروتوكول Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "تأثير السعر" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "تم تحديث السعر" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "التحويلات الاخيرة" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "خذ المخاطر. لا شيء يمكن أن يحل محل التجربة" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "إعادة ضبط" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "مراجعة المبادلة" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "البحث عن طريق اسم الرمز أو العنوان" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "حدد الرمز" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "إعدادات" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "تحمل الانزلاق" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "هناك خطأ ما." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "مبادلة" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "تم تأكيد المبادلة" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "تفاصيل المبادلة" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "فشل المبادلة: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "المبادلة معلقة" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "ملخص المبادلة" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "يُحوّل" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "تبديل الشبكة" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "تبديل الشبكة في محفظتك" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "تبديل الشبكة" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "لا يمكن نقل رمز الإدخال. قد تكون هناك مشكلة في رمز الإدخال." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "لا يمكن نقل رمز الإخراج. قد تكون هناك مشكلة في رمز الإخراج." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "لن تنجح هذه الصفقة إما بسبب حركة السعر أو بسبب رسوم التحويل. حاول زيادة تحملك للانزلاق." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "تم تأكيد الصفقة" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "الموعد النهائي للمعاملة" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "المعاملة معلقة" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "الصفقة مرفوضة." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "حاول زيادة تحملك للانزلاق.<0/>ملحوظة: الرسوم المفروضة على رموز النقل وإعادة التسمية غير متوافقة مع Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "خطأ غير متوقع. لا يمكن تقدير الغاز للمبادلة." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "مشكلة غير متوقعة في تقدير الغاز. حاول مرة اخرى." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "شبكة غير مدعومة - قم بالتبديل إلى شبكة أخرى للتداول" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "أكد Unwrap" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "فك التفاف معلق" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "عرض على Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "ستعود معاملتك إذا كانت معلقة لفترة أطول من هذه الفترة الزمنية." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "سيتم عودة معاملتك إذا تغير السعر بشكل غير مؤات بأكثر من هذه النسبة." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "دقائق" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} رسوم" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}م {sec}ثانية" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}ثانية" - diff --git a/src/locales/ca-ES.po b/src/locales/ca-ES.po deleted file mode 100644 index c66857ae4..000000000 --- a/src/locales/ca-ES.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Accepta" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Reconèixer" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permetre" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Permeteu-ho a la vostra cartera" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Primer permeteu {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Subvenció pendent" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Aprovació pendent" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Aprovar" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Aprova a la teva cartera" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Aprova {symbol} primer" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automàtic" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Encaminador automàtic" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Tanca" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Confirmeu a la vostra cartera" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Confirmeu l'intercanvi" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Connecteu la cartera" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Connecteu la cartera per intercanviar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Connexió…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Converteix {0} a {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Desconnecteu la cartera" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Destitueix" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Introduïu un import" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Detalls de l'error" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "S'ha produït un error en recuperar el comerç" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Obtenint el millor preu…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Alt impacte en el preu" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Alt lliscament" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Un gran lliscament augmenta el risc de moviment de preus" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "No tinc cartera" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Liquiditat insuficient al pool per al vostre comerç" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insuficient" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Destinatari no vàlid" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Màx" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Lliscament màxim" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Màxim enviat" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Mínim rebut" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Falten dependències" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Tarifa de la xarxa" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Sense resultats." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "No hi ha cap testimoni disponible en aquesta xarxa. Canvia a una altra xarxa." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "DESACTIVAT" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ACTIVAT" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "La sortida s'estima. Rebràs almenys {0} {1} o la transacció es revertirà." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "La sortida s'estima. Enviareu com a màxim {0} {1} o la transacció es revertirà." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Introduïu un % de lliscament vàlid" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Actualitzeu la pàgina i torneu-ho a provar." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Impulsat pel protocol Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impacte en el preu" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Preu actualitzat" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Transaccions recents" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Torna a carregar la pàgina" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Restableix" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Intercanvi de ressenyes" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Cerca per nom o adreça de testimoni" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Seleccioneu una fitxa" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Configuració" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolerància al lliscament" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Alguna cosa ha anat malament." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Intercanvi" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Canvi confirmat" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Intercanviar detalls" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Ha fallat l'intercanvi: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Canvi pendent" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Resum d'intercanvi" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Interruptor" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Canvia de xarxa" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Canvia de xarxa a la teva cartera" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Xarxa de commutació" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transacció confirmada" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Termini de transacció" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transacció pendent" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "S'ha rebutjat la transacció." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Intenteu augmentar la vostra tolerància al lliscament.<0/>NOTA: La tarifa de les fitxes de transferència i rebase no és compatible amb Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema inesperat en estimar el gas. Siusplau torna-ho a provar." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Xarxa no compatible: canvieu a una altra per operar" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Desembolcall confirmat" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Desembolcall pendent" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Veure a Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "La transacció es revertirà si ha estat pendent durant més d'aquest període de temps." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuts" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} tarifa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/cs-CZ.po b/src/locales/cs-CZ.po deleted file mode 100644 index 76bcf903b..000000000 --- a/src/locales/cs-CZ.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Přijmout" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Potvrdit" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Dovolit" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Povolte v peněžence" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Nejprve povolte {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Čeká se na příspěvek" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Čeká se na schválení" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Schválit" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Schvalujte v peněžence" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Nejprve schválit {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automaticky" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Auto Router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Zůstatek:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Zavřít" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Potvrďte v peněžence" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Potvrďte výměnu" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Připojit peněženku" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Připojte peněženku k výměně" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Připojení…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Převést {0} na {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Odpojit peněženku" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Zamítnout" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Zadejte částku" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Detaily chyby" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Chyba při načítání obchodu" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Načítání nejlepší ceny…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Vysoký cenový dopad" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Vysoký skluz" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Vysoký skluz zvyšuje riziko pohybu cen" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Nemám peněženku" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Nedostatečná likvidita v poolu pro váš obchod" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Nedostatečný zůstatek {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Neplatný příjemce" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Maximální prokluz" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximum odeslané" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum přijato" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Chybějící závislosti" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Síťový poplatek" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nebyly nalezeny žádné výsledky." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "V této síti nejsou k dispozici žádné tokeny. Přepněte na jinou síť." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "VYPNUTO" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ZAPNUTO" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Výkon se odhaduje. Obdržíte alespoň {0} {1} nebo se transakce vrátí zpět." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Výkon se odhaduje. Odešlete maximálně {0} {1} nebo se transakce vrátí zpět." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Zadejte prosím platný skluz %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Obnovte stránku a zkuste to znovu." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Využívá protokol Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Vliv ceny" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Cena aktualizována" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Nedávné transakce" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Znovu načtěte stránku" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Resetovat" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Výměna recenze" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Vyhledávejte podle názvu tokenu nebo adresy" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Vyberte žeton" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Nastavení" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolerance skluzu" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Něco se pokazilo." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Prohodit" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Výměna potvrzena" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Vyměňte si detaily" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Výměna se nezdařila: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Čeká se na výměnu" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Swap shrnutí" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Přepínač" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Přepnout síť" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Přepněte síť v peněžence" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Přepínací síť" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transakce potvrzena" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Lhůta pro transakce" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transakce čeká na vyřízení" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transakce zamítnuta." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Zkuste zvýšit toleranci prokluzu.<0/>POZNÁMKA: Poplatky za převod a rebase tokeny nejsou kompatibilní s Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nepodporovaná síť – přepněte na jinou a obchodujte" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Rozbalení potvrzeno" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Rozbalení čeká na vyřízení" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Pohled na Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Vaše transakce se vrátí zpět, pokud čeká na zpracování déle než toto časové období." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuty" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} poplatek" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/da-DK.po b/src/locales/da-DK.po deleted file mode 100644 index 114f0b0ea..000000000 --- a/src/locales/da-DK.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Accepter" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Anerkende" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Give lov til" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Tillad i din pung" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Tillad {symbol} først" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Godtgørelse afventer" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Godkendelse afventer" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Godkend" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Godkend i din tegnebog" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Godkend {symbol} først" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automatisk" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Auto router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Luk" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Bekræft i din tegnebog" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Bekræft swap" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Forbind tegnebog" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Tilslut tegnebogen for at bytte" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Tilslutning…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Konverter {0} til {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Afbryd tegnebogen" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Afvis" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Indtast et beløb" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Fejldetaljer" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Fejl ved hentning af handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Bedste pris…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Høj prispåvirkning" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Høj glidning" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Høj glidning øger risikoen for prisbevægelser" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Jeg har ikke en pung" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Utilstrækkelig likviditet i puljen til din handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Utilstrækkelig {0} saldo" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Ugyldig modtager" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maks." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Max glidning" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksimum sendt" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum modtaget" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Manglende afhængigheder" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Netværksgebyr" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Ingen resultater fundet." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Ingen tokens er tilgængelige på dette netværk. Skift venligst til et andet netværk." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "FRA" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "TIL" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Output er estimeret. Du modtager mindst {0} {1} , ellers vil transaktionen vende tilbage." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Output er estimeret. Du sender højst {0} {1} , ellers vil transaktionen vende tilbage." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Indtast venligst en gyldig glidning %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Opdater venligst siden og prøv igen." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Drevet af Uniswap-protokollen" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Prispåvirkning" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Pris opdateret" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Seneste transaktioner" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Genindlæs siden" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Nulstil" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Anmeldelsesbytte" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Søg efter symbolnavn eller adresse" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Vælg et token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Indstillinger" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Glidningstolerance" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Noget gik galt." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Byt" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Bytte bekræftet" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Byt detaljer" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Skift mislykkedes: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Swap afventer" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Swap oversigt" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Kontakt" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Skift netværk" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Skift netværk i din tegnebog" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Skifter netværk" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaktionen bekræftet" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Frist for transaktion" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaktion afventer" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaktionen blev afvist." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Prøv at øge din glidningstolerance.<0/>BEMÆRK: Gebyr ved overførsel og rebase-tokens er inkompatible med Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Uforventet fejl. Kunne ikke estimere gas til byttet." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Uventet problem med estimering af gassen. Prøv igen." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Ikke-understøttet netværk - skift til et andet for at handle" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Udpakning bekræftet" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Udpakning afventer" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Se på Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Din transaktion vil vende tilbage, hvis den har været afventende i længere tid end denne periode." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minutter" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} gebyr" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/de-DE.po b/src/locales/de-DE.po deleted file mode 100644 index d0250b068..000000000 --- a/src/locales/de-DE.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Akzeptieren" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Anerkennen" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Erlauben" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Lassen Sie es in Ihrer Brieftasche zu" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Lassen Sie zuerst {symbol} zu" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Genehmigung ausstehend" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Bestätigung ausstehend" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Bestätigen" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Genehmigen Sie in Ihrer Brieftasche" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Genehmigen Sie zuerst {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Autom." - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Automatischer Router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Guthaben:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Schließen" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Bestätigen Sie in Ihrer Brieftasche" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Tausch bestätigen" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Wallet verbinden" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Wallet zum Tausch verbinden" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Wandle {0} in {1}um" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Brieftasche trennen" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Verwerfen" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Betrag eingeben" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Fehlerdetails" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Fehler beim Abrufen des Handels" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Abrufen des besten Preises…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Hohe Preiswirkung" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Hoher Schlupf" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Eine hohe Slippage erhöht das Risiko von Preisbewegungen" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Ich habe keine Brieftasche" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Unzureichende Liquidität im Pool für Ihren Handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Unzureichendes {0} Guthaben" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Ungültiger Empfänger" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Max. Schlupf" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximum gesendet" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum erhalten" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Fehlende Abhängigkeiten" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Netzwerkgebühr" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Keine Ergebnisse gefunden." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "In diesem Netzwerk sind keine Token verfügbar. Bitte wechseln Sie zu einem anderen Netzwerk." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "AUS" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "EIN" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Die Ausgabe wird geschätzt. Sie erhalten mindestens {0} {1} oder die Transaktion wird rückgängig gemacht." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Die Ausgabe wird geschätzt. Sie senden höchstens {0} {1} oder die Transaktion wird rückgängig gemacht." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Bitte geben Sie eine gültige Slippage % ein" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Bitte aktualisieren Sie die Seite und versuchen Sie es erneut." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Unterstützt durch das Uniswap-Protokoll" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Preisauswirkung" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Preis aktualisiert" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Kürzliche Transaktionen" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Seite neu laden" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Zurücksetzen" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Bewertungstausch" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Suche nach Token-Name oder -Adresse" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Token auswählen" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Einstellungen" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Schlupftoleranz" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Etwas ist schief gelaufen." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Tauschen" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Tausch bestätigt" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Swap-Details" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Tausch fehlgeschlagen: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Tausch anstehend" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Swap-Zusammenfassung" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Schalter" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Netzwerk wechseln" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Wechseln Sie das Netzwerk in Ihrer Brieftasche" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Netzwerk wechseln" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaktion bestätigt" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Transaktionsfrist" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaktion ausstehend" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaktion abgelehnt." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Versuchen Sie, Ihre Schlupftoleranz zu erhöhen.<0/>HINWEIS: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nicht unterstütztes Netzwerk - Wechseln Sie zu einem anderen, um zu handeln" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Auspacken bestätigt" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Auspacken steht an" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Auf Etherscan ansehen" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Ihre Transaktion wird rückgängig gemacht, wenn sie länger als dieser Zeitraum aussteht." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "Minuten" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} Gebühr" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/el-GR.po b/src/locales/el-GR.po deleted file mode 100644 index f2c321988..000000000 --- a/src/locales/el-GR.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Αποδοχή" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Αναγνωρίζω" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Επιτρέπω" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Αφήστε το πορτοφόλι σας" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Επιτρέψτε πρώτα το {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Επίδομα σε εκκρεμότητα" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια εκτέλεσης αυτής της ανταλλαγής. Ίσως χρειαστεί να αυξήσετε την ανοχή ολίσθησης. Εάν αυτό δεν λειτουργεί, μπορεί να υπάρχει ασυμβατότητα με το διακριτικό που διαπραγματεύεστε. Σημείωση: τα τέλη μεταφοράς και επαναφοράς δεν είναι συμβατά με το Uniswap V3." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Η έγκριση εκκρεμεί" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Έγκριση" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Έγκριση στο πορτοφόλι σας" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Πρώτα εγκρίνετε το {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Αυτόματο" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Αυτόματος δρομολογητής" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Υπόλοιπο:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Κλείσιμο" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Επιβεβαίωση στο πορτοφόλι σας" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Επιβεβαίωση ανταλλαγής" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Σύνδεση πορτοφολιού" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Συνδέστε το πορτοφόλι για ανταλλαγή" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Σύνδεση…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Μετατροπή {0} σε {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Αποσυνδέστε το πορτοφόλι" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Απόρριψη" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Εισάγετε ένα ποσό" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Λεπτομέρειες σφάλματος" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Σφάλμα κατά την ανάκτηση της συναλλαγής" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Λήψη της καλύτερης τιμής…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Υψηλό αντίκτυπο στην τιμή" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Υψηλή ολίσθηση" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Η υψηλή ολίσθηση αυξάνει τον κίνδυνο μεταβολής των τιμών" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Δεν έχω πορτοφόλι" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Ανεπαρκής ρευστότητα στο pool για τις συναλλαγές σας" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Ανεπαρκές υπόλοιπο {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Μη έγκυρος παραλήπτης" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Μέγιστο" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Μέγιστη ολίσθηση" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Απεστάλη το μέγιστο" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Ελάχιστο λαμβανόμενο" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Λείπουν εξαρτήσεις" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Χρέωση δικτύου" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Δεν βρέθηκαν αποτελέσματα." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Δεν υπάρχουν διαθέσιμα διακριτικά σε αυτό το δίκτυο. Μεταβείτε σε άλλο δίκτυο." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "ΚΛΕΙΣΤΟ" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ΑΝΟΙΚΤΟ" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Εκτιμάται η παραγωγή. Θα λάβετε τουλάχιστον {0} {1} ή η συναλλαγή θα επανέλθει." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Εκτιμάται η παραγωγή. Θα στείλετε το πολύ {0} {1} ή η συναλλαγή θα επανέλθει." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Εισαγάγετε ένα έγκυρο ολίσθημα %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Ανανεώστε τη σελίδα και δοκιμάστε ξανά." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Τροφοδοτείται από το πρωτόκολλο Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Επίπτωση στην τιμή" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Η τιμή ενημερώθηκε" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Πρόσφατες συναλλαγές" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Επαναφόρτωση της σελίδας" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Επαναφορά" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Ανταλλαγή κριτικής" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Αναζήτηση με διακριτικό όνομα ή διεύθυνση" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Επιλέξτε μία μάρκα" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Ανοχή ολίσθησης" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Κάτι πήγε στραβά." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Ανταλλαγή" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Η ανταλλαγή επιβεβαιώθηκε" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Ανταλλαγή λεπτομερειών" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Η ανταλλαγή απέτυχε: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Ανταλλαγή σε εκκρεμότητα" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Περίληψη ανταλλαγής" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Διακόπτης" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Εναλλαγή δικτύου" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Εναλλαγή δικτύου στο πορτοφόλι σας" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Δίκτυο μεταγωγής" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Δεν είναι δυνατή η μεταφορά της μάρκας εισαγωγής. Ενδέχεται να υπάρχει πρόβλημα με τη μάρκα εισαγωγής." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Η μάρκα αποτελέσματος δεν μπορεί να μεταφερθεί. Ενδέχεται να υπάρχει ένα ζήτημα με τη μάρκα αποτελέσματος." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Αυτή η συναλλαγή δεν θα πετύχει είτε λόγω της κίνησης των τιμών είτε της χρέωσης κατά τη μεταφορά. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Η συναλλαγή επιβεβαιώθηκε" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Προθεσμία συναλλαγής" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Συναλλαγή σε εκκρεμότητα" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Η συναλλαγή απορρίφθηκε." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Προσπαθήστε να αυξήσετε την ανοχή ολίσθησης.<0/>ΣΗΜΕΙΩΣΗ: Η χρέωση για τη μεταφορά και τα κουπόνια επαναφοράς δεν είναι συμβατά με το Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Απρόσμενο σφάλμα. Δεν ήταν δυνατή η εκτίμηση αερίου για την ανταλλαγή." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Μη αναμενόμενο πρόβλημα με την εκτίμηση του αερίου. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Μη υποστηριζόμενο δίκτυο - μεταβείτε σε άλλο για συναλλαγές" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Το ξετύλιγμα επιβεβαιώθηκε" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Εκκρεμεί το ξετύλιγμα" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Θέα στο Ethercan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Η συναλλαγή σας θα επανέλθει εάν εκκρεμεί για περισσότερο από αυτό το χρονικό διάστημα." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Η συναλλαγή σας θα επανέλθει αν η τιμή αλλάξει δυσμενώς περισσότερο από αυτό το ποσοστό." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "λεπτά" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} αμοιβή" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}δευτ" - diff --git a/src/locales/es-ES.po b/src/locales/es-ES.po deleted file mode 100644 index 5bd1efcbd..000000000 --- a/src/locales/es-ES.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Aceptar" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Reconocer" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permitir" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Permitir en su billetera" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Permitir {symbol} primero" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Asignación pendiente" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Aprobación pendiente" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Aprobar" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Aprueba en tu billetera" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Aprobar {symbol} primero" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Enrutador automático" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Cerrar" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Confirma en tu billetera" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Confirmar intercambio" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Conectar cartera" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Conectar monedero para intercambiar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Conectando…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Convertir {0} a {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Desconectar billetera" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Descartar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Introduzca un monto" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Error de detalles" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Error al obtener comercio" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Buscando el mejor precio…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Alto impacto de precio" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Alto deslizamiento" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Un alto deslizamiento aumenta el riesgo de movimiento de precios" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "no tengo billetera" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Liquidez insuficiente en el grupo para su operación" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insuficiente" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Receptor no válido" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Máx" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Deslizamiento máximo" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Máximo enviado" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Mínimo recibido" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependencias faltantes" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Tarifa de red" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "No se han encontrado resultados." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "No hay tokens disponibles en esta red. Cambia a otra red." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "APAGADO" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ENCENDIDO" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "La producción es estimada. Recibirá al menos {0} {1} o la transacción se revertirá." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "La producción es estimada. Enviarás como máximo {0} {1} o la transacción se revertirá." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Introduzca un porcentaje de deslizamiento válido" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Actualice la página y vuelva a intentarlo." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Desarrollado por el protocolo Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impacto en el precio" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Precio actualizado" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Transacciones Recientes" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "recargar la pagina" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Reiniciar" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Intercambio de opiniones" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Buscar por nombre de token o dirección" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Seleccione un token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Ajustes" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolerancia de deslizamiento" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Algo salió mal." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Intercambiar" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Intercambio confirmado" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Intercambiar detalles" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Error de intercambio: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Intercambio pendiente" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Resumen de intercambio" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Cambiar" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "cambiar de red" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Cambie de red en su billetera" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Red de conmutación" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transacción confirmada" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Fecha límite de la transacción" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transacción pendiente" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transacción rechazada." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Intente aumentar su tolerancia al deslizamiento.<0/>NOTA: La tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Red no admitida: cambie a otra para comerciar" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Desenvolver confirmado" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Desenvolver pendiente" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Ver en Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Su transacción se revertirá si ha estado pendiente durante más tiempo que este período de tiempo." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minutos" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} tarifa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}" - diff --git a/src/locales/fi-FI.po b/src/locales/fi-FI.po deleted file mode 100644 index d3dddde3d..000000000 --- a/src/locales/fi-FI.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Hyväksy" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Tunnustaa" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Sallia" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Salli lompakossasi" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Salli ensin {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Korvaus vireillä" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Hyväksyntä odottaa" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Hyväksy" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Hyväksy lompakossasi" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Hyväksy ensin {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automaattinen" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Automaattinen reititin" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Sulje" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Vahvista lompakossasi" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Vahvista vaihto" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Yhdistä lompakko" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Yhdistä lompakko vaihtaaksesi" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Yhdistäminen…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Muunna {0} {1}:ksi" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Irrota lompakko" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Sulje" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Syötä summa" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Virheen tiedot" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Virhe kauppaa haettaessa" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Haetaan paras hinta…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Korkea hintavaikutus" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Korkea luisto" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Suuri lipsahdus lisää hintojen liikkeiden riskiä" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Minulla ei ole lompakkoa" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Poolissa ei ole tarpeeksi likviditeettiä kauppaasi varten" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Riittämätön {0} saldo" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Virheellinen vastaanottaja" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maksimi" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Max liukuminen" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksimimäärä lähetetty" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimi vastaanotettu" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Puuttuvat riippuvuudet" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Verkkomaksu" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Tuloksia ei löytynyt." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Tunnuksia ei ole saatavilla tässä verkossa. Vaihda toiseen verkkoon." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Tuotos on arvioitu. Saat vähintään {0} {1} tai tapahtuma palautuu." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Tuotos on arvioitu. Lähetät enintään {0} {1} tai tapahtuma palautuu." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Anna kelvollinen lipsuma %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Päivitä sivu ja yritä uudelleen." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Toimii Uniswap-protokollalla" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Hintavaikutus" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Hinta päivitetty" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Viimeaikaiset tapahtumat" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Lataa sivu uudelleen" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Nollaa" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Arvostelun vaihto" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Hae tunnusnimellä tai osoitteella" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Valitse rahake" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "asetukset" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Luistonsieto" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Jotain meni pieleen." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Vaihda" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Vaihto varmistettu" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Vaihda tiedot" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Vaihto epäonnistui: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Vaihto vireillä" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Yhteenveto vaihdosta" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Vaihtaa" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Vaihda verkkoa" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Vaihda verkkoa lompakossasi" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Vaihto verkkoa" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Kauppa vahvistettu" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Tapahtuman määräaika" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Tapahtuma vireillä" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Tapahtuma hylätty." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Yritä lisätä liukastumistoleranssiasi.<0/>HUOMAA: Siirtomaksu ja uudelleenperustamistunnukset eivät ole yhteensopivia Uniswap V3:n kanssa." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Odottamaton virhe. Vaihdon kaasua ei voitu arvioida." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Odottamaton ongelma kaasun arvioinnissa. Yritä uudelleen." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Ei tuettu verkko - vaihda toiseen kauppaa varten" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Purkaminen vahvistettu" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Purkaminen odottaa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Näkymä Etherscanissa" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Tapahtumasi palautetaan, jos se on ollut vireillä tätä pidemmän ajan." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuuttia" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} maksu" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/fr-FR.po b/src/locales/fr-FR.po deleted file mode 100644 index 9e65ee41d..000000000 --- a/src/locales/fr-FR.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Accepter" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Accuser réception" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permettre" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Autoriser dans votre portefeuille" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Autoriser {symbol} en premier" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Allocation en attente" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "En attente d'approbation" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Approuver" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Approuvez dans votre portefeuille" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Approuver {symbol} en premier" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automatique" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Routeur automatique" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Solde :" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Fermer" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Confirmez dans votre portefeuille" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Confirmer l'échange" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Connecter le portefeuille" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Connectez le portefeuille pour échanger" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Connexion…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Convertir {0} en {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Déconnecter le portefeuille" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Refuser" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Saisissez un montant" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Détails de l'erreur" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Erreur lors de la récupération de l'échange" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Recherche du meilleur prix…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Impact prix élevé" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Glissement élevé" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Un glissement élevé augmente le risque de mouvement des prix" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "je n'ai pas de portefeuille" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Liquidité insuffisante dans le pool pour votre transaction" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Solde {0} insuffisant" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Destinataire invalide" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Glissement maximum" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximum envoyé" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum reçu" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dépendances manquantes" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Frais de réseau" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Aucun résultat trouvé." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Aucun jeton n'est disponible sur ce réseau. Veuillez passer à un autre réseau." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "DÉSACTIVÉ" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "AU" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "La production est estimée. Vous recevrez au moins {0} {1} ou la transaction sera annulée." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "La production est estimée. Vous enverrez au plus {0} {1} ou la transaction sera annulée." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Veuillez saisir un pourcentage de glissement valide" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Veuillez actualiser la page et réessayer." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Propulsé par le protocole Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impact sur les prix" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Prix mis à jour" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Transactions récentes" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Recharge la page" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Réinitialiser" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Échange d'avis" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Recherche par nom de jeton ou adresse" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Sélectionnez un jeton" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Réglages" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolérance du slippage" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Quelque chose s'est mal passé." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Échanger" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Échange confirmé" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Détails de l'échange" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Échec de l'échange : {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Échange en attente" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Résumé de l'échange" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Changer" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Changer de réseau" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Changez de réseau dans votre portefeuille" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Réseau de commutation" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaction confirmée" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Date limite de la transaction" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaction en attente" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaction rejetée." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Essayez d'augmenter votre tolérance au glissement.<0/>REMARQUE : les frais de transfert et de rebase tokens sont incompatibles avec Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Erreur inattendue. Impossible d'estimer le gaz pour l'échange." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problème inattendu avec l'estimation du gaz. Veuillez réessayer." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Réseau non pris en charge - passez à un autre pour échanger" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Déballage confirmé" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Déballer en attente" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Voir sur Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Votre transaction sera annulée si elle est en attente depuis plus longtemps que cette période." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minutes" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} frais" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/he-IL.po b/src/locales/he-IL.po deleted file mode 100644 index 19c117401..000000000 --- a/src/locales/he-IL.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "לְקַבֵּל" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "לְהוֹדוֹת" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "להתיר" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "אפשר בארנק שלך" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "אפשר קודם {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "קצבה בהמתנה" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "אירעה שגיאה בניסיון לבצע החלפה זו. יתכן שתצטרך להגביר את סובלנות ההחלקה שלך. אם זה לא עובד, ייתכן שיש אי התאמה לאסימון שאתה סוחר בו. הערה: עמלה על אסימון העברה וריבוס אינם תואמים ל- Uniswap V3." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "מחכה לאישור" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "לְאַשֵׁר" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "אשר בארנק שלך" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "תחילה תאשר {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "אוטומטי" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "נתב אוטומטי" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "מאזן:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "סגור" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "אשר בארנק שלך" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "אשר את ההחלפה" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "חבר ארנק" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "חבר ארנק כדי להחליף" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "חיבור…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "המר {0} ל {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "נתק את הארנק" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "לשחרר" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "הזן סכום" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "פרטי שגיאה" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "שגיאה בשליפת המסחר" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "משיג את המחיר הטוב ביותר…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "השפעה גבוהה על המחיר" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "החלקה גבוהה" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "החלקה גבוהה מגבירה את הסיכון לתנועת מחירים" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "אין לי ארנק" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "אין מספיק נזילות במאגר למסחר שלך" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "איזון {0} לא מספיק" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "נמען לא חוקי" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "מקסימום" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "מקסימום החלקה" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "מקסימום נשלח" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "מינימום שהתקבל" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "חסרות תלות" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "עמלת רשת" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "לא נמצאו תוצאות." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "אין אסימונים זמינים ברשת זו. נא לעבור לרשת אחרת." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "כבוי" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "דלוק" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "התפוקה מוערכת. תקבל לפחות {0} {1} או שהעסקה תחזור." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "התפוקה מוערכת. אתה תשלח לכל היותר {0} {1} או שהעסקה תחזור." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "אנא הזן % החלקה חוקית" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "אנא רענן את הדף ונסה שוב." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "מופעל על ידי פרוטוקול Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "השפעה על המחיר" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "המחיר עודכן" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "תנועות אחרונות" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "טען מחדש את הדף" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "אִתחוּל" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "סקירת החלפה" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "חפש לפי שם או כתובת אסימון" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "בחר אסימון" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "הגדרות" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "סובלנות להחלקה" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "משהו השתבש." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "לְהַחלִיף" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "ההחלפה אושרה" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "החלף פרטים" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "החלפה נכשלה: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "ההחלפה בהמתנה" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "סיכום החלפה" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "החלף" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "החלף רשת" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "החלף רשת בארנק" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "החלפת רשת" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "לא ניתן להעביר את אסימון הקלט. יכול להיות שיש בעיה באסימון הקלט." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "לא ניתן להעביר את אסימון הפלט. ייתכן שיש בעיה באסימון הפלט." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "עסקה זו לא תצליח גם בגלל תנועת מחירים או עמלה על העברה. נסה להגביר את סובלנות ההחלקה שלך." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "העסקה אושרה" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "מועד אחרון לעסקה" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "העסקה בהמתנה" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "העסקה נדחתה." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "נסה להגדיל את סובלנות ההחלקה שלך.<0/>הערה: עמלה על העברה ואסימוני בסיס מחדש אינם תואמים ל-Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "שגיאה לא צפויה. לא ניתן היה לאמוד גז להחלפה." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "בעיה בלתי צפויה בהערכת הגז. בבקשה נסה שוב." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "רשת לא נתמכת - עבור לרשת אחרת כדי לסחור" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "אישור ביטול הגלישה" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "ביטול הגלישה בהמתנה" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "מבט על אתרסקאן" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "העסקה שלך תחזור אם היא הייתה בהמתנה במשך יותר מתקופת זמן זו." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "העסקה שלך תחזור אם המחיר ישתנה בצורה לא טובה ביותר מאחוז זה." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "דקות" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} עמלה" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}מ' {sec}שניות" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}ש'" - diff --git a/src/locales/hu-HU.po b/src/locales/hu-HU.po deleted file mode 100644 index 2fb0cff9b..000000000 --- a/src/locales/hu-HU.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Elfogadás" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "elismerni" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Lehetővé teszi" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Engedd be a pénztárcádba" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Először engedélyezze a {symbol} -t" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "A juttatás függőben van" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Kérelem folyamatban" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Jóváhagyás" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Jóváhagyja a pénztárcájában" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Először hagyja jóvá a {symbol} -t" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Auto Router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Egyenleg:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Bezárás" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Erősítse meg pénztárcájában" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Erősítse meg a cserét" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Pénztárca csatlakoztatása" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Csatlakoztassa a pénztárcát a cseréhez" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Csatlakozás…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Konvertálja {0} -t {1}-re" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Válassza le a pénztárcát" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Elvetés" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Adjon meg egy összeget" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Hiba részletei" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Hiba történt a kereskedés lekérésekor" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "A legjobb ár lekérése…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Magas árhatás" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Magas csúszás" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "A nagy csúszás növeli az ármozgások kockázatát" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Nincs pénztárcám" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Nincs elegendő likviditás a poolban a kereskedéshez" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Elégtelen {0} egyenleg" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Érvénytelen címzett" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Max csúszás" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximum elküldve" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum beérkezett" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Hiányzó függőségek" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Hálózati díj" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nincs találat." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Ezen a hálózaton nem érhetők el tokenek. Kérjük, váltson másik hálózatra." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "KI" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "BE" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "A kimenet becsült. Legalább {0} {1} -et fog kapni, különben a tranzakció visszaáll." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "A kimenet becsült. Legfeljebb {0} {1} -et küld, vagy a tranzakció visszaáll." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Kérjük, adjon meg egy érvényes csúszást %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Kérjük, frissítse az oldalt, és próbálja újra." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Az Uniswap protokoll működteti" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Árhatás" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Ár frissítve" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Legutóbbi tranzakciók" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Töltse be újra az oldalt" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Visszaállítás" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Véleménycsere" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Keresés token név vagy cím alapján" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Token választása" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Beállítások" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Csúszási tolerancia" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Valami elromlott." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Swap" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "A csere megerősítve" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Cserélje ki a részleteket" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "A csere nem sikerült: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Csere függőben" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Csere összefoglaló" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Kapcsoló" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Hálózat váltása" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Váltson hálózatot a pénztárcájában" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Hálózat váltása" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Az ügylet megerősítve" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Tranzakció határideje" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Tranzakció függőben" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "A tranzakció elutasítva." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Próbálja meg növelni a csúszástűrő képességét.<0/>MEGJEGYZÉS: Az átviteli díj és az újraalapozási tokenek nem kompatibilisek az Uniswap V3-mal." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nem támogatott hálózat – váltson másikra a kereskedéshez" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Kibontás megerősítve" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Felbontás függőben" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Nézd meg az Etherscan webhelyen" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "A tranzakció visszaáll, ha az ennél hosszabb ideig függőben van." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "perc" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} díj" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/id-ID.po b/src/locales/id-ID.po deleted file mode 100644 index fb34bc627..000000000 --- a/src/locales/id-ID.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Setuju" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Mengakui" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Izinkan" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Biarkan di dompet Anda" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Izinkan {symbol} dulu" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Tunjangan tertunda" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Persetujuan Tertunda" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Setujui" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Setujui di dompet Anda" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Setujui {symbol} dulu" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Otomatis" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Router Otomatis" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Tutup" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Konfirmasi di dompet Anda" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Konfirmasi pertukaran" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Hubungkan dompet" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Hubungkan dompet untuk bertukar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Menghubungkan…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Ubah {0} menjadi {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Putuskan sambungan dompet" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Buang" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Masukkan jumlah" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Rincian kesalahan" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Terjadi kesalahan saat mengambil perdagangan" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Mengambil harga terbaik…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Dampak harga tinggi" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Slip tinggi" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Slippage tinggi meningkatkan risiko pergerakan harga" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Saya belum punya dompet" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Likuiditas tidak mencukupi di kumpulan untuk perdagangan Anda" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} tidak cukup" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Penerima tidak valid" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "selip maksimum" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksimum dikirim" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum diterima" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Ketergantungan yang hilang" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Biaya jaringan" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Hasil tidak ditemukan." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Tidak ada token yang tersedia di jaringan ini. Silakan beralih ke jaringan lain." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "MATI" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "HIDUP" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Keluaran diperkirakan. Anda akan menerima setidaknya {0} {1} atau transaksi akan dibatalkan." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Keluaran diperkirakan. Anda akan mengirimkan paling banyak {0} {1} atau transaksi akan kembali." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Harap masukkan % slippage yang valid" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Segarkan halaman dan coba lagi." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Didukung oleh protokol Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Dampak harga" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Harga diperbarui" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Transaksi terkini" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Muat ulang halaman" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Mengatur ulang" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Tukar ulasan" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Cari berdasarkan nama token atau alamat" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Pilih token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Setelan" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Toleransi slip" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Ada yang salah." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Tukar" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Pertukaran dikonfirmasi" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Pertukaran detail" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Tukar gagal: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Tukar tertunda" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Pertukaran ringkasan" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Mengalihkan" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Beralih jaringan" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Beralih jaringan di dompet Anda" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Beralih jaringan" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaksi dikonfirmasi" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Batas waktu transaksi" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaksi tertunda" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaksi ditolak." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Coba tingkatkan toleransi selip Anda.<0/>CATATAN: Biaya transfer dan token rebase tidak sesuai dengan Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Kesalahan yang tidak diduga. Tidak dapat memperkirakan gas untuk swap." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Masalah tak terduga dengan memperkirakan gas. Silakan coba lagi." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Jaringan tidak didukung - beralih ke yang lain untuk berdagang" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Buka bungkus dikonfirmasi" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Buka bungkus tertunda" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Lihat di Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Transaksi Anda akan dikembalikan jika telah tertunda lebih lama dari periode waktu ini." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "menit" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} biaya" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}detik" - diff --git a/src/locales/it-IT.po b/src/locales/it-IT.po deleted file mode 100644 index 1d487c864..000000000 --- a/src/locales/it-IT.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Accetta" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Riconoscere" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permettere" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Consenti nel tuo portafoglio" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Consenti prima {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Indennità in attesa" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "In attesa di approvazione" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Approva" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Approva nel tuo portafoglio" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Approva prima {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automatico" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Router automatico" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Chiudi" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Conferma nel tuo portafoglio" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Conferma lo scambio" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Collega portafoglio" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Collega il portafoglio per scambiare" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Collegamento…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Converti {0} in {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Scollega il portafoglio" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Ignora" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Inserisci un importo" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Dettagli circa l'errore" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Errore durante il recupero dell'operazione" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Recupero miglior prezzo…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Elevato impatto sui prezzi" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Elevato slittamento" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Un elevato slippage aumenta il rischio di oscillazione dei prezzi" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Non ho un portafoglio" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Liquidità insufficiente nel pool per il tuo trade" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insufficiente" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Destinatario non valido" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Massimo slittamento" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Massimo inviato" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimo ricevuto" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dipendenze mancanti" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Tariffa di rete" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nessun risultato trovato." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Nessun token è disponibile su questa rete. Si prega di passare a un'altra rete." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "La produzione è stimata. Riceverai almeno {0} {1} o la transazione verrà annullata." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "La produzione è stimata. Invierai al massimo {0} {1} o la transazione verrà annullata." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Si prega di inserire uno slippage % valido" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Perfavore ricarica la pagina e riprova." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Alimentato dal protocollo Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impatto sui prezzi" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Prezzo aggiornato" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Le transazioni recenti" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Ricarica la pagina" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Ripristina" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Scambio di recensioni" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Cerca per nome o indirizzo del token" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Seleziona un token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Impostazioni" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolleranza allo slittamento" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Qualcosa è andato storto." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Scambia" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Scambio confermato" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Scambia i dettagli" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Scambio fallito: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Scambio in attesa" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Riepilogo scambio" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Interruttore" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Cambia rete" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Cambia rete nel tuo portafoglio" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Cambio di rete" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transazione confermata" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Termine transazione" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transazione in sospeso" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transazione rifiutata." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Prova ad aumentare la tua tolleranza allo slippage.<0/>NOTA: le commissioni sui token di trasferimento e rebase non sono compatibili con Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Errore inaspettato. Impossibile stimare il gas per lo scambio." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Problema imprevisto con la stima del gas. Per favore riprova." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Rete non supportata: passa a un'altra per fare trading" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Scarto confermato" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Scartare in attesa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Visualizza su Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "La transazione verrà ripristinata se è rimasta in sospeso per più di questo periodo di tempo." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuti" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} canone" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}sec" - diff --git a/src/locales/ja-JP.po b/src/locales/ja-JP.po deleted file mode 100644 index 913358207..000000000 --- a/src/locales/ja-JP.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "同意する" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "認めます" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "許可する" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "ウォレットで許可する" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "最初に {symbol} を許可" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "保留中の手当" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "スワップ実行時にエラーが発生しました。スリッページの許容範囲を広げる必要がある可能性があります。それでも上手くいかない場合、取引しているトークンとの互換性がない可能性があります。注:転送時に手数料が発生するトークンおよびリベースするトークンは、UniswapV3と互換性がありません。" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "承認待ち" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "承認" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "ウォレットで承認する" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "最初に {symbol} を承認" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "自動" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "自動ルーター" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "残高:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "閉じる" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "ウォレットで確認する" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "スワップを確認する" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "ウォレットに接続" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "ウォレットを接続してスワップする" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "接続中…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "{0} を {1}に変換" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "ウォレットを切断する" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "注文を取り下げる" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "数量を入力してください" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "エラーの詳細" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "取引の取得中にエラーが発生しました" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "ベストな価格を取得中…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "価格への影響が大きい" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "高いスリッページ" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "高いスリッページは価格変動のリスクを高めます" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "財布を持っていません" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "流動性が不足しているため、取引できません。" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "{0} の残高が足りません" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "受け取りアドレスが無効です" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "最大" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "最大スリッページ" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "最大売却数" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "最小購入数" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "依存関係がありません" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "ネットワーク料金" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "結果が見つかりませんでした。" - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "このネットワークではトークンは利用できません。別のネットワークに切り替えてください。" - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "取引結果は概算です。{0} {1} 以上を買えない場合は、取引は差し戻されます。" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "出力は推定されます。最大 {0} {1} を送信するか、トランザクションが元に戻ります。" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "有効なスリッページ%を入力してください" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "ページを更新して、もう一度お試しください。" - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Uniswapプロトコルによって提供" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "価格への影響" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "価格が更新されました" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "最近の取引" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "ページを再読み込みする" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "リセット" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "スワップを確認する" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "トークン名またはアドレスで検索" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "トークン選択" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "設定" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "スリッページの許容範囲" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "問題が発生しました。" - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "スワップ" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "スワップが確認されました" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "スワップの詳細" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "スワップに失敗しました: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "スワップ保留中" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "スワップの概要" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "切り替え" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "ネットワークを切り替える" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "ウォレット内のネットワークを切り替える" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "スイッチング ネットワーク" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "売るトークンが転送できません。売るトークンに問題がある可能性があります。" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "購入するトークンを転送できません。購入するトークンに問題がある可能性があります。" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "この取引は、価格変動または転送時に手数料が発生するため、成功しません。スリッページの許容範囲を広げてみてください。" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "取引が確認されました" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "取引期限" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "保留中の取引" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "取引が拒否されました" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "スリッページの許容範囲を広げてみてください。<0/>注:転送時に手数料が発生するトークンおよびリベースするトークンは、UniswapV3と互換性がありません。" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "予期しないエラー。スワップのガスを見積もることができませんでした。" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "ガスの見積もりに関する予期しない問題。もう一度やり直してください。" - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "サポートされていないネットワーク-別のネットワークに切り替えて取引する" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "開封確認済み" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "保留中のアンラップ" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Etherscanで見る" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "この期間より長く保留されている場合、トランザクションは元に戻ります。" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "価格が設定したパーセンテージよりも不利な価格に変動した場合、取引は差し戻されます。" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "分" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} 手数料" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}分 {sec}秒" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}秒" - diff --git a/src/locales/ko-KR.po b/src/locales/ko-KR.po deleted file mode 100644 index be97e42de..000000000 --- a/src/locales/ko-KR.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "수락" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "인정하다" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "허용하다" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "지갑에서 허용" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "먼저 {symbol} 허용" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "수당 보류" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "교환을 실행하는 중에 오류가 발생했습니다. 가격변동 허용치를 높여야 할 수도 있습니다. 그래도 작동하지 않으면 교환중인 토큰이 Uniswap과 호환되지 않는 것일 수 있습니다. 참고: 전송 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "승인 대기 중" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "승인" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "지갑에서 승인" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "{symbol} 먼저 승인" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "자동" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "자동 라우터" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "잔액:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "닫기" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "지갑에서 확인" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "스왑 확인" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "지갑 연결" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "교환에 지갑 연결" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "연결…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "{0} 을 {1}로 변환" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "지갑 연결 해제" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "해제" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "금액을 입력하세요." - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "오류 상세" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "거래를 가져오는 중에 오류가 발생했습니다." - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "최적 가격을 가져오는 중…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "높은 가격 영향" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "높은 미끄러짐" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "높은 미끄러짐은 가격 변동의 위험을 증가시킵니다." - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "지갑이 없어요" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "거래를 위한 풀의 유동성 부족" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "부족한 {0} 잔액" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "잘못된 수령인" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "최대" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "최대 가격 변동" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "최대 이체" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "최소 수령됨" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "누락된 종속성" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "네트워크 요금" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "결과가 없습니다." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "이 네트워크에서 사용할 수 있는 토큰이 없습니다. 다른 네트워크로 전환하십시오." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "OFF" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ON" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "출력이 예상됩니다. 당신은 적어도 {0} {1} 을 받게 될 것입니다. 그렇지 않으면 거래가 되돌릴 것입니다." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "출력이 예상됩니다. 최대 {0} {1} 을 보내지 않으면 거래가 취소됩니다." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "유효한 미끄러짐 %를 입력하십시오" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "페이지를 새로고침하고 다시 시도하십시오." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Uniswap 프로토콜 기반" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "가격 영향" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "가격 업데이트됨" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "최근 거래" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "페이지 새로고침" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "초기화" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "스왑 검토" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "토큰 이름 또는 주소로 검색" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "토큰 선택" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "설정" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "슬리피지 허용 오차" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "문제가 발생했습니다." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "스왑" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "스왑 확인됨" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "세부정보 교환" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "스왑 실패: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "스왑 보류" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "스왑 요약" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "스위치" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "네트워크 전환" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "지갑에서 네트워크 전환" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "스위칭 네트워크" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "입력 토큰을 이체할 수 없습니다. 입력 토큰에 문제가 있을 수 있습니다." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "산출 토큰을 이체할 수 없습니다. 산출 토큰에 문제가 있을 수 있습니다." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "이 거래는 가격 변동이나 이체 수수료로 인해 성공하지 못합니다. 슬리피지 허용치를 높이십시오." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "거래 확인됨" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "거래 마감 시간" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "거래 보류 중" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "거래가 거부되었습니다." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "미끄러짐 내성을 높이십시오.<0/>참고: 이전 및 리베이스 토큰 수수료는 Uniswap V3와 호환되지 않습니다." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "예기치 않은 오류. 스왑을 위한 가스를 추정할 수 없습니다." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "가스 추정에 예상치 못한 문제가 있습니다. 다시 시도해 주세요." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "지원되지 않는 네트워크 - 거래를 위해 다른 네트워크로 전환" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "포장 풀기 확인" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "언래핑 보류" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Etherscan에서보기" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "이 기간보다 오랫동안 보류 중인 거래는 되돌려집니다." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "가격이 이 요율 이상으로 불리하게 변경되면 거래가 취소됩니다." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "분" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "수수료 {integrator}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}의" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}초" - diff --git a/src/locales/nl-NL.po b/src/locales/nl-NL.po deleted file mode 100644 index 8c098145a..000000000 --- a/src/locales/nl-NL.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Accepteren" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Erkennen" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Toestaan" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Toestaan in je portemonnee" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Sta eerst {symbol} toe" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Toelage in behandeling" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "In afwachting van goedkeuring" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Goedkeuren" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Goedkeuren in uw portemonnee" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Eerst {symbol} goedkeuren" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automatisch" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Automatische router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Sluiten" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Bevestig in je portemonnee" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Wisselen bevestigen" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Verbind portemonnee" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Portemonnee koppelen om te ruilen" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "…. aansluiten" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Converteren {0} naar {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Portemonnee ontkoppelen" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Afwijzen" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Voer een bedrag in" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Fout details" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Fout bij ophalen van handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Beste prijs ophalen…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Hoge prijsimpact" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Hoge slip" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Hoge slippen verhoogt het risico van prijsbewegingen" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Ik heb geen portemonnee" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Onvoldoende liquiditeit in de pool voor uw transactie" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Onvoldoende saldo {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Ongeldige ontvanger" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Max." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Max slippen" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximaal verzonden" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum ontvangen" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Ontbrekende afhankelijkheden" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Netwerkkosten" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Geen resultaten gevonden." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Er zijn geen tokens beschikbaar op dit netwerk. Schakel over naar een ander netwerk." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "UIT" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "AAN" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "De output wordt geschat. U ontvangt minimaal {0} {1} of de transactie wordt teruggedraaid." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "De output wordt geschat. U stuurt maximaal {0} {1} of de transactie wordt teruggedraaid." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Vul a.u.b. een geldig slippage % in" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Ververs de pagina en probeer het opnieuw." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Aangedreven door het Uniswap-protocol" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Prijsimpact" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Prijs bijgewerkt" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Recente transacties" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Herlaad de pagina" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Resetten" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Review swap" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Zoeken op tokennaam of adres" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Selecteer een token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Instellingen" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Slippage tolerantie" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Er is iets fout gegaan." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Wisselen" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Ruil bevestigd" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Ruil details" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Wissel mislukt: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Ruil in behandeling" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Overzicht omwisselen" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Schakelaar" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Van netwerk wisselen" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Wissel van netwerk in je portemonnee" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Wisselend netwerk" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transactie bevestigd" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Transactiedeadline" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transactie in behandeling" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transactie afgewezen." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Probeer uw sliptolerantie te vergroten.<0/>OPMERKING: Kosten voor overdracht en rebase-tokens zijn niet compatibel met Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Onverwachte fout. Kon het gas voor de swap niet schatten." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Onverwacht probleem met het schatten van het gas. Probeer het opnieuw." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Niet-ondersteund netwerk - schakel over naar een ander om te ruilen" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Uitpakken bevestigd" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "In behandeling uitpakken" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Bekijk op Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Uw transactie wordt teruggedraaid als deze langer dan deze periode in behandeling is geweest." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuten" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} kosten" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/no-NO.po b/src/locales/no-NO.po deleted file mode 100644 index f614a6da7..000000000 --- a/src/locales/no-NO.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Godta" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Anerkjenne" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Tillate" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Tillat i lommeboken" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Tillat {symbol} først" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Godtgjørelse venter" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Venter på godkjenning" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Godkjenn" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Godkjenne i lommeboken" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Godkjenn {symbol} først" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Auto-ruter" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Lukk" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Bekreft i lommeboken" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Bekreft bytte" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Koble til lommebok" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Koble til lommebok for å bytte" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Kobler til…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Konverter {0} til {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Koble fra lommeboken" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Avvis" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Oppgi et beløp" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Feilmeldingsdetaljer" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Feil under henting av handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Får best pris…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Høy prispåvirkning" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Høy utglidning" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Høy glidning øker risikoen for prisbevegelser" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Jeg har ikke lommebok" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Utilstrekkelig likviditet i bassenget for handelen din" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Utilstrekkelig {0} saldo" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Ugyldig mottaker" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maks" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Maks glidning" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksimum sendt" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum mottatt" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Mangler avhengigheter" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Nettverksavgift" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Ingen resultater." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Ingen tokens er tilgjengelig på dette nettverket. Vennligst bytt til et annet nettverk." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "AV" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "PÅ" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Utgang er estimert. Du vil motta minst {0} {1} eller transaksjonen går tilbake." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Utgang er estimert. Du sender maksimalt {0} {1} eller transaksjonen går tilbake." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Vennligst skriv inn en gyldig slip %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Oppdater siden og prøv igjen." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Drevet av Uniswap-protokollen" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Prispåvirkning" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Pris oppdatert" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Nylige transaksjoner" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Last inn siden på nytt" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Nullstille" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Anmeldelsesbytte" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Søk etter symbolnavn eller adresse" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Velg en pollett" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Innstillinger" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Toleranse for sammenføyning" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Noe gikk galt." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Bytt" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Bytte bekreftet" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Bytt detaljer" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Bytting mislyktes: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Bytte venter" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Bytte sammendrag" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Bytte om" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Bytt nettverk" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Bytt nettverk i lommeboken" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Bytter nettverk" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaksjonen bekreftet" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Transaksjons frist" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaksjonen venter" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaksjonen ble avvist." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Prøv å øke utglidningstoleransen.<0/>MERK: Gebyr ved overføring og rebase-tokens er inkompatible med Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Uventet feil. Kunne ikke estimere gass for byttet." - -#: src/hooks/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Ikke støttet nettverk - bytt til et annet for å handle" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Utpakking bekreftet" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Utpakning venter" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Utsikt på Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Transaksjonen din vil gå tilbake hvis den har vært ventende i lengre tid enn denne perioden." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minutter" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} gebyr" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/pl-PL.po b/src/locales/pl-PL.po deleted file mode 100644 index cce714c09..000000000 --- a/src/locales/pl-PL.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Zaakceptuj" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Uznawać" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Dopuszczać" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Pozwól w swoim portfelu" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Zezwól najpierw na {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Oczekiwanie na zasiłek" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Oczekuje na zatwierdzenie" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Zatwierdź" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Zatwierdź w swoim portfelu" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Najpierw zatwierdź {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Auto" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Automatyczny router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Zamknij" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Potwierdź w swoim portfelu" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Potwierdź zamianę" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Połącz portfel" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Podłącz portfel, aby zamienić" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Łączenie…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Konwertuj {0} na {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Odłącz portfel" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Odrzuć" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Wprowadź kwotę" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Szczegóły błędu" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Błąd podczas pobierania transakcji" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Pobieranie najlepszej ceny…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Wysoki wpływ na cenę" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Wysoki poślizg" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Wysoki poślizg zwiększa ryzyko zmiany ceny" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "nie mam portfela" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Niewystarczająca płynność w puli dla Twojej transakcji" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Niewystarczające saldo {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Nieprawidłowy odbiorca" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maks." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Maksymalny poślizg" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksymalna wysłana" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Otrzymane minimum" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Brakujące zależności" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Opłata sieciowa" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nie znaleziono wyników." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "W tej sieci nie są dostępne żadne tokeny. Przełącz się na inną sieć." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "POZA" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "NA" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Produkcja jest szacowana. Otrzymasz co najmniej {0} {1} lub transakcja zostanie cofnięta." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Produkcja jest szacowana. Wyślesz maksymalnie {0} {1} lub transakcja zostanie cofnięta." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Proszę podać poprawny % poślizgu" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Odśwież stronę i spróbuj ponownie." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Obsługiwany przez protokół Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Wpływ na cenę" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Zaktualizowano cenę" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Ostatnie tranzakcje" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Odśwież stronę" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Resetowanie" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Przejrzyj zamianę" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Szukaj według nazwy tokena lub adresu" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Wybierz token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Ustawienia" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolerancja poślizgu" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Coś poszło nie tak." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Zamień" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Zamiana potwierdzona" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Zamień szczegóły" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Zamiana nie powiodła się: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Zamiana w toku" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Podsumowanie wymiany" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Przełącznik" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Przełącz sieć" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Przełącz sieć w portfelu" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Przełączanie sieci" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transakcja potwierdzona" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Termin transakcji" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transakcja w toku" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transakcja odrzucona." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Spróbuj zwiększyć swoją tolerancję na poślizg.<0/>UWAGA: Opłata za transfer i tokeny rebase są niezgodne z Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Nieoczekiwany problem z szacowaniem gazu. Proszę spróbuj ponownie." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nieobsługiwana sieć - przełącz się na inną, aby handlować" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Potwierdzone rozpakowanie" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Oczekiwanie na rozpakowanie" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Zobacz na Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Twoja transakcja zostanie cofnięta, jeśli była w toku dłużej niż ten okres." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuty" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} opłat" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}" - diff --git a/src/locales/pt-BR.po b/src/locales/pt-BR.po deleted file mode 100644 index d78364a24..000000000 --- a/src/locales/pt-BR.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Aceitar" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Reconhecer" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permitir" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Permitir na sua carteira" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Permitir {symbol} primeiro" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Provisão pendente" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Aprovação pendente" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Aprovar" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Aprove em sua carteira" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Aprovar {symbol} primeiro" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automático" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Roteador automático" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Fechar" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Confirme na sua carteira" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Confirmar troca" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Conectar-se à carteira" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Conecte a carteira para trocar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Conectando…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Converter {0} em {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Desconectar carteira" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Dispensar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Digite um valor" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Detalhes do erro" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Erro ao buscar a negociação" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Buscando o melhor preço…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Impacto de preço alto" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Deslizamento alto" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Alta derrapagem aumenta o risco de movimento de preços" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "não tenho carteira" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Liquidez insuficiente no pool para sua negociação" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo insuficiente {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Destinatário inválido" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Máx" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Deslizamento máximo" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Máximo enviado" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Mínimo recebido" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependências ausentes" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Taxa de rede" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nenhum resultado encontrado." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Nenhum token está disponível nesta rede. Por favor, mude para outra rede." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "DESLIGADO" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "SOBRE" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "A saída é estimada. Você receberá pelo menos {0} {1} ou a transação será revertida." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "A saída é estimada. Você enviará no máximo {0} {1} ou a transação será revertida." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Insira uma % de derrapagem válida" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Atualize a página e tente novamente." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Alimentado pelo protocolo Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impacto do preço" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Preço atualizado" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Transações recentes" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Recarregue a página" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Redefinir" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Troca de revisão" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Pesquisar por nome ou endereço de token" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Selecione um token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Configurações" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolerância a discrepâncias" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Algo deu errado." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Conversão" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Troca confirmada" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Trocar detalhes" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "A troca falhou: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Troca pendente" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Resumo da troca" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Trocar" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Mudar de rede" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Mude de rede em sua carteira" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Rede de comutação" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transação confirmada" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Data-limite da operação" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transação pendente" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transação rejeitada." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Tente aumentar sua tolerância ao deslizamento.<0/>NOTA: A taxa de transferência e os tokens de rebase são incompatíveis com o Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Rede não suportada - mude para outra para negociar" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Desembrulhar confirmado" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Desempacotar pendente" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Ver no Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Sua transação será revertida se estiver pendente por mais tempo que esse período." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "Minutos" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} taxa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}segundos" - diff --git a/src/locales/pt-PT.po b/src/locales/pt-PT.po deleted file mode 100644 index 8e1549c06..000000000 --- a/src/locales/pt-PT.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Aceitar" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Reconhecer" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permitir" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Permitir na sua carteira" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Permitir {symbol} primeiro" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Provisão pendente" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Aprovação pendente" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Aprovar" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Aprove em sua carteira" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Aprovar {symbol} primeiro" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automático" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Roteador automático" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Fechar" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Confirme na sua carteira" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Confirmar troca" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Ligar carteira" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Conecte a carteira para trocar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Conectando…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Converter {0} em {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Desconectar carteira" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Descartar" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Inserir um montante" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Detalhes do erro" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Erro ao buscar a negociação" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Buscando o melhor preço…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Impacto de preço alto" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Deslizamento alto" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Alta derrapagem aumenta o risco de movimento de preços" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "não tenho carteira" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Liquidez insuficiente no pool para sua negociação" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Saldo {0} insuficiente" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Destinatário inválido" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Máximo" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Deslizamento máximo" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Máximo enviado" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Mínimo recebido" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependências ausentes" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Taxa de rede" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nenhum resultado encontrado." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Nenhum token está disponível nesta rede. Por favor, mude para outra rede." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "DESLIGADO" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "LIGADO" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "A saída é estimada. Você receberá pelo menos {0} {1} ou a transação será revertida." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "A saída é estimada. Você enviará no máximo {0} {1} ou a transação será revertida." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Insira uma % de derrapagem válida" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Atualize a página e tente novamente." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Alimentado pelo protocolo Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impacto do preço" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Preço atualizado" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Transações recentes" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Recarregue a página" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Redefinir" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Troca de revisão" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Pesquisar por nome ou endereço de token" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Selecione um token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Configurações" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Tolerância de Deslizamento" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Algo deu errado." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Trocar" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Troca confirmada" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Trocar detalhes" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "A troca falhou: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Troca pendente" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Resumo da troca" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Trocar" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Mudar de rede" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Mude de rede em sua carteira" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Rede de comutação" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transação confirmada" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Prazo de transação" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transação pendente" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transação rejeitada." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Tente aumentar sua tolerância ao deslizamento.<0/>NOTA: A taxa de transferência e os tokens de rebase são incompatíveis com o Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Rede não suportada - mude para outra para negociar" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Desembrulhar confirmado" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Desempacotar pendente" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Ver no Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Sua transação será revertida se estiver pendente por mais tempo que esse período." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minutos" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} taxa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}segundos" - diff --git a/src/locales/ro-RO.po b/src/locales/ro-RO.po deleted file mode 100644 index edda39c7f..000000000 --- a/src/locales/ro-RO.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Acceptă" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Recunoașteți" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Permite" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Permiteți-vă în portofel" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Permiteți mai întâi {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Alocație în așteptare" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "În curs de aprobare" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Aprobă" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Aprobați în portofel" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Aprobați mai întâi {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automat" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Router automat" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Sold:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Închide" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Confirmați în portofel" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Confirmați schimbul" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Conectare la portofel" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Conectați portofelul pentru a schimba" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Conectare…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Convertiți {0} la {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Deconectați portofelul" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Respinge" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Introdu o sumă" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Detalii despre eroare" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Eroare la preluarea comerțului" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Preluare cel mai bun preț…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Impact ridicat asupra prețului" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Alunecare mare" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Alunecarea mare crește riscul de mișcare a prețurilor" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Nu am portofel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Lichiditate insuficientă în pool pentru tranzacția dvs" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Sold {0} insuficient" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Destinatar nevalid" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maxim" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Alunecare maximă" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximum trimis" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum primit" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Dependențe lipsă" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Taxa de retea" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Nici un rezultat găsit." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Nu sunt disponibile jetoane în această rețea. Vă rugăm să comutați la altă rețea." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "DEZACTIVAT" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "PORNIT" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Ieșirea este estimată. Veți primi cel puțin {0} {1} sau tranzacția va reveni." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Ieșirea este estimată. Veți trimite cel mult {0} {1} sau tranzacția va reveni." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Vă rugăm să introduceți un % de alunecare valid" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Vă rugăm să reîmprospătați pagina și să încercați din nou." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Funcționat de protocolul Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Impactul prețului" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Preț actualizat" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Tranzactii recente" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Reîncărcați pagina" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Resetați" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Schimb de recenzii" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Căutați după nume simbol sau adresă" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Selectează un grup/jeton" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Setări" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Toleranță derapaj" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Ceva n-a mers bine." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Schimbă" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Schimbarea a fost confirmată" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Schimbați detalii" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Schimbarea a eșuat: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Schimb în așteptare" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Rezumat schimb" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Intrerupator" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Schimbați rețeaua" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Schimbați rețeaua în portofel" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Comutare de rețea" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Tranzacție confirmată" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Termen limită tranzacție" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Tranzacție în așteptare" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Tranzacția respinsă." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Încercați să vă creșteți toleranța la alunecare.<0/>NOTĂ: Taxa pentru jetoanele de transfer și rebazare este incompatibilă cu Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Rețea neacceptată - comutați la alta pentru a tranzacționa" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Desfacere confirmată" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Desfacere în așteptare" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Vizualizare pe Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Tranzacția dvs. va reveni dacă a fost în așteptare mai mult decât această perioadă de timp." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minute" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} taxa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/ru-RU.po b/src/locales/ru-RU.po deleted file mode 100644 index 163df5004..000000000 --- a/src/locales/ru-RU.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Принять" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Принять" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Одобрить" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Разрешите в своём кошельке" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Сначала разрешить {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Разрешение подтверждается" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Произошла ошибка при попытке произвести этот обмен. Возможно, нужно увеличить допустимое проскальзывание. Если это не сработает, возможно, имеет место несовместимость с токеном, которым вы торгуете. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Одобрение подтверждается" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Одобрить" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Одобрите в своём кошельке" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Сначала одобрить {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Авто" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Автомаршрутизатор" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Баланс:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Закрыть" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Подтвердите в своём кошельке" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Подтвердите обмен" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Подключить кошелёк" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Подключите кошелек, чтобы обменять" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Подключение…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Конвертировать {0} в {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Отключить кошелек" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Закрыть" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Введите сумму" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Описание ошибки" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Ошибка при получении сделки" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Получение лучшей цены…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Высокое влияние на цену" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Высокое проскальзывание" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Высокое проскальзывание увеличивает риск изменения цены" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "у меня нет кошелька" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Недостаточно ликвидности в пуле для вашей сделки" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Баланс {0} недостаточен" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Неверный получатель" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Максимум" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Максимальное проскальзывание" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Максимум к продаже" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Минимум к получению" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Отсутствуют зависимости" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Плата за сеть" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Ничего не найдено." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "В этой сети нет доступных токенов. Пожалуйста, переключитесь на другую сеть." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "ВЫКЛ" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "ВКЛ" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Сумма к получению — оценочная. Вы получите как минимум {0} {1}, или транзакция откатится." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Сумма к продаже — оценочная. Вы продадите максимум {0} {1}, или транзакция откатится." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Пожалуйста, введите корректный процент проскальзывания" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Пожалуйста, обновите страницу и повторите попытку." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Работает по протоколу Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Влияние на цену" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Цена обновлена" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Последние транзакции" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Перезагрузить страницу" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Сбросить" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Проверьте обмен" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Поиск токена по имени или адресу" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Выберите токен" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Настройки" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Допустимое проскальзывание" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Что-то пошло не так." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Обменять" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Обмен подтверждён" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Подробности обмена" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Обмен не удался: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Ожидается обмен" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Общая информация об обмене" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Выключатель" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Переключить сеть" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Переключите сеть в своем кошельке" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Коммутационная сеть" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Невозможно перевести токен к продаже. Возможно, имеется проблема с этим токеном." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Невозможно перевести токен к получению. Возможно, имеется проблема с токеном к получению." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Эта транзакция не будет успешной из-за движения цены или комиссии за перевод. Попробуйте увеличить допустимое проскальзывание." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Транзакция подтверждена" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Cрок действия транзакции" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Транзакция подтверждается" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Транзакция отклонена." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Попробуйте увеличить допустимое проскальзывание.<0/>ВНИМАНИЕ: токены с комиссией за перевод или изменямой базой несовместимы с Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Неожиданная ошибка. Невозможно спрогнозировать газ для обмена." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Неожиданная проблема при прогнозировании газа. Пожалуйста, попробуйте еще раз." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Сеть не поддерживается; переключитесь на другую, чтобы торговать" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Разворачивание подтверждено" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Разворачивание подтверждается" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Посмотреть на Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Ваша транзакция откатится, если её подтверждение займёт больше указанного времени." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Ваша транзакция откатится, если цена изменится не в вашу пользу более, чем на этот процент." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "минут(-ы)" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "Комиссия {integrator}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}м {sec}с" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}с" - diff --git a/src/locales/sl-SI.po b/src/locales/sl-SI.po deleted file mode 100644 index 561e359df..000000000 --- a/src/locales/sl-SI.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Sprejmi" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Razumem" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Dovoli" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Dovolite v svoji denarnici" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Najprej dovoli {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Izdaja dovoljenja v teku" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Odobritev je v teku" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Odobri" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Odobrite v svoji denarnici" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Najprej odobri {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Samodejno" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Samodejni iskalnik poti" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Dobroimetje:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Zapri" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Potrdite v svoji denarnici" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Potrdi menjavo" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Poveži denarnico" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Povežite denarnico za menjavo" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Povezujem se…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Pretvori {0} v {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Odklopi denarnico" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Opusti" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Vnesite znesek" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Podrobnosti o napaki" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Napaka pri pridobivanju posla" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Pridobivam najboljšo ceno…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Visok vpliv na ceno" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Visok zdrs" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Visok zdrs povečuje tveganje spremembe cene" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Nimam denarnice" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Sklad ima prenizko likvidnost za ta posel." - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Prenizko dobroimetje {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Neveljaven prejemnik" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Največ" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Največji zdrs" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Največ poslano" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Prejmete najmanj" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Manjkajoče odvisnosti" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Omrežnina" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Ni rezultatov." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "V tem omrežju ni na voljo noben žeton. Prosimo, preklopite na drugo omrežje." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "Izklopljeno" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "Vklopljeno" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Izhodni znesek je ocenjen. Prejeli boste vsaj {0} {1} ali pa bo transakcija stornirana." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Izhodni znesek je ocenjen. Poslali boste največ {0} {1} ali pa bo transakcija stornirana." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Prosimo, vnesite veljaven odstotek zdrsa" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Osvežite stran in poskusite znova." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Zgrajeno na protokolu Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Vpliv na ceno" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Cena posodobljena" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Nedavne transakcije" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Ponovno naložite stran" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Ponastavi" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Preglej menjavo" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Iskanje po imenu ali naslovu žetona" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Izberite žeton" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Nastavitve" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Toleranca do zdrsa" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Nekaj je šlo narobe." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Menjava" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Menjava potrjena" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Podrobnosti menjave" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Menjava je spodletela: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Menjava v teku" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Povzetek menjave" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Stikalo" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Preklop omrežja" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Preklopite omrežje v denarnici" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Preklopno omrežje" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transakcija potrjena" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Rok za transakcijo" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transakcija v teku" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transakcija zavrnjena." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Poskusite povečati toleranco zdrsa.<0/>OPOMBA: Pristojbina za žetone za prenos in ponovno uporabo ni združljiva z Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Nepričakovana težava pri ocenjevanju porabe plina. Prosimo, poskusite ponovno." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nepodprto omrežje - za trgovanje preklopite na drugo omrežje" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Odvijanje potrjeno" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Odvijanje v teku" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Prikaži na Etherscanu" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Vaša transakcija bo stornirana, če ne bo potrjena v tem času." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minut" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "Provizija za {integrator}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min} m {sec} s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec} s" - diff --git a/src/locales/sr-SP.po b/src/locales/sr-SP.po deleted file mode 100644 index 8c9f3c0de..000000000 --- a/src/locales/sr-SP.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Прихвати" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Признати" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Дозволи" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Дозволите у свом новчанику" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Прво дозволи {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Додатак на чекању" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Дошло је до грешке приликом покушаја извршења ове замене. Можда ћете морати повећати толеранцију клизања. Ако то не успе, можда постоји некомпатибилност са токеном којим тргујете. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Одобрење чекању" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Одобри" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Одобрите у свом новчанику" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Прво одобри {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Аutomatski" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Ауто Роутер" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Стање:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Затвори" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Потврдите у свом новчанику" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Потврдите замену" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Повежите новчаник" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Повежите новчаник за замену" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Повезивање…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Претворите {0} у {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Искључите новчаник" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Одбаци" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Унесите износ" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Детаљи о грешци" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Грешка при преузимању трговине" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Дохваћање најбоље цене…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Висок утицај на цену" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Високо клизање" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Високо клизање повећава ризик од кретања цена" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Немам новчаник" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Недовољна ликвидност у фонду за вашу трговину" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Недовољно {0} на стању" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Неважећи прималац" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Макс" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Максимално клизање" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Максимално послато" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Минимално примљено" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Недостају зависности" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Мрежна накнада" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Нема резултата." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Нема доступних токена на овој мрежи. Пређите на другу мрежу." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "ИСК" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "УКЉ" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Излаз је процењен. Добићете најмање {0} {1} или ће се трансакција вратити." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Излаз је процењен. Послаћете највише {0} {1} или ће се трансакција вратити." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Унесите важећи % клизања" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Освежите страницу и покушајте поново." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Покреће Унисвап протокол" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Утицај на цену" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Цена је ажурирана" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Недавне трансакције" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Поново учитај страницу" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Ресетовати" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Замена прегледа" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Претражујте по имену или адреси токена" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Изаберите жетон" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Подешавања" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Клизна толеранција" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Нешто је кренуло наопако." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Размени" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Замена потврђена" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Замени детаље" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Замена није успела: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Замена је на чекању" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Резиме замене" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Свитцх" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Пребаците мрежу" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Промените мрежу у свом новчанику" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Пребацивање мреже" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Токен за унос није могуће пренети. Можда постоји проблем са улазним токеном." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Излазни токен се не може пренети. Можда постоји проблем са излазним токеном." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ова трансакција неће успети или због кретања цена или због накнаде за пренос. Покушајте да повећате клизну толеранцију." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Трансакција потврђена" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Крајњи рок за трансакцију" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Трансакција је на чекању" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Трансакција је одбијена." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Покушајте да повећате толеранцију на клизање.<0/>НАПОМЕНА: Накнада за токене за пренос и поновну базу нису компатибилни са Унисвап В3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Неочекивана грешка. Није могуће проценити гас за замену." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Неочекивани проблем са проценом гаса. Молим вас, покушајте поново." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Неподржана мрежа - пређите на другу да бисте трговали" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Одмотавање потврђено" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Одмотавање је на чекању" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Поглед на Етхерсцан-у" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Ваша трансакција ће бити враћена ако је била на чекању дуже од овог временског периода." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Ваша трансакција ће се вратити ако се цена неповољно промени за више од овог процента." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "минута" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} накнада" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}м {sec}с" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}с" - diff --git a/src/locales/sv-SE.po b/src/locales/sv-SE.po deleted file mode 100644 index 571ddb02a..000000000 --- a/src/locales/sv-SE.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Acceptera" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Erkänna" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Tillåta" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Tillåt i din plånbok" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Tillåt {symbol} först" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Ersättning väntar" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Godkännande väntar" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Godkänn" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Godkänn i din plånbok" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Godkänn {symbol} först" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Automatiskt" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Auto Router" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Saldo:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Stäng" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Bekräfta i din plånbok" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Bekräfta bytet" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Anslut plånbok" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Anslut plånbok för att byta" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Ansluter…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Konvertera {0} till {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Koppla bort plånboken" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Avfärda" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Ange ett belopp" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Detaljer om felet" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Fel vid hämtning av handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Får bästa pris…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Hög prispåverkan" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Hög glidning" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Hög glidning ökar risken för prisrörelser" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Jag har ingen plånbok" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Otillräcklig likviditet i poolen för din handel" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Otillräckligt {0} saldo" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Ogiltig mottagare" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Högst" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Max glidning" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maximalt skickat" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum mottaget" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Beroenden saknas" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Nätverksavgift" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Inga resultat hittades." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Inga tokens är tillgängliga på detta nätverk. Byt till ett annat nätverk." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "AV" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "PÅ" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Utgången är uppskattad. Du kommer att få minst {0} {1} eller så återgår transaktionen." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Utgången är uppskattad. Du skickar högst {0} {1} annars återgår transaktionen." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Vänligen ange en giltig glidning %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Uppdatera sidan och försök igen." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Drivs av Uniswap-protokollet" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Prispåverkan" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Pris uppdaterat" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Senaste transaktioner" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Ladda om sidan" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Återställa" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Recensionsbyte" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Sök på tokennamn eller adress" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Välj en token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "inställningar" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Toleransmarginal" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Något gick fel." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Byt" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Byte bekräftat" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Byt detaljer" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Byte misslyckades: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Byte väntar" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Swap sammanfattning" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Växla" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Byt nätverk" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Byt nätverk i plånboken" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Byter nätverk" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Transaktionen bekräftad" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Tidsfrist för transaktion" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Transaktion väntar" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Transaktionen avvisades." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Försök att öka din glidtolerans.<0/>OBS: Avgift för överföring och rebase-tokens är inkompatibla med Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Nätverk som inte stöds - byt till ett annat för att handla" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Uppackning bekräftad" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Packa upp väntar" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Visa på Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Din transaktion kommer att återställas om den har varit väntande längre än denna tidsperiod." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "minuter" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} avgift" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}s" - diff --git a/src/locales/sw-TZ.po b/src/locales/sw-TZ.po deleted file mode 100644 index d65f5a8c2..000000000 --- a/src/locales/sw-TZ.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Kubali" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Tambua" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Ruhusu" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Ruhusu kwenye mkoba wako" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Ruhusu {symbol} kwanza" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Posho inasubiri" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Idhini inasubiri" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Sibitisha" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Idhinisha kwenye mkoba wako" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Idhinisha {symbol} kwanza" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Otomatiki" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Njia ya Kiotomatiki" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Kiasi:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Funga" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Thibitisha kwenye mkoba wako" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Thibitisha ubadilishaji" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Unganisha mkoba" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Unganisha pochi ili kubadilishana" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Inaunganisha…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Badilisha {0} hadi {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Tenganisha pochi" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Ondoa" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Ingiza kiasi" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Maelezo ya hitilafu" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Hitilafu katika kuleta biashara" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Inaleta bei nzuri…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Athari ya bei ya juu" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Utelezi wa hali ya juu" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Utelezi wa juu huongeza hatari ya harakati za bei" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Sina pochi" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Ukwasi hautoshi kwenye bwawa kwa biashara yako" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Usawa wa kutosha {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Mpokeaji si sahihi" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Upeo" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Utelezi mkubwa zaidi" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Upeo umetumwa" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Kiwango cha chini kimepokelewa" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Kukosa utegemezi" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Ada ya mtandao" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Hakuna matokeo yaliyopatikana." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Hakuna tokeni zinazopatikana kwenye mtandao huu. Tafadhali badilisha hadi mtandao mwingine." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "ZIMA" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "Washa" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Pato linakadiriwa. Utapokea angalau {0} {1} au muamala utarejeshwa." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Pato linakadiriwa. Utatuma angalau {0} {1} au muamala utarejeshwa." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Tafadhali weka utelezi sahihi %" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Tafadhali onyesha upya ukurasa na ujaribu tena." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Inaendeshwa na itifaki ya Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Athari ya bei" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Bei imesasishwa" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Shughuli za hivi majuzi" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Pakia upya ukurasa" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Weka upya" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Kagua ubadilishaji" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Tafuta kwa jina la tokeni au anwani" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Chagua ishara" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Mipangilio" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Uvumilivu wa kuteleza" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Hitilafu fulani imetokea." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Badilishana" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Ubadilishanaji umethibitishwa" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Badilisha maelezo" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Kubadilisha kumeshindwa: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Kubadilishana kunasubiri" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Badili muhtasari" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Badili" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Badili mtandao" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Badilisha mtandao kwenye pochi yako" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Inabadilisha mtandao" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Muamala umethibitishwa" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Mwisho wa shughuli" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Muamala unasubiri" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Ununuzi umekataliwa." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Jaribu kuongeza uvumilivu wako wa kuteleza.<0/>KUMBUKA: Ada ya uhamishaji na tokeni za kuweka upya hazioani na Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Hitilafu isiyotarajiwa. Haikuweza kukadiria gesi kwa ubadilishaji." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Suala lisilotarajiwa na kukadiria gesi. Tafadhali jaribu tena." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Mtandao usiotumika - badilisha hadi mwingine kufanya biashara" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Ufunuo umethibitishwa" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Inasubiri kufunguliwa" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Angalia kwenye Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Muamala wako utarejeshwa ikiwa umesubiri kwa muda mrefu zaidi ya kipindi hiki." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "dakika" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} ada" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}kik" - diff --git a/src/locales/th-TH.po b/src/locales/th-TH.po deleted file mode 100644 index c63387e35..000000000 --- a/src/locales/th-TH.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "ยอมรับ" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "รับทราบ" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "อนุญาต" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "อนุญาตในกระเป๋าสตางค์ของคุณ" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "ให้ {symbol} ก่อน" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "ค่าเผื่อที่รอดำเนินการ" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "เกิดข้อผิดพลาดขณะพยายามดำเนินการสลับนี้ คุณอาจต้องเพิ่มความทนทานต่อการเลื่อนหลุด หากไม่ได้ผล อาจมีความไม่เข้ากันกับโทเค็นที่คุณกำลังซื้อขาย หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "รอการอนุมัติ" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "อนุมัติ" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "อนุมัติในกระเป๋าเงินของคุณ" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "อนุมัติ {symbol} ก่อน" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "รถยนต์" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "เราเตอร์อัตโนมัติ" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "สมดุล:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "ปิด I" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "ยืนยันในกระเป๋าเงินของคุณ" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "ยืนยันการสลับ" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "เชื่อมต่อกระเป๋าสตางค์" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "เชื่อมต่อกระเป๋าเงินเพื่อแลกเปลี่ยน" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "กำลังเชื่อมต่อ…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "แปลง {0} เป็น {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "ตัดการเชื่อมต่อกระเป๋าสตางค์" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "อนุญาตให้ออกไป" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "ใส่จำนวนเงิน" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "รายละเอียดผิดพลาด" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "เกิดข้อผิดพลาดในการดึงข้อมูลการค้า" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "กำลังเรียกราคาที่ดีที่สุด…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "ผลกระทบด้านราคาสูง" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "การลื่นไถลสูง" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Slippage สูงเพิ่มความเสี่ยงจากการเคลื่อนไหวของราคา" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "ฉันไม่มีกระเป๋าสตางค์" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "สภาพคล่องไม่เพียงพอสำหรับการซื้อขายของคุณ" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "ไม่เพียงพอ {0} ยอดคงเหลือ" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "ผู้รับไม่ถูกต้อง" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "แม็กซ์" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "การเลื่อนหลุดสูงสุด" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "ส่งสูงสุด" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "รับขั้นต่ำ" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "ไม่มีการพึ่งพา" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "ค่าธรรมเนียมเครือข่าย" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "ไม่พบผลลัพธ์." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "ไม่มีโทเค็นในเครือข่ายนี้ โปรดเปลี่ยนไปใช้เครือข่ายอื่น" - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "ปิด" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "บน" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "มีการประมาณการเอาท์พุต คุณจะได้รับอย่างน้อย {0} {1} มิฉะนั้นธุรกรรมจะเปลี่ยนกลับ" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "มีการประมาณการเอาท์พุต คุณจะส่งไม่เกิน {0} {1} มิฉะนั้นธุรกรรมจะเปลี่ยนกลับ" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "โปรดป้อน % การคลาดเคลื่อนที่ถูกต้อง" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "โปรดรีเฟรชหน้าแล้วลองอีกครั้ง" - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "ขับเคลื่อนโดยโปรโตคอล Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "ผลกระทบของราคา" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "ราคาอัพเดท" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "ธุรกรรมล่าสุด" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "โหลดหน้าซ้ำ" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "รีเซ็ต" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "แลกเปลี่ยนรีวิว" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "ค้นหาด้วยชื่อโทเค็นหรือที่อยู่" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "เลือกโทเค็น" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "การตั้งค่า" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "ความทนทานต่อการเลื่อนหลุด" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "อะไรบางอย่างผิดปกติ." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "แลกเปลี่ยน" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "ยืนยันสวอปแล้ว" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "รายละเอียดการสลับ" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "สลับล้มเหลว: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "อยู่ระหว่างดำเนินการแลกเปลี่ยน" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "สรุปการสลับ" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "สวิตช์" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "สลับเครือข่าย" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "สลับเครือข่ายในกระเป๋าเงินของคุณ" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "การสลับเครือข่าย" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "ไม่สามารถโอนโทเค็นอินพุตได้ อาจมีปัญหากับโทเค็นอินพุต" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "ไม่สามารถโอนโทเค็นเอาต์พุตได้ อาจมีปัญหากับโทเค็นเอาต์พุต" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "ธุรกรรมนี้จะไม่สำเร็จเนื่องจากการเคลื่อนไหวของราคาหรือค่าธรรมเนียมในการโอน ลองเพิ่มความทนทานต่อการเลื่อนหลุด" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "ยืนยันการทำธุรกรรม" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "กำหนดเวลาการทำธุรกรรม" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "ธุรกรรมที่รอดำเนินการ" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "ธุรกรรมถูกปฏิเสธ" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "ลองเพิ่มความทนทานต่อการเลื่อนหลุด<0/>หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "ข้อผิดพลาดที่ไม่คาดคิด ไม่สามารถประมาณค่าก๊าซสำหรับการแลกเปลี่ยนได้" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "ปัญหาที่ไม่คาดคิดกับการประมาณค่าก๊าซ กรุณาลองอีกครั้ง." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "เครือข่ายที่ไม่รองรับ - เปลี่ยนไปใช้เครือข่ายอื่นเพื่อแลกเปลี่ยน" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "แกะกล่องยืนยัน" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "แกะกล่องที่รอดำเนินการ" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "ดูบน Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "ธุรกรรมของคุณจะเปลี่ยนกลับหากรอดำเนินการนานกว่าระยะเวลานี้" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "ธุรกรรมของคุณจะกลับคืนมาหากราคาเปลี่ยนแปลงไปในทางไม่ดีเกินกว่าเปอร์เซ็นต์นี้" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "นาที" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} ค่าธรรมเนียม" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}ม. {sec}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}" - diff --git a/src/locales/tr-TR.po b/src/locales/tr-TR.po deleted file mode 100644 index 0b6e21c2c..000000000 --- a/src/locales/tr-TR.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Kabul et" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Kabullenmek" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "İzin vermek" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Cüzdanınızda izin verin" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Önce {symbol} izin ver" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "ödenek beklemede" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Onay Bekliyor" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Onayla" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Cüzdanınızda onaylayın" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Önce {symbol} onayla" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Otomatik" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Otomatik Yönlendirici" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Bakiye:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Kapat" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Cüzdanınızda onaylayın" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Takas işlemini onaylayın" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Cüzdan bağlayın" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Takas için cüzdanı bağlayın" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Bağlanıyor…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "{0} {1}dönüştür" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Cüzdan bağlantısını kes" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Reddet" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Bir tutar girin" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Hata detayları" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Takas alınırken hata oluştu" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "En iyi fiyat getiriliyor…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Yüksek fiyat etkisi" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Yüksek kayma" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Yüksek kayma, fiyat hareketi riskini artırır" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "cüzdanım yok" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "İşleminiz için havuzda yetersiz likidite" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Yetersiz {0} bakiye" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Geçersiz alıcı" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Maksimum" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Maksimum kayma" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Maksimum gönderme" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Minimum alınan" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Eksik bağımlılıklar" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Ağ ücreti" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Sonuç bulunamadı." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Bu ağda kullanılabilir jeton yok. Lütfen başka bir ağa geçin." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "KAPALI" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "AÇIK" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Çıktı tahmin edilmektedir. En az {0} {1} alacaksınız veya işlem geri dönecek." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Çıktı tahmin edilmektedir. En fazla {0} {1} gönderirsiniz yoksa işlem geri döner." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Lütfen geçerli bir kayma yüzdesi girin" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Lütfen sayfayı yenileyin ve tekrar deneyin." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Uniswap protokolü tarafından desteklenmektedir" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Fiyat etkisi" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Fiyat güncellendi" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Son İşlemler" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Sayfayı yenile" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Sıfırla" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Değişimi gözden geçir" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Belirteç adına veya adresine göre arama yapın" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Bir jeton seçin" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Ayarlar" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Kayma toleransı" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Bir şeyler yanlış gitti." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Swap" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Takas onaylandı" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Ayrıntıları değiştir" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Değiştirilemedi: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Takas beklemede" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "takas özeti" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Değiştirmek" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Ağı değiştir" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Cüzdanınızdaki ağı değiştirin" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Ağ değiştirme" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "İşlem onaylandı" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "İşlem son tarihi" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "İşlem beklemede" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "İşlem reddedildi." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Kayma toleransınızı artırmayı deneyin.<0/>NOT: Transfer ve rebase belirteçleri üzerindeki ücret, Uniswap V3 ile uyumlu değildir." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Beklenmeyen hata. Takas için gaz tahmin edilemedi." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Gaz tahmininde beklenmeyen bir sorun. Lütfen tekrar deneyin." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Desteklenmeyen ağ - ticaret yapmak için diğerine geçin" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Paketi açma onaylandı" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Bekleyen paketi aç" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Etherscan üzerinde görüntüle" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "İşleminiz bu süreden daha uzun süredir beklemedeyse geri alınacaktır." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "dakika" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} ücret" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}s" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}sn" - diff --git a/src/locales/uk-UA.po b/src/locales/uk-UA.po deleted file mode 100644 index 97db38050..000000000 --- a/src/locales/uk-UA.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Прийняти" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Визнайте" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Дозволити" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Дозволити в гаманці" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Спочатку дозвольте {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Надбавка очікується" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Під час спроби виконати цей обмін сталася помилка. Можливо, вам доведеться збільшити толерантність до ковзання. Якщо це не спрацює, можливо, існує несумісність з токеном, яким ви торгуєте. Примітка: плата за перенесення та перебазування токенів несумісні з Uniswap V3." - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Очікує схвалення" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Схвалити" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Підтвердіть у своєму гаманці" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Спершу підтвердьте {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Автоматично" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Автоматичний маршрутизатор" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Баланс:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Закрити" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Підтвердьте в гаманці" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Підтвердьте заміну" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Підключити гаманець" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Підключіть гаманець для обміну" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Підключення…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Перетворіть {0} в {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Відключити гаманець" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Відхилити" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Введіть суму" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Деталі помилки" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Помилка отримання торгівлі" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Отримання найкращої ціни…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Високий вплив на ціну" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Високе ковзання" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Високе ковзання збільшує ризик руху ціни" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "У мене немає гаманця" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Недостатня ліквідність у пулі для вашої торгівлі" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Недостатній баланс {0}" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Недійсний одержувач" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Максимум" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Максимальне ковзання" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Максимум відправлених" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Мінімум отриманих" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Відсутня залежність" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Плата за мережу" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Результатів не знайдено." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "У цій мережі немає доступних маркерів. Будь ласка, перейдіть на іншу мережу." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "ВИМК" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "УВІМК" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Вихід оцінюється. Ви отримаєте щонайменше {0} {1} , або транзакція буде повернена." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Вихід оцінюється. Ви надішлете щонайбільше {0} {1} , або транзакція буде повернена." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Будь ласка, введіть дійсний % промаху" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Будь ласка, оновіть сторінку та повторіть спробу." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Працює на основі протоколу Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Вплив на ціну" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Ціна оновлена" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Останні транзакції" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Перезавантажте сторінку" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Скинути" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Обмін огляду" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Пошук за назвою або адресою токена" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Вибрати токен" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Налаштування" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Толерантність до проковзування" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Щось пішло не так." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Обмін" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Обмін підтверджено" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Обмін деталями" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Помилка підкачки: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Обмін очікує на розгляд" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Підсумок заміни" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Перемикач" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Переключити мережу" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Змініть мережу в гаманці" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Комутаційна мережа" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "Вхідний токен неможливо передати. Можливо, виникла проблема з вхідним токеном." - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "Вихідний токен неможливо передати. Можливо, виникла проблема з вихідним токеном." - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance." -msgstr "Ця транзакція не буде успішною ані через рух ціни, ані через комісію за переказ. Спробуйте збільшити свою толерантність до проковзування." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Транзакція підтверджена" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Кінцевий термін транзакції" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Транзакція очікує на розгляд" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Транзакцію відхилено." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Спробуйте збільшити толерантність до ковзання.<0/>ПРИМІТКА. Комісія за передачу та перебазування маркерів несумісна з Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "Неочікувана помилка. Не вдалося оцінити газ для обміну." - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "Неочікувана проблема з оцінкою газу. Будь ласка спробуйте ще раз." - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Непідтримувана мережа - перейдіть на іншу для торгівлі" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Розгортання підтверджено" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Очікує розгортання" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Переглянути на Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Ваша транзакція буде повернена, якщо вона була в очікуванні довше, ніж цей період часу." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "Вашу транзакцію буде скасовано, якщо ціна зміниться більш ніж на цей відсоток." - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "хвилин" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} комісія" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}м {sec}с" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}с" - diff --git a/src/locales/vi-VN.po b/src/locales/vi-VN.po deleted file mode 100644 index fa86e2cdf..000000000 --- a/src/locales/vi-VN.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "Chấp nhận" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "Công nhận" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "Cho phép" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "Cho phép trong ví của bạn" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "Cho phép {symbol} trước" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "Trợ cấp đang chờ xử lý" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -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/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "Đang chờ phê duyệt" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "Phê duyệt" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "Phê duyệt trong ví của bạn" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "Phê duyệt {symbol} trước" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "Tự động" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "Bộ định tuyến tự động" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "Thăng bằng:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "Đóng" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "Xác nhận trong ví của bạn" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "Xác nhận hoán đổi" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "Kết nối ví" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "Kết nối ví để hoán đổi" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "Kết nối…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "Chuyển đổi {0} thành {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "Ngắt kết nối ví" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "Bỏ qua" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "Nhập số tiền" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "Chi tiết lỗi" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "Lỗi khi tìm nạp giao dịch" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "Tìm nạp giá tốt nhất…" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "Tác động giá cao" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "Trượt cao" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "Trượt giá cao làm tăng rủi ro biến động giá" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "Tôi không có ví" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "Không đủ thanh khoản trong pool cho giao dịch của bạn" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "Số dư {0} không đủ" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "Người nhận không hợp lệ" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "Tối đa" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "Độ trượt tối đa" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "Đã gửi tối đa" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "Số tiền nhận được tối thiểu" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "Thiếu phụ thuộc" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "Phí mạng" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "Không có kết quả nào được tìm thấy." - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "Không có mã thông báo nào có sẵn trên mạng này. Vui lòng chuyển sang mạng khác." - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "TẮT" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "BẬT" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "Sản lượng được ước tính. Bạn sẽ nhận được ít nhất {0} {1} hoặc giao dịch sẽ hoàn nguyên." - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "Sản lượng được ước tính. Bạn sẽ gửi nhiều nhất là {0} {1} hoặc giao dịch sẽ hoàn nguyên." - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "Vui lòng nhập% trượt giá hợp lệ" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "Hãy làm mới trang và thử lại." - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "Được hỗ trợ bởi giao thức Uniswap" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "Tác động giá" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "Đã cập nhật giá" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "Giao dịch gần đây" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "Tải lại trang" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "Cài lại" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "Đánh giá hoán đổi" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "Tìm kiếm theo tên hoặc địa chỉ mã thông báo" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "Chọn một mã token" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "Cài đặt" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "Khả năng chịu trượt" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "Đã xảy ra lỗi." - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "Hoán đổi" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "Hoán đổi được xác nhận" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "Hoán đổi chi tiết" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "Hoán đổi không thành công: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "Hoán đổi đang chờ xử lý" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "Tóm tắt hoán đổi" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "Công tắc" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "Chuyển mạng" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "Chuyển đổi mạng trong ví của bạn" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "Chuyển mạng" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "Đã xác nhận giao dịch" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "Thời hạn giao dịch" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "Giao dịch đang chờ xử lý" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "Giao dịch bị từ chối." - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "Hãy thử tăng khả năng chịu trượt của bạn.<0/>LƯU Ý: Phí chuyển và mã thông báo rebase không tương thích với Uniswap V3." - -#: src/hooks/swap/useSendSwapTransaction.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/swap/useSendSwapTransaction.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/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "Mạng không được hỗ trợ - chuyển sang mạng khác để giao dịch" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "Đã xác nhận mở gói" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "Mở gói đang chờ xử lý" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "Xem trên Etherscan" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu nó đã chờ xử lý lâu hơn khoảng thời gian này." - -#: src/components/Swap/Settings/MaxSlippageSelect.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/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "phút" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} phí" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}m {sec}giây" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}giây" - diff --git a/src/locales/zh-CN.po b/src/locales/zh-CN.po deleted file mode 100644 index 5ceec849e..000000000 --- a/src/locales/zh-CN.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "接受" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "确认" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "允许" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "允许在你的钱包里" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "先允许 {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "待定津贴" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "尝试执行此兑换时发生错误。您可能需要增加滑点限制。如果还是不行,则可能是您正在交易的代币与Uniswap不兼容。注:Uniswap V3不兼容转账时带扣除费用(fee-on-transfer)的代币和弹性供应(rebase)代币。" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "等待批准" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "批准" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "在您的钱包中批准" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "先批准 {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "自动" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "自动路由" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "余额:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "关闭" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "在你的钱包中确认" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "确认交易" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "连接钱包" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "连接钱包以兑换" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "连接…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "将 {0} 转换为 {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "断开钱包" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "关闭" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "输入数额" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "错误详情" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "获取交易时出错" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "正在获取最优兑换率..." - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "对兑换率有高度影响" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "高滑点" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "高滑点会增加兑换率波动风险" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "我没有钱包" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "你交易的币对流动性不足" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "{0} 余额不足" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "无效的接收方" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "最大值" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "最大滑点" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "发送的最大值" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "收到的最低数额" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "缺少依赖套件" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "网络费用" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "未找到结果。" - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "此网络上没有可用的令牌。请切换到另一个网络。" - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "关闭" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "开启" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "估计输出。您将收到至少 {0} {1} 或交易将恢复。" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "估计输出。您最多发送 {0} {1} 或交易将恢复。" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "请输入有效的滑点百分比" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "请刷新页面并重试。" - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "由 Uniswap 协议提供支持" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "兑换率影响" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "兑换率已更新" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "最近的交易" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "重新加载页面" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "重置" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "检查交易" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "按代币名称或地址搜索" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "选择代币" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "设置" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "滑点容差" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "出问题了。" - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "兑换" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "交易已确认" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "交易详情" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "兑换失败: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "交易处理中" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "交易摘要" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "转变" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "切换网络" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "在您的钱包中切换网络" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "交换网络" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "输入代币无法进行转账。输入代币可能有些问题。" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "输出代币无法进行转账。输出代币可能有些问题。" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "交易已确认" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "交易截止期限" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "交易等待中" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "交易被拒绝。" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "可以尝试增加滑点容差。<0/>注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "错误。无法估计兑换所需的gas。" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "估计 gas 时遇到问题。请再试一次。" - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "不支持的网络 - 切换到另一个进行交易" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "交易已确认" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "交易处理中" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "在 Etherscan 上查看" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "如果您的交易待处理的时间超过此时间段,会将回滚。" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "如果兑换率变动超过此百分比,则将还原该交易。" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "分钟" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} 费用" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}分 {sec}秒" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}秒" - diff --git a/src/locales/zh-TW.po b/src/locales/zh-TW.po deleted file mode 100644 index 2a1bc8a1f..000000000 --- a/src/locales/zh-TW.po +++ /dev/null @@ -1,415 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: uniswap-interface\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-18 01:36\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: /widgets/en-US.po\n" -"X-Crowdin-File-ID: 8\n" - -#: src/components/Swap/Summary/index.tsx -msgid "Accept" -msgstr "接受" - -#: src/components/Swap/Summary/index.tsx -msgid "Acknowledge" -msgstr "確認" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow" -msgstr "允許" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow in your wallet" -msgstr "允許在你的錢包裡" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allow {symbol} first" -msgstr "先允許 {symbol}" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Allowance pending" -msgstr "待定津貼" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "嘗試執行此兌換時發生錯誤。您可能需要增加滑點限制。如果還是不行,則可能是您正在交易的代幣與Uniswap不兼容。注:Uniswap V3不兼容轉賬時帶扣除費用(fee-on-transfer)的代幣和彈性供應(rebase)代幣。" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approval pending" -msgstr "等待批准" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve" -msgstr "批準" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve in your wallet" -msgstr "在您的錢包中批准" - -#: src/components/Swap/SwapActionButton/ApproveButton.tsx -msgid "Approve {symbol} first" -msgstr "先批准 {symbol}" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Auto" -msgstr "自動" - -#: src/components/Swap/RoutingDiagram/index.tsx -msgid "Auto Router" -msgstr "自動路由" - -#: src/components/Swap/Input.tsx -msgid "Balance:" -msgstr "余額:" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Close" -msgstr "關閉" - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "Confirm in your wallet" -msgstr "在你的錢包中確認" - -#: src/components/Swap/Summary/index.tsx -msgid "Confirm swap" -msgstr "確認兌換" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "Connect wallet" -msgstr "連接錢包" - -#: src/components/ConnectWallet/ConnectWallet.tsx -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connect wallet to swap" -msgstr "連接錢包以兌換" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Connecting…" -msgstr "連接…" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Convert {0} to {1}" -msgstr "將 {0} 轉換為 {1}" - -#: src/components/ConnectWallet/ConnectedWalletChip.tsx -msgid "Disconnect wallet" -msgstr "斷開錢包" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Dismiss" -msgstr "關閉" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Enter an amount" -msgstr "輸入數額" - -#: src/components/Error/ErrorDialog.tsx -msgid "Error details" -msgstr "錯誤詳情" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Error fetching trade" -msgstr "獲取交易時出錯" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Fetching best price…" -msgstr "正在獲取最優兌換率..." - -#: src/components/Swap/Summary/index.tsx -#: src/components/Swap/Summary/index.tsx -msgid "High price impact" -msgstr "高兌換率影響" - -#: src/components/Swap/Summary/index.tsx -msgid "High slippage" -msgstr "高滑點" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "High slippage increases the risk of price movement" -msgstr "高滑點增加了價格變動的風險" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "I don't have a wallet" -msgstr "我沒有錢包" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient liquidity in the pool for your trade" -msgstr "您想交易的池中流動性不足" - -#: src/components/Swap/Toolbar/Caption.tsx -msgid "Insufficient {0} balance" -msgstr "{0} 餘額不足" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Invalid recipient" -msgstr "無效的接收方" - -#: src/components/Swap/Input.tsx -msgid "Max" -msgstr "最大值" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Max slippage" -msgstr "最大滑點" - -#: src/components/Swap/Summary/Details.tsx -msgid "Maximum sent" -msgstr "發送的最大值" - -#: src/components/Swap/Summary/Details.tsx -msgid "Minimum received" -msgstr "收到的最低數額" - -#: src/hooks/swap/useSwapCallback.tsx -msgid "Missing dependencies" -msgstr "缺少依賴套件" - -#: src/components/Swap/Summary/Details.tsx -msgid "Network fee" -msgstr "網絡費用" - -#: src/components/TokenSelect/index.tsx -msgid "No results found." -msgstr "未找到任何結果。" - -#: src/components/TokenSelect/NoTokensAvailableOnNetwork.tsx -msgid "No tokens are available on this network. Please switch to another network." -msgstr "此網絡上沒有可用的令牌。請切換到另一個網絡。" - -#: src/components/Toggle.tsx -msgid "OFF" -msgstr "關閉" - -#: src/components/Toggle.tsx -msgid "ON" -msgstr "開啟" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will receive at least {0} {1} or the transaction will revert." -msgstr "估計輸出。您將收到至少 {0} {1} 或交易將恢復。" - -#: src/components/Swap/Summary/index.tsx -msgid "Output is estimated. You will send at most {0} {1} or the transaction will revert." -msgstr "估計輸出。您最多發送 {0} {1} 或交易將恢復。" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Please enter a valid slippage %" -msgstr "請輸入有效的滑點百分比" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Please refresh the page and try again." -msgstr "請刷新頁面並重試。" - -#: src/components/BrandedFooter.tsx -msgid "Powered by the Uniswap protocol" -msgstr "由 Uniswap 協議提供支持" - -#: src/components/Swap/Summary/Details.tsx -msgid "Price impact" -msgstr "兌換率影響" - -#: src/components/Swap/Summary/index.tsx -msgid "Price updated" -msgstr "兌換率已更新" - -#: src/components/RecentTransactionsDialog.tsx -msgid "Recent transactions" -msgstr "最近的交易" - -#: src/components/Error/ErrorBoundary.tsx -msgid "Reload the page" -msgstr "重新加載頁面" - -#: src/components/Swap/Settings/index.tsx -msgid "Reset" -msgstr "重置" - -#: src/components/Swap/SwapActionButton/SwapButton.tsx -msgid "Review swap" -msgstr "審查交換" - -#: src/components/TokenSelect/index.tsx -msgid "Search by token name or address" -msgstr "按代幣名稱或地址搜索" - -#: src/components/TokenSelect/TokenButton.tsx -#: src/components/TokenSelect/index.tsx -#: src/components/TokenSelect/index.tsx -msgid "Select a token" -msgstr "選擇代幣" - -#: src/components/Swap/Settings/index.tsx -msgid "Settings" -msgstr "設置" - -#: src/components/Swap/Summary/Details.tsx -msgid "Slippage tolerance" -msgstr "滑點容差" - -#: src/components/Error/ErrorDialog.tsx -msgid "Something went wrong." -msgstr "出問題了。" - -#: src/components/Swap/index.tsx -msgid "Swap" -msgstr "兌換" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap confirmed" -msgstr "交換確認" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap details" -msgstr "交易詳情" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Swap failed: {0}" -msgstr "兑换失败: {0}" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Swap pending" -msgstr "交換待處理" - -#: src/components/Swap/Summary/index.tsx -msgid "Swap summary" -msgstr "交易摘要" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch" -msgstr "轉變" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network" -msgstr "切換網絡" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switch network in your wallet" -msgstr "在您的錢包中切換網絡" - -#: src/components/Swap/SwapActionButton/SwitchChainButton.tsx -msgid "Switching network" -msgstr "交換網絡" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.tsx -msgid "The input token cannot be transferred. There may be an issue with the input token." -msgstr "輸入代幣無法進行轉賬。輸入代幣可能有些問題。" - -#: src/utils/swapErrorToUserReadableMessage.tsx -msgid "The output token cannot be transferred. There may be an issue with the output token." -msgstr "輸出代幣無法進行轉賬。輸出代幣可能有些問題。" - -#: src/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/utils/swapErrorToUserReadableMessage.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/Swap/Status/StatusDialog.tsx -msgid "Transaction confirmed" -msgstr "交易確認" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Transaction deadline" -msgstr "交易截止期限" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Transaction pending" -msgstr "交易待定" - -#: src/hooks/swap/useSendSwapTransaction.tsx -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Transaction rejected." -msgstr "交易被拒絕。" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Try increasing your slippage tolerance.<0/>NOTE: Fee on transfer and rebase tokens are incompatible with Uniswap V3." -msgstr "嘗試增加滑點容差。<0/>註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不相容。" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected error. Could not estimate gas for the swap." -msgstr "錯誤。無法估計兑换所需的 gas。" - -#: src/hooks/swap/useSendSwapTransaction.tsx -msgid "Unexpected issue with estimating the gas. Please try again." -msgstr "估計 gas 時遇到問題。請再試一次。" - -#: src/utils/swapErrorToUserReadableMessage.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/components/Swap/Toolbar/Caption.tsx -msgid "Unsupported network - switch to another to trade" -msgstr "不支持的網絡 - 切換到另一個進行交易" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap confirmed" -msgstr "打開包裝確認" - -#: src/components/Swap/Status/StatusDialog.tsx -#: src/components/Swap/Status/StatusDialog.tsx -msgid "Unwrap pending" -msgstr "打開待處理" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "View on Etherscan" -msgstr "在Etherscan上查看" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "Your transaction will revert if it has been pending for longer than this period of time." -msgstr "如果您的交易待處理的時間超過此時間段,交易將恢復。" - -#: src/components/Swap/Settings/MaxSlippageSelect.tsx -msgid "Your transaction will revert if the price changes unfavorably by more than this percentage." -msgstr "如果兌換率變動超過此百分比,則將還原該交易。" - -#: src/components/Swap/Settings/TransactionTtlInput.tsx -msgid "minutes" -msgstr "分鐘" - -#: src/components/Swap/SwapActionButton/WrapButton.tsx -msgid "{0} {1}" -msgstr "{0} {1}" - -#: src/components/ConnectWallet/ConnectWalletDialog.tsx -msgid "{caption}" -msgstr "{caption}" - -#: src/components/Swap/Summary/Details.tsx -msgid "{integrator} fee" -msgstr "{integrator} 費用" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{min}m {sec}s" -msgstr "{min}分鐘 {sec}秒" - -#: src/components/Swap/Status/StatusDialog.tsx -msgid "{sec}s" -msgstr "{sec}秒" -