From ef34f6c6b40d57ee4d92087887a005842cbcb009 Mon Sep 17 00:00:00 2001 From: selim <138768831+sprrwhwk@users.noreply.github.com> Date: Wed, 15 May 2024 18:40:21 +0300 Subject: [PATCH 1/6] fix pool icon paths for klima app (#2354) --- app/components/views/Info/index.tsx | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/app/components/views/Info/index.tsx b/app/components/views/Info/index.tsx index 71c8c8c72f..f17397df25 100644 --- a/app/components/views/Info/index.tsx +++ b/app/components/views/Info/index.tsx @@ -3,11 +3,19 @@ import { FC } from "react"; import { Anchor as A, CopyValueButton, Text } from "@klimadao/lib/components"; import { addresses, urls } from "@klimadao/lib/constants"; +import { + BCTIcon, + KLIMABCTLPIcon, + KLIMAIcon, + MCO2Icon, + NBOIcon, + NCTIcon, + UBOIcon, +} from "@klimadao/lib/resources"; import { concatAddress } from "@klimadao/lib/utils"; import { Trans } from "@lingui/macro"; import InfoOutlined from "@mui/icons-material/InfoOutlined"; import { ImageCard } from "components/ImageCard"; -import { BASE_URL } from "lib/constants"; import AddToMetaMaskButton from "./AddToMetaMaskButton"; import * as styles from "./styles"; @@ -32,7 +40,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy KLIMA token address.", metamaskAriaLabel: "Add KLIMA token to wallet.", ticker: "KLIMA", - image: `${BASE_URL}/icons/KLIMA.png`, + image: KLIMAIcon.src, decimals: 9, }, { @@ -41,7 +49,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy sKLIMA token address.", metamaskAriaLabel: "Add sKLIMA token to wallet.", ticker: "sKLIMA", - image: `${BASE_URL}/icons/KLIMA.png`, + image: KLIMAIcon.src, decimals: 9, }, { @@ -50,7 +58,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy wsKLIMA token address.", metamaskAriaLabel: "Add wsKLIMA token to wallet.", ticker: "wsKLIMA", - image: `${BASE_URL}/icons/KLIMA.png`, + image: KLIMAIcon.src, decimals: 18, }, { @@ -59,7 +67,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy BCT token address.", metamaskAriaLabel: "Add BCT token to wallet.", ticker: "BCT", - image: `${BASE_URL}/icons/BCT.png`, + image: BCTIcon.src, decimals: 18, }, { @@ -68,7 +76,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy MCO2 token address.", metamaskAriaLabel: "Add MCO2 token to wallet.", ticker: "MCO2", - image: `${BASE_URL}/icons/MCO2.png`, + image: MCO2Icon.src, decimals: 18, }, { @@ -77,7 +85,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy UBO token address.", metamaskAriaLabel: "Add UBO token to wallet.", ticker: "UBO", - image: `${BASE_URL}/icons/UBO.png`, + image: UBOIcon.src, decimals: 18, }, { @@ -86,7 +94,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy NBO token address.", metamaskAriaLabel: "Add NBO token to wallet.", ticker: "NBO", - image: `${BASE_URL}/icons/NBO.png`, + image: NBOIcon.src, decimals: 18, }, { @@ -95,7 +103,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy NCT token address.", metamaskAriaLabel: "Add NCT token to wallet.", ticker: "NCT", - image: `${BASE_URL}/icons/NCT.png`, + image: NCTIcon.src, decimals: 18, }, { @@ -104,7 +112,7 @@ const addressInfo: AddressInfo[] = [ ariaLabel: "Copy KLIMA BCT LP address.", metamaskAriaLabel: "Add KLIMA BCT LP to wallet.", ticker: "KLIMA/BCT", - image: `${BASE_URL}/icons/BCT-KLIMA-LP.png`, + image: KLIMABCTLPIcon.src, decimals: 18, }, ]; From fafaefa6b2eff2426142e21d0a3f862bf7481ee7 Mon Sep 17 00:00:00 2001 From: AdKlDa0 Date: Wed, 15 May 2024 15:41:35 +0000 Subject: [PATCH 2/6] Extract translation strings --- app/locale/de/messages.po | 20 +++++++++---------- app/locale/en-pseudo/messages.po | 20 +++++++++---------- app/locale/en/messages.po | 18 ++++++++--------- app/locale/es/messages.po | 28 +++++++++++++-------------- app/locale/fr/messages.po | 30 ++++++++++++++--------------- app/locale/hi/messages.po | 20 +++++++++---------- app/locale/ko/messages.po | 20 +++++++++---------- app/locale/ru/messages.po | 20 +++++++++---------- app/locale/zh-CN/messages.po | 20 +++++++++---------- carbon/locale/de/messages.po | 2 +- carbon/locale/en-pseudo/messages.po | 2 +- carbon/locale/es/messages.po | 2 +- carbon/locale/fr/messages.po | 2 +- carbon/locale/hi/messages.po | 2 +- carbon/locale/ko/messages.po | 2 +- carbon/locale/ru/messages.po | 2 +- carbon/locale/zh-CN/messages.po | 2 +- 17 files changed, 106 insertions(+), 106 deletions(-) diff --git a/app/locale/de/messages.po b/app/locale/de/messages.po index a796cf1a53..279b8a8f1c 100644 --- a/app/locale/de/messages.po +++ b/app/locale/de/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -464,45 +464,45 @@ msgid "imagecard.new_to_klima" msgstr "Neu bei KLIMA?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. Metamask öffnen und zu Ethereum Mainnet wechseln" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "2. Gehe nach Einstellungen -> Netzwerke -> Polygon und klicke \"Löschen\"." #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "Gehe zurück nach app.klimadao.finance und klicke auf \"Wechsel zum Mainnet\"." #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "Falls die App \"Laden...\" anzeigt, liegt wahrscheinlich ein Problem der Netzwerkkonfiguration in Metamask vor. Löse dies wie folgt:" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask sollte dich dazu auffordern, Polygon mit der korrekten RPC-Konfiguration hinzuzufügen." #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "Warum lädt die App nicht?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "Häufige Fragen zur App und nützliche Links. Umfassende Informationen zu KlimaDAO findest du in unserer <0>offiziellen Dokumentation." -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "Info & FAQ" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "Offizielle Vertragsadressen" diff --git a/app/locale/en-pseudo/messages.po b/app/locale/en-pseudo/messages.po index cb99aa8e6a..07ec628419 100644 --- a/app/locale/en-pseudo/messages.po +++ b/app/locale/en-pseudo/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -462,45 +462,45 @@ msgid "imagecard.new_to_klima" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "" -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "" diff --git a/app/locale/en/messages.po b/app/locale/en/messages.po index 8e6a6b4744..11a6a627e0 100644 --- a/app/locale/en/messages.po +++ b/app/locale/en/messages.po @@ -468,45 +468,45 @@ msgid "imagecard.new_to_klima" msgstr "New to KLIMA?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. Open Metamask and switch to Ethereum Mainnet" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "2. Go to Settings/Networks/Polygon and click 'delete'" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "3. Return to app.klimadao.finance and click 'switch to mainnet'." #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "If the app says 'loading...' this is likely a problem with your network configuration in Metamask. To fix this:" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask should prompt you to add Polygon, with the correct RPC configuration." #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "Why won't the app load for me?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "Common app-related questions and useful links. For comprehensive reading on KlimaDAO, see our <0>official documentation." -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "Info & FAQ" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "Official Contract Addresses" diff --git a/app/locale/es/messages.po b/app/locale/es/messages.po index 677ebd5fb4..04e26a6b52 100644 --- a/app/locale/es/messages.po +++ b/app/locale/es/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -256,7 +256,7 @@ msgstr "Pago por KLIMA" #: components/views/Bond/index.tsx:664 msgid "bond.payout_per_klima.description_inverse" -msgstr "" +msgstr "Si vincula 1 KLIMA, recibirá esta cantidad en USDC.e." #: components/views/Bond/index.tsx:468 #: components/views/Bond/index.tsx:580 @@ -345,7 +345,7 @@ msgstr "Inicie sesión o conecte una billetera" #: components/views/Bond/index.tsx:700 msgid "capacity.description_inverse" -msgstr "" +msgstr "Esta es la cantidad de USDC.e en el contrato disponible para bonos." #: components/CheckURLBanner/index.tsx:47 msgid "checkurlbanner.dont_remind_me" @@ -383,7 +383,7 @@ msgstr "Elige un bono" #: components/views/ChooseBond/index.tsx:115 msgid "choose_bond.inverse_usdc" -msgstr "" +msgstr "Proporcione KLIMA, reciba USDC.e" #: components/views/ChooseBond/index.tsx:107 msgid "choose_bond.klima_bct_lp.klima_bct_sushiswap_liquidity" @@ -391,7 +391,7 @@ msgstr "Liquidez BCT/USDC Sushiswap" #: components/views/ChooseBond/index.tsx:103 msgid "choose_bond.klima_usdc_lp.klima_usdc_sushiswap_liquidity" -msgstr "" +msgstr "Liquidez de KLIMA/USDC.e Sushiswap" #: components/views/ChooseBond/index.tsx:95 msgid "choose_bond.mco2.moss_carbon_credit_token" @@ -462,45 +462,45 @@ msgid "imagecard.new_to_klima" msgstr "¿Nuevo en KLIMA?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. Abra Metamask y cambie a Ethereum Mainnet" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "2. Vaya a Configuración/Redes/Polygon y haga clic en \"eliminar\"." #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "3. Vuelve a app.klimadao.finance y haz clic en \"cambiar a la red principal\"." #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "Si la aplicación dice \"cargando...\" es probable que haya un problema con la configuración de la red en Metamask. Para solucionarlo:" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask debería pedirle que añada Polygon, con la configuración RPC correcta." #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "¿Por qué no se me carga la aplicación?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "Preguntas comunes relacionadas con la aplicación y enlaces útiles. Para una lectura completa de KlimaDAO, consulte nuestra <0>documentación oficial." -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "Información y preguntas frecuentes" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "Direcciones oficiales del contrato" diff --git a/app/locale/fr/messages.po b/app/locale/fr/messages.po index 2613c873df..8ebe7859d0 100644 --- a/app/locale/fr/messages.po +++ b/app/locale/fr/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -256,7 +256,7 @@ msgstr "Paiement par KLIMA" #: components/views/Bond/index.tsx:664 msgid "bond.payout_per_klima.description_inverse" -msgstr "" +msgstr "Si vous émettez une obligation de 1 KLIMA, vous recevrez ce montant en USDC.e." #: components/views/Bond/index.tsx:468 #: components/views/Bond/index.tsx:580 @@ -345,7 +345,7 @@ msgstr "Veuillez Vous Identifier ou Connecter Un Portefeuille" #: components/views/Bond/index.tsx:700 msgid "capacity.description_inverse" -msgstr "" +msgstr "Voici le montant d'USDC.e disponible dans le contrat pour les obligations." #: components/CheckURLBanner/index.tsx:47 msgid "checkurlbanner.dont_remind_me" @@ -366,7 +366,7 @@ msgstr "⚠️ Vérifiez l'URL et mettez cette page dans vos favoris !" #: components/views/ChooseBond/index.tsx:99 msgid "choose_bond.bct.base_carbon_tonne" -msgstr "" +msgstr "Tonne de Carbone Base" #: components/views/ChooseBond/index.tsx:209 msgid "choose_bond.bond_carbon" @@ -383,7 +383,7 @@ msgstr "Choisissez une obligation" #: components/views/ChooseBond/index.tsx:115 msgid "choose_bond.inverse_usdc" -msgstr "" +msgstr "Fournissez des KLIMA, recevez des USDC.e" #: components/views/ChooseBond/index.tsx:107 msgid "choose_bond.klima_bct_lp.klima_bct_sushiswap_liquidity" @@ -391,7 +391,7 @@ msgstr "Liquidité Sushiswap KLIMA/BCT" #: components/views/ChooseBond/index.tsx:103 msgid "choose_bond.klima_usdc_lp.klima_usdc_sushiswap_liquidity" -msgstr "" +msgstr "Liquidité KLIMA/USDC.e sur Sushiswap" #: components/views/ChooseBond/index.tsx:95 msgid "choose_bond.mco2.moss_carbon_credit_token" @@ -462,45 +462,45 @@ msgid "imagecard.new_to_klima" msgstr "Nouveau sur KLIMA ?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. Ouvrez Metamask et choisissez le réseau Ethereum Mainnet" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "2. Allez dans Paramètres/Réseaux/Polygon et cliquez sur 'supprimer'" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "3. Retournez sur app.klimadao.finance et choisissez le réseau principal" #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "Si l'application indique \"chargement...\", il s'agit probablement d'un problème lié à la configuration de votre réseau dans Metamask. Pour résoudre ce problème :" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask devrait vous inviter à ajouter le réseau Polygon, avec la configuration RPC qui convient." #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "Pourquoi l'application ne charge-t-elle pas ?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "Questions courantes concernant l'application et liens utiles. Pour des informations plus complètes sur KlimaDAO, veuillez consulter notre <0>documentation officielle ." -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "Informations et FAQ" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "Adresses officielles des contrats" diff --git a/app/locale/hi/messages.po b/app/locale/hi/messages.po index a285d6c35a..d1e119a354 100644 --- a/app/locale/hi/messages.po +++ b/app/locale/hi/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -462,45 +462,45 @@ msgid "imagecard.new_to_klima" msgstr "KLIMA में नए हैं?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. Metamask (मेटामास्क) खोलें और Ethereum Mainnet पर स्विच करें" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "2. Settings/Network/Polygon पर जाएँ और 'delete' पर क्लिक करें" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "3. app.klimadao.finance पर लौटें और 'switch to mainnet' पर क्लिक करें।" #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "यदि ऐप में 'loading...' दिखाए तो संभवतः Metamask (मेटामास्क) में आपकी नेटवर्क कॉन्फ़िगरेशन में कोई समस्या है। इसे ठीक करने के लिए:" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask (मेटामास्क) आपको सही RPC (आरपीसी) कॉन्फ़िगरेशन के साथ Polygon (पॉलिगॉन) जोड़ने के लिए प्रेरित करेगा।" #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "मेरा ऐप लोड क्यों नहीं होता?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "ऐप से संबंधित सामान्य प्रश्न और उपयोगी लिंक। KlimaDAO पर विस्तारपूर्वक पढ़ने के लिए, हमारा <0>official documentation देखें।" -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "जानकारी और FAQ (अक्सर पूछे जाने वाले प्रश्न)" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "आधिकारिक अनुबंध पते" diff --git a/app/locale/ko/messages.po b/app/locale/ko/messages.po index 0d58ff5ffd..37ed2d5023 100644 --- a/app/locale/ko/messages.po +++ b/app/locale/ko/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -462,45 +462,45 @@ msgid "imagecard.new_to_klima" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "" -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "" diff --git a/app/locale/ru/messages.po b/app/locale/ru/messages.po index 0145b4a459..dd59196ec7 100644 --- a/app/locale/ru/messages.po +++ b/app/locale/ru/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -466,47 +466,47 @@ msgid "imagecard.new_to_klima" msgstr "Впервые на KLIMA?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. Откройте Metamask и переключитесь на сеть Ethereum Mainnet." #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "" "2. Перейдите в Настройки/Сети/Polygon и нажмите «Удалить».\n" "" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "3. Вернитесь на app.klimadao.finance и нажмите «переключиться на основную сеть»." #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "Если приложение показывает сообщение \"загрузка...\", это, скорее всего, проблема с конфигурацией сети в Metamask. Чтобы исправить это:" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask должен предложить вам добавить Polygon с правильной конфигурацией RPC." #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "Почему у меня не загружается приложение?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "Общие вопросы, связанные с приложением, и полезные ссылки. Подробную информацию о KlimaDAO см. в нашей <0>официальной документации. ." -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "Информация и часто задаваемые вопросы" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "Официальные адреса контрактов" diff --git a/app/locale/zh-CN/messages.po b/app/locale/zh-CN/messages.po index eed18f03d4..1986f1fff4 100644 --- a/app/locale/zh-CN/messages.po +++ b/app/locale/zh-CN/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -462,45 +462,45 @@ msgid "imagecard.new_to_klima" msgstr "刚接触 KLIMA?" #. Long sentence -#: components/views/Info/index.tsx:147 +#: components/views/Info/index.tsx:155 msgid "info.app_not_loading.1_open_metamask" msgstr "1. 打开 Metamask 并切换到以太坊主网" #. Long sentence -#: components/views/Info/index.tsx:154 +#: components/views/Info/index.tsx:162 msgid "info.app_not_loading.2_go_to_settings" msgstr "2. 到 设置 / 网络 / Polygon 并点击“删除”" #. Long sentence -#: components/views/Info/index.tsx:161 +#: components/views/Info/index.tsx:169 msgid "info.app_not_loading.3_return_to_app" msgstr "3. 返回 app.klimadao.finance 并点击“切换到主网”." #. Long sentence -#: components/views/Info/index.tsx:139 +#: components/views/Info/index.tsx:147 msgid "info.app_not_loading.if_app_says_loading" msgstr "如果应用程序显示 “正在加载...”,这可能是您的 Metamask 网络配置存在问题。要解决这个问题:" #. Long sentence -#: components/views/Info/index.tsx:168 +#: components/views/Info/index.tsx:176 msgid "info.app_not_loading.metamask_should_prompt" msgstr "Metamask 会提示您使用正确的 RPC 配置来添加 Polygon。" #. Long sentence -#: components/views/Info/index.tsx:134 +#: components/views/Info/index.tsx:142 msgid "info.app_not_loading.title" msgstr "我为什么无法加载应用程序?" #. Long sentence -#: components/views/Info/index.tsx:122 +#: components/views/Info/index.tsx:130 msgid "info.common_app_related_questions" msgstr "与应用程序相关的常见问题和一些有用的链接。如需全面了解KlimaDAO,请参阅我们的<0>官方文档." -#: components/views/Info/index.tsx:119 +#: components/views/Info/index.tsx:127 msgid "info.info_and_faq" msgstr "信息和常见问题解答" -#: components/views/Info/index.tsx:182 +#: components/views/Info/index.tsx:190 msgid "info.official_contract_addresses" msgstr "官方合同地址" diff --git a/carbon/locale/de/messages.po b/carbon/locale/de/messages.po index 62603d3c17..2a88f07592 100644 --- a/carbon/locale/de/messages.po +++ b/carbon/locale/de/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/en-pseudo/messages.po b/carbon/locale/en-pseudo/messages.po index 478004db3e..b9d886c730 100644 --- a/carbon/locale/en-pseudo/messages.po +++ b/carbon/locale/en-pseudo/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/es/messages.po b/carbon/locale/es/messages.po index 4de981e447..66c086f148 100644 --- a/carbon/locale/es/messages.po +++ b/carbon/locale/es/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/fr/messages.po b/carbon/locale/fr/messages.po index 0f8e126127..cc6980814f 100644 --- a/carbon/locale/fr/messages.po +++ b/carbon/locale/fr/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/hi/messages.po b/carbon/locale/hi/messages.po index cd04f07037..1e0216d19d 100644 --- a/carbon/locale/hi/messages.po +++ b/carbon/locale/hi/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/ko/messages.po b/carbon/locale/ko/messages.po index 5745464077..55a6ea31d5 100644 --- a/carbon/locale/ko/messages.po +++ b/carbon/locale/ko/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/ru/messages.po b/carbon/locale/ru/messages.po index 8ef836afe5..06f13496dd 100644 --- a/carbon/locale/ru/messages.po +++ b/carbon/locale/ru/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/zh-CN/messages.po b/carbon/locale/zh-CN/messages.po index 0acb1669f3..5dbbbcf3f3 100644 --- a/carbon/locale/zh-CN/messages.po +++ b/carbon/locale/zh-CN/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-04-17 10:38+0000\n" +"POT-Creation-Date: 2024-05-15 15:41+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" From 6fbe3b7a83b7f4b76e4219da68de9604b8baab1c Mon Sep 17 00:00:00 2001 From: Marcus Aurelius <91024694+0xAurelius@users.noreply.github.com> Date: Fri, 17 May 2024 13:12:44 -0400 Subject: [PATCH 3/6] Remove Li.Fi/Etherspot blurb since outdated (#2351) --- app/components/views/Stake/index.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/app/components/views/Stake/index.tsx b/app/components/views/Stake/index.tsx index 7d82072aca..3fd9be3650 100644 --- a/app/components/views/Stake/index.tsx +++ b/app/components/views/Stake/index.tsx @@ -1,4 +1,3 @@ -import FiberNewRoundedIcon from "@mui/icons-material/FiberNewRounded"; import InfoOutlined from "@mui/icons-material/InfoOutlined"; import LibraryAddOutlined from "@mui/icons-material/LibraryAddOutlined"; import { providers } from "ethers"; @@ -26,7 +25,6 @@ import { } from "state/user"; import { - Anchor, ButtonPrimary, Spinner, Text, @@ -39,7 +37,7 @@ import { ImageCard } from "components/ImageCard"; import { RebaseCard } from "components/RebaseCard"; import { TransactionModal } from "components/TransactionModal"; -import { addresses, urls } from "@klimadao/lib/constants"; +import { addresses } from "@klimadao/lib/constants"; import { DisclamerModal } from "components/DisclaimerModal"; import { tokenInfo } from "lib/getTokenInfo"; import * as styles from "./styles"; @@ -310,14 +308,6 @@ export const Stake = (props: Props) => { Stake, hold, and earn compounding sKLIMA. - - - - Cross-chain staking is now available through{" "} - LI.FI and Etherspot, with - support for multiple chains and tokens. - -
From 8870d02a607b5fb42d3e02bb3d4c27cc05774fd7 Mon Sep 17 00:00:00 2001 From: AdKlDa0 Date: Fri, 17 May 2024 17:13:55 +0000 Subject: [PATCH 4/6] Extract translation strings --- app/locale/de/messages.po | 64 ++++++++++++++--------------- app/locale/en-pseudo/messages.po | 64 ++++++++++++++--------------- app/locale/en/messages.po | 62 +++++++++++++--------------- app/locale/es/messages.po | 64 ++++++++++++++--------------- app/locale/fr/messages.po | 64 ++++++++++++++--------------- app/locale/hi/messages.po | 64 ++++++++++++++--------------- app/locale/ko/messages.po | 64 ++++++++++++++--------------- app/locale/ru/messages.po | 64 ++++++++++++++--------------- app/locale/zh-CN/messages.po | 64 ++++++++++++++--------------- carbon/locale/de/messages.po | 2 +- carbon/locale/en-pseudo/messages.po | 2 +- carbon/locale/es/messages.po | 2 +- carbon/locale/fr/messages.po | 2 +- carbon/locale/hi/messages.po | 2 +- carbon/locale/ko/messages.po | 2 +- carbon/locale/ru/messages.po | 2 +- carbon/locale/zh-CN/messages.po | 2 +- 17 files changed, 277 insertions(+), 313 deletions(-) diff --git a/app/locale/de/messages.po b/app/locale/de/messages.po index 279b8a8f1c..7608a261cd 100644 --- a/app/locale/de/messages.po +++ b/app/locale/de/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "Bestätigen und akzeptieren" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "Genehmigen" @@ -38,7 +38,7 @@ msgstr "Kapazität" msgid "Enter Quantity" msgstr "Menge angeben" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "Menge eingeben" @@ -47,7 +47,7 @@ msgstr "Menge eingeben" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "Nutzerinnen und Nutzer, die ihren CO2-Fußabdruck mit einem Pool-Token ausgleichen möchten, können <0>diese Seite verwenden." -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "Unzureichendes Guthaben" @@ -68,9 +68,9 @@ msgstr "Guthaben wird geladen..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "Lade..." @@ -686,18 +686,18 @@ msgstr "Sprache wechseln" msgid "shared.confirming" msgstr "Bestätigen..." -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "Lade..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "Menge eingeben" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "FEHLER" @@ -706,14 +706,14 @@ msgstr "FEHLER" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "Anmelden / Verbinden" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "Max" @@ -722,28 +722,28 @@ msgstr "Max" msgid "shared.sold_out" msgstr "Ausverkauft" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "ROI über fünf Tage" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "Ungefähre Belohnungen inklusive Zinseszinseffekt, falls du über fünf Tage gestaket bleibst." -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "AKR" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "Jährliche KLIMA-Belohnungen, Zinseszinseffekte inbegriffen, sofern die aktuelle Belohnungsrate über zwölf Monate identisch bleibt (Rate kann sich ändern)." #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "Stake deine KLIMA-Tokens, um sKLIMA zu erhalten. Nach jedem Rebase wird dein sKLIMA um die angegebene Prozentwahl wachsen." @@ -751,27 +751,23 @@ msgstr "Stake deine KLIMA-Tokens, um sKLIMA zu erhalten. Nach jedem Rebase wird msgid "stake.estimated_payout" msgstr "Geschätzte Auszahlung (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "Index" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "Menge an KLIMA, die du heute hättest, wenn du 1 KLIMA am Starttag gestaket hättest. Nützlich für Buchführungszwecke." -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "Zu stakende Menge" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "Zu unstakende Menge" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "Cross-Chain-CO2-Ausgleich wird durch <0>LI.FI und Etherspot ermöglicht. Zahlreiche Blockchains und Tokens werden unterstützt." - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "Ungefährer nächster Rebase" @@ -788,26 +784,26 @@ msgstr "Rebase" msgid "stake.rebase.info" msgstr "Das Protokoll generiert und verteilt automatisch Belohnungen. Deine Auszahlung wird als Prozentsatz deines sKLIMA-Guthabens berechnet." -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "Staken" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "Stake, behalte und verdiene automatisch verzinstes sKLIMA." -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "KLIMA staken" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "Unstaken" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "KLIMA unstaken" diff --git a/app/locale/en-pseudo/messages.po b/app/locale/en-pseudo/messages.po index 07ec628419..b1493016a6 100644 --- a/app/locale/en-pseudo/messages.po +++ b/app/locale/en-pseudo/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Enter Quantity" msgstr "" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "" -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "" @@ -68,9 +68,9 @@ msgstr "" #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "" @@ -682,18 +682,18 @@ msgstr "" msgid "shared.confirming" msgstr "" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "" -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "" @@ -702,14 +702,14 @@ msgstr "" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "" @@ -718,28 +718,28 @@ msgstr "" msgid "shared.sold_out" msgstr "" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "" -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "" #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "" @@ -747,27 +747,23 @@ msgstr "" msgid "stake.estimated_payout" msgstr "" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "" -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "" - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "" @@ -784,26 +780,26 @@ msgstr "" msgid "stake.rebase.info" msgstr "" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "" -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "" diff --git a/app/locale/en/messages.po b/app/locale/en/messages.po index 11a6a627e0..ae77216eac 100644 --- a/app/locale/en/messages.po +++ b/app/locale/en/messages.po @@ -19,7 +19,7 @@ msgstr "Acknowledge and Accept" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "Approve" @@ -44,7 +44,7 @@ msgstr "Capacity" msgid "Enter Quantity" msgstr "Enter Quantity" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "Enter quantity" @@ -53,7 +53,7 @@ msgstr "Enter quantity" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "For users who want to offset paying with a pool token, please use <0>this site." -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "Insufficient balance" @@ -74,9 +74,9 @@ msgstr "Loading balances..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "Loading..." @@ -688,18 +688,18 @@ msgstr "Change language" msgid "shared.confirming" msgstr "Confirming" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "Loading..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "Enter Amount" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "ERROR" @@ -708,14 +708,14 @@ msgstr "ERROR" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "Login / Connect" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "Max" @@ -724,28 +724,28 @@ msgstr "Max" msgid "shared.sold_out" msgstr "Sold Out" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "5 Day Rewards" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "Approximate rewards, including compounding, should you remain staked for 5 days." -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "AKR" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "Annualized KLIMA Rewards, including compounding, should the current reward rate remain unchanged for 12 months (reward rate may be subject to change)." #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "Stake your KLIMA tokens to receive sKLIMA. After every rebase, your sKLIMA balance will increase by the given percentage." @@ -753,27 +753,23 @@ msgstr "Stake your KLIMA tokens to receive sKLIMA. After every rebase, your sKLI msgid "stake.estimated_payout" msgstr "Est. payout (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "Index" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "Amount of KLIMA you would have today if you staked 1 KLIMA on launch day. Useful for accounting purposes." -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "Amount to stake" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "Amount to unstake" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "Cross-chain staking is now available through <0>LI.FI and Etherspot, with support for multiple chains and tokens." - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "Approx. next rebase" @@ -790,26 +786,26 @@ msgstr "Rebase" msgid "stake.rebase.info" msgstr "The protocol automatically mints and distributes rewards. Your payout is a percentage of your sKLIMA balance" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "Stake" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "Stake, hold, and earn compounding sKLIMA." -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "Stake KLIMA" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "Unstake" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "Unstake KLIMA" diff --git a/app/locale/es/messages.po b/app/locale/es/messages.po index 04e26a6b52..779fbc43b9 100644 --- a/app/locale/es/messages.po +++ b/app/locale/es/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "Reconocer y aceptar" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "Aprobar" @@ -38,7 +38,7 @@ msgstr "Capacidad" msgid "Enter Quantity" msgstr "Introduce la cantidad" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "Introduce la cantidad" @@ -47,7 +47,7 @@ msgstr "Introduce la cantidad" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "Para los usuarios que quieran compensar el pago con un pool token, utilice <0>este sitio ." -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "Saldo insuficiente" @@ -68,9 +68,9 @@ msgstr "Cargando saldos..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "Cargando..." @@ -682,18 +682,18 @@ msgstr "Cambiar idioma" msgid "shared.confirming" msgstr "Confirmando" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "Cargando..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "Ingrese la cantidad" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "ERROR" @@ -702,14 +702,14 @@ msgstr "ERROR" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "Iniciar sesión / Conectar" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "Max" @@ -718,28 +718,28 @@ msgstr "Max" msgid "shared.sold_out" msgstr "Agotado" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "Recompensas en 5 días" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "Recompensas aproximadas, incluyendo el compounding, en caso de hacer staking durante 5 días." -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "AKR" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "Recompensas KLIMA anualizadas, incluida la capitalización, en caso de que la tasa de recompensa actual se mantenga sin cambios durante 12 meses (la tasa de recompensa puede estar sujeta a cambios)." #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "Haga staking con sus tokens KLIMA para recibir sKLIMA. Después de cada rebase, su saldo de sKLIMA aumentará en el porcentaje indicado." @@ -747,27 +747,23 @@ msgstr "Haga staking con sus tokens KLIMA para recibir sKLIMA. Después de cada msgid "stake.estimated_payout" msgstr "Pago estimado (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "Índice" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "Cantidad de KLIMA que tendrías hoy si hubieras hecho staking con 1 KLIMA el día del lanzamiento. Útil para fines contables." -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "Cantidad para hacer staking" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "Cantidad para retirar" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "El staking entre cadenas ya está disponible a través de <0>LI.FI y Etherspot, con soporte para múltiples cadenas y tokens." - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "Siguiente rebase aprox." @@ -784,26 +780,26 @@ msgstr "Rebase" msgid "stake.rebase.info" msgstr "El protocolo mintea y distribuye automáticamente las recompensas. Su pago es un porcentaje de su saldo sKLIMA" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "Stake" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "Haz staking, holdea y gana sKLIMA." -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "Stake KLIMA" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "Retirar" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "Retirar KLIMA" diff --git a/app/locale/fr/messages.po b/app/locale/fr/messages.po index 8ebe7859d0..ec478b480c 100644 --- a/app/locale/fr/messages.po +++ b/app/locale/fr/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "Accuser réception et Accepter" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "Approuver" @@ -38,7 +38,7 @@ msgstr "Capacité" msgid "Enter Quantity" msgstr "Entrez la Quantité" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "Entrez la quantité" @@ -47,7 +47,7 @@ msgstr "Entrez la quantité" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "Pour les utilisateurs qui souhaitent compenser le paiement par un jeton de pool, veuillez utiliser <0>ce site." -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "Solde insuffisant" @@ -68,9 +68,9 @@ msgstr "Chargement des soldes des comptes..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "Chargement..." @@ -682,18 +682,18 @@ msgstr "Changer de langue" msgid "shared.confirming" msgstr "Confirmation en cours" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "Chargement..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "Entrez le montant" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "ERREUR" @@ -702,14 +702,14 @@ msgstr "ERREUR" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "S'identifier / Se connecter" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "Max" @@ -718,28 +718,28 @@ msgstr "Max" msgid "shared.sold_out" msgstr "Épuisé" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "Récompenses sur 5 jours" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "Récompenses approximatives, comprenant les intérêts composés, si vous laissez votre mise pendant 5 jours." -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "AKR" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "Rendement en KLIMA annualisé, y compris les intérêts composés, si le rendement actuel reste inchangé pendant 12 mois (le rendement peut être variable)." #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "Mettez en jeu vos jetons KLIMA pour recevoir des sKLIMA. Après chaque rebasement, votre solde sKLIMA augmentera du pourcentage indiqué." @@ -747,27 +747,23 @@ msgstr "Mettez en jeu vos jetons KLIMA pour recevoir des sKLIMA. Après chaque r msgid "stake.estimated_payout" msgstr "Est. paiement (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "Indice" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "Montant de KLIMA que vous auriez aujourd'hui si vous aviez mis en jeu 1 KLIMA le jour du lancement. Utile à des fins comptables." -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "Montant à mettre en jeu" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "Montant de la mise à enlever" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "La mise en jeu inter-chaînes est désormais disponible via <0>LI.FI et Etherspot, avec un support pour plusieurs chaînes et jetons." - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "Environ. Prochain rebasage" @@ -784,26 +780,26 @@ msgstr "Rebasage" msgid "stake.rebase.info" msgstr "Le protocole génère et distribue automatiquement les intérêts. Vous êtes rémunéré un pourcentage de votre solde en sKLIMA" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "Mettre en jeu" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "Mettez en jeu, accumulez et gagnez des sKLIMA via les intérêts composés." -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "Mettre en jeu des KLIMA" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "Enlever sa mise" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "Enlever sa mise de KLIMA" diff --git a/app/locale/hi/messages.po b/app/locale/hi/messages.po index d1e119a354..8df7b21ea5 100644 --- a/app/locale/hi/messages.po +++ b/app/locale/hi/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "स्वीकार करें और स्वीकार कर #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "मंज़ूरी दें" @@ -38,7 +38,7 @@ msgstr "क्षमता" msgid "Enter Quantity" msgstr "मात्रा दर्ज करें" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "मात्रा दर्ज करें" @@ -47,7 +47,7 @@ msgstr "मात्रा दर्ज करें" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "" -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "अपर्याप्त शेषराशि" @@ -68,9 +68,9 @@ msgstr "लोड हो रहा है..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "लोड हो रहा है..." @@ -682,18 +682,18 @@ msgstr "भाषा बदलें" msgid "shared.confirming" msgstr "पुष्टि" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "लोड हो रहा है..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "राशि डालें" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "ग़लती" @@ -702,14 +702,14 @@ msgstr "ग़लती" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "साइन इन / कनेक्ट करें" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "अधिकतम" @@ -718,28 +718,28 @@ msgstr "अधिकतम" msgid "shared.sold_out" msgstr "बिक चुका है" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "5 दिवसीय पुरस्कार" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "कंपाउंडिंग सहित अनुमानित पुरस्कार, यदि आप 5 दिनों तक दाँव पर लगाते हैं।" -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "AKR" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "कंपाउंडिंग सहित वार्षिक KLIMA पुरस्कार, यदि वर्तमान इनाम दर 12 महीनों के लिए अपरिवर्तित रहे (इनाम दर परिवर्तन के अधीन हो सकती है)।" #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "sKLIMA प्राप्त करने के लिए अपने KLIMA टोकन को दाँव पर लगाएँ। हर रिबेस के बाद, आपका sKLIMA बैलेंस दिए गए प्रतिशत के हिसाब से बढ़ जाएगा।" @@ -747,27 +747,23 @@ msgstr "sKLIMA प्राप्त करने के लिए अपने msgid "stake.estimated_payout" msgstr "अनुमानित भुगतान (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "इंडेक्स" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "यदि आप लॉन्च के दिन 1 KLIMA दाँव पर लगाते तो आज आपके पास KLIMA की यह राशि होती। लेखांकन के लिए उपयोगी।" -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "स्टेक राशि" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "अनस्टेक राशि" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "क्रॉस-चेन ऑफ़सेटिंग, कई श्रृंखलाओं और टोकन के समर्थन के साथ, अब <0>LI.FI and Etherspot के माध्यम से उपलब्ध है।" - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "लगभग। अगला रिबेस" @@ -784,26 +780,26 @@ msgstr "रिबेस करना" msgid "stake.rebase.info" msgstr "प्रोटोकॉल स्वचालित रूप से पुरस्कार बनाता और वितरित करता है। आपका भुगतान आपके sKLIMA बैलेंस का कुछेक प्रतिशत है" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "दाँव लगाना" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "दाँव पर लगाएँ, होल्ड करें, और कंपाउंडिंग sKLIMA अर्जित करें" -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "KLIMA दाँव पर लगाएँ" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "अनस्टेक करना" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "KLIMA अनस्टेक करें" diff --git a/app/locale/ko/messages.po b/app/locale/ko/messages.po index 37ed2d5023..d328b693b5 100644 --- a/app/locale/ko/messages.po +++ b/app/locale/ko/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Enter Quantity" msgstr "" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "" -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "" @@ -68,9 +68,9 @@ msgstr "" #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "" @@ -682,18 +682,18 @@ msgstr "" msgid "shared.confirming" msgstr "" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "" -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "" @@ -702,14 +702,14 @@ msgstr "" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "" @@ -718,28 +718,28 @@ msgstr "" msgid "shared.sold_out" msgstr "" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "" -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "" #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "" @@ -747,27 +747,23 @@ msgstr "" msgid "stake.estimated_payout" msgstr "" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "" -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "" - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "" @@ -784,26 +780,26 @@ msgstr "" msgid "stake.rebase.info" msgstr "" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "" -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "" diff --git a/app/locale/ru/messages.po b/app/locale/ru/messages.po index dd59196ec7..66b9a59ed4 100644 --- a/app/locale/ru/messages.po +++ b/app/locale/ru/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "Одобрить" @@ -38,7 +38,7 @@ msgstr "Вместимость" msgid "Enter Quantity" msgstr "" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "Введите количество" @@ -47,7 +47,7 @@ msgstr "Введите количество" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "" -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "" @@ -68,9 +68,9 @@ msgstr "Загрузка остатков..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "Загрузка..." @@ -688,18 +688,18 @@ msgstr "измененить язык" msgid "shared.confirming" msgstr "Подтверждение" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "Загрузка..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "Введите сумму" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "ОШИБКА" @@ -708,14 +708,14 @@ msgstr "ОШИБКА" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "Войти / Подключиться" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "Максимум" @@ -724,28 +724,28 @@ msgstr "Максимум" msgid "shared.sold_out" msgstr "РАСПРОДАННЫЙ" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "5-дневные награды" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "Приблизительные вознаграждения, включая начисление сложных процентов, если вы будете оставаться в ставках в течение 5 дней." -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "АКР" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "Годовые вознаграждения KLIMA, включая начисление сложных процентов, если текущая ставка вознаграждения останется неизменной в течение 12 месяцев (ставка вознаграждения может быть изменена)." #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "Стейкайте ваши KLIMA, чтобы получить sKLIMA. После каждого пополнения ваш баланс sKLIMA будет увеличиваться на указанный процент." @@ -753,27 +753,23 @@ msgstr "Стейкайте ваши KLIMA, чтобы получить sKLIMA. msgid "stake.estimated_payout" msgstr "приблизительная выплата (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "Показатель" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "Сумма KLIMA, которую вы имели бы сегодня, если бы сделали ставку в 1 KLIMA в день запуска. Полезно для бухгалтерских целей." -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "Сумма стейкинга" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "Сумма анстейкинга" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "Межсетевой стейкинг теперь доступен через <0>LI.FI и Etherspot. , с поддержкой нескольких цепочек и токенов." - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "приблизительный следующий пересмотр" @@ -790,26 +786,26 @@ msgstr "следующий пересмотр" msgid "stake.rebase.info" msgstr "Протокол автоматически майнит и распределяет вознаграждения. Ваша выплата - это процент от вашего баланса sKLIMA" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "Стейкинг" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "Стейкайте, сохраняйте и зарабатывайте на sKLIMA." -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "Стейкинг KLIMA" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "Unstake" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "Unstake KLIMA" diff --git a/app/locale/zh-CN/messages.po b/app/locale/zh-CN/messages.po index 1986f1fff4..1b48abee08 100644 --- a/app/locale/zh-CN/messages.po +++ b/app/locale/zh-CN/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "确认并接受" #: components/TransactionModal/Approve.tsx:93 #: components/views/Bond/index.tsx:454 -#: components/views/Stake/index.tsx:252 +#: components/views/Stake/index.tsx:250 #: components/views/Wrap/index.tsx:230 msgid "Approve" msgstr "批准" @@ -38,7 +38,7 @@ msgstr "容量" msgid "Enter Quantity" msgstr "输入数量" -#: components/views/Stake/index.tsx:242 +#: components/views/Stake/index.tsx:240 #: components/views/Wrap/index.tsx:212 msgid "Enter quantity" msgstr "输入数量" @@ -47,7 +47,7 @@ msgstr "输入数量" msgid "For users who want to offset paying with a pool token, please use <0>this site." msgstr "对于想要使用矿池代币抵消付款的用户,请使用<0>此网站。" -#: components/views/Stake/index.tsx:247 +#: components/views/Stake/index.tsx:245 #: components/views/Wrap/index.tsx:225 msgid "Insufficient balance" msgstr "余额不足" @@ -68,9 +68,9 @@ msgstr "正在加载余额..." #: components/RebaseCard/index.tsx:58 #: components/RebaseCard/index.tsx:69 #: components/views/Loading/index.tsx:11 -#: components/views/Stake/index.tsx:431 -#: components/views/Stake/index.tsx:438 -#: components/views/Stake/index.tsx:445 +#: components/views/Stake/index.tsx:421 +#: components/views/Stake/index.tsx:428 +#: components/views/Stake/index.tsx:435 #: components/views/Wrap/index.tsx:207 msgid "Loading..." msgstr "正在加载..." @@ -682,18 +682,18 @@ msgstr "变更语言" msgid "shared.confirming" msgstr "确认中" -#: components/views/Stake/index.tsx:237 +#: components/views/Stake/index.tsx:235 msgid "shared.connect_wallet" msgstr "正在加载..." -#: components/views/Stake/index.tsx:259 -#: components/views/Stake/index.tsx:268 +#: components/views/Stake/index.tsx:257 +#: components/views/Stake/index.tsx:266 msgid "shared.enter_amount" msgstr "输入金额" #: components/views/Bond/index.tsx:475 #: components/views/Bond/index.tsx:494 -#: components/views/Stake/index.tsx:276 +#: components/views/Stake/index.tsx:274 #: components/views/Wrap/index.tsx:247 msgid "shared.error" msgstr "错误" @@ -702,14 +702,14 @@ msgstr "错误" #: components/views/Buy/index.tsx:65 #: components/views/Home/index.tsx:154 #: components/views/PKlima/index.tsx:149 -#: components/views/Stake/index.tsx:229 +#: components/views/Stake/index.tsx:227 #: components/views/Wrap/index.tsx:199 msgid "shared.login_connect" msgstr "登录/连接" #: components/views/Bond/index.tsx:605 #: components/views/PKlima/index.tsx:239 -#: components/views/Stake/index.tsx:372 +#: components/views/Stake/index.tsx:362 #: components/views/Wrap/index.tsx:346 msgid "shared.max" msgstr "最大额度" @@ -718,28 +718,28 @@ msgstr "最大额度" msgid "shared.sold_out" msgstr "售罄" -#: components/views/Stake/index.tsx:385 +#: components/views/Stake/index.tsx:375 msgid "stake.5_day_rewards" msgstr "5天奖励" #. Long sentence -#: components/views/Stake/index.tsx:388 +#: components/views/Stake/index.tsx:378 msgid "stake.5_day_rewards.tooltip" msgstr "如果连续质押5天,约可获得...奖励,包括复利。" -#: components/views/Stake/index.tsx:401 +#: components/views/Stake/index.tsx:391 msgid "stake.akr" msgstr "KLIMA年化奖励率" #. Long sentence -#: components/views/Stake/index.tsx:404 +#: components/views/Stake/index.tsx:394 msgid "stake.akr.tooltip" msgstr "如果当前奖励利率在12个月内保持不变(奖励利率可能会发生变化), KLIMA 年化奖利率...,包括复利。" #. Long sentence #. Long sentence #: components/views/Buy/index.tsx:78 -#: components/views/Stake/index.tsx:294 +#: components/views/Stake/index.tsx:292 msgid "stake.balancescard.tooltip" msgstr "质押代币 KLIMA 即获得 sKLIMA。每次变基后,sKLIMA余额将按给定的百分比增加。" @@ -747,27 +747,23 @@ msgstr "质押代币 KLIMA 即获得 sKLIMA。每次变基后,sKLIMA余额将 msgid "stake.estimated_payout" msgstr "预计支出 (sKLIMA)" -#: components/views/Stake/index.tsx:415 +#: components/views/Stake/index.tsx:405 msgid "stake.index" msgstr "指数" #. Long sentence -#: components/views/Stake/index.tsx:418 +#: components/views/Stake/index.tsx:408 msgid "stake.index.tooltip" msgstr "如果在发行当日质押1个KLIMA,至今您将拥有的 KLIMA 数量。对做账有利。" -#: components/views/Stake/index.tsx:55 +#: components/views/Stake/index.tsx:53 msgid "stake.inputplaceholder.stake" msgstr "质押量" -#: components/views/Stake/index.tsx:59 +#: components/views/Stake/index.tsx:57 msgid "stake.inputplaceholder.unstake" msgstr "取消质押量" -#: components/views/Stake/index.tsx:315 -msgid "stake.lifi" -msgstr "现在可以通过 <0>LI.FI 和 Etherspot 进行跨链质押,支持多个链和通证。" - #: components/RebaseCard/index.tsx:61 msgid "stake.next_rebase" msgstr "至下次变基约还有..." @@ -784,26 +780,26 @@ msgstr "变基" msgid "stake.rebase.info" msgstr "该协议自动铸造和分配奖励。所得是您的 sKLIMA 余额的百分比" -#: components/views/Stake/index.tsx:335 +#: components/views/Stake/index.tsx:325 msgid "stake.stake" msgstr "质押" -#: components/views/Stake/index.tsx:309 +#: components/views/Stake/index.tsx:307 msgid "stake.stake_hold_earn" msgstr "质押、持有并赚取 sKLIMA 复利 。" -#: components/views/Stake/index.tsx:258 -#: components/views/Stake/index.tsx:306 -#: components/views/Stake/index.tsx:471 +#: components/views/Stake/index.tsx:256 +#: components/views/Stake/index.tsx:304 +#: components/views/Stake/index.tsx:461 msgid "stake.stake_klima" msgstr "质押 KLIMA" -#: components/views/Stake/index.tsx:347 +#: components/views/Stake/index.tsx:337 msgid "stake.unstake" msgstr "取消质押" -#: components/views/Stake/index.tsx:267 -#: components/views/Stake/index.tsx:473 +#: components/views/Stake/index.tsx:265 +#: components/views/Stake/index.tsx:463 msgid "stake.unstake_klima" msgstr "取消质押KLIMA" diff --git a/carbon/locale/de/messages.po b/carbon/locale/de/messages.po index 2a88f07592..0938cd0425 100644 --- a/carbon/locale/de/messages.po +++ b/carbon/locale/de/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/en-pseudo/messages.po b/carbon/locale/en-pseudo/messages.po index b9d886c730..fb4a11d355 100644 --- a/carbon/locale/en-pseudo/messages.po +++ b/carbon/locale/en-pseudo/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/es/messages.po b/carbon/locale/es/messages.po index 66c086f148..212e0eb842 100644 --- a/carbon/locale/es/messages.po +++ b/carbon/locale/es/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/fr/messages.po b/carbon/locale/fr/messages.po index cc6980814f..1db9e4b28a 100644 --- a/carbon/locale/fr/messages.po +++ b/carbon/locale/fr/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/hi/messages.po b/carbon/locale/hi/messages.po index 1e0216d19d..3ced10b9e9 100644 --- a/carbon/locale/hi/messages.po +++ b/carbon/locale/hi/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/ko/messages.po b/carbon/locale/ko/messages.po index 55a6ea31d5..560d751dc6 100644 --- a/carbon/locale/ko/messages.po +++ b/carbon/locale/ko/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/ru/messages.po b/carbon/locale/ru/messages.po index 06f13496dd..51c3f17466 100644 --- a/carbon/locale/ru/messages.po +++ b/carbon/locale/ru/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/zh-CN/messages.po b/carbon/locale/zh-CN/messages.po index 5dbbbcf3f3..4bc33c28b9 100644 --- a/carbon/locale/zh-CN/messages.po +++ b/carbon/locale/zh-CN/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-15 15:41+0000\n" +"POT-Creation-Date: 2024-05-17 17:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" From 2d1ffb0731a3f2c9a8325e40de7f105a3506e72e Mon Sep 17 00:00:00 2001 From: Marcus Aurelius <91024694+0xAurelius@users.noreply.github.com> Date: Fri, 17 May 2024 14:31:44 -0400 Subject: [PATCH 5/6] Fix Puro registry ID (#2348) --- carbon-projects/schemas/project.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carbon-projects/schemas/project.ts b/carbon-projects/schemas/project.ts index 5ee6db89e6..56672b7a91 100644 --- a/carbon-projects/schemas/project.ts +++ b/carbon-projects/schemas/project.ts @@ -76,7 +76,7 @@ export default defineType({ { title: "Gold Standard", value: "GS" }, { title: "EcoRegistry", value: "ECO" }, { title: "International Carbon Registry", value: "ICR" }, - { title: "Puro", value: "PURO" }, + { title: "Puro", value: "PUR" }, { title: "J-Credit", value: "JCS" }, ], }, From 7c4ca3ededaf95dc8dd37f30c6f5bcb1dca1d87d Mon Sep 17 00:00:00 2001 From: AdKlDa0 Date: Fri, 17 May 2024 18:32:57 +0000 Subject: [PATCH 6/6] Extract translation strings --- app/locale/de/messages.po | 2 +- app/locale/en-pseudo/messages.po | 2 +- app/locale/es/messages.po | 2 +- app/locale/fr/messages.po | 2 +- app/locale/hi/messages.po | 2 +- app/locale/ko/messages.po | 2 +- app/locale/ru/messages.po | 2 +- app/locale/zh-CN/messages.po | 2 +- carbon/locale/de/messages.po | 2 +- carbon/locale/en-pseudo/messages.po | 2 +- carbon/locale/es/messages.po | 2 +- carbon/locale/fr/messages.po | 2 +- carbon/locale/hi/messages.po | 2 +- carbon/locale/ko/messages.po | 2 +- carbon/locale/ru/messages.po | 2 +- carbon/locale/zh-CN/messages.po | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/app/locale/de/messages.po b/app/locale/de/messages.po index 7608a261cd..5faea65b39 100644 --- a/app/locale/de/messages.po +++ b/app/locale/de/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/en-pseudo/messages.po b/app/locale/en-pseudo/messages.po index b1493016a6..325a966b49 100644 --- a/app/locale/en-pseudo/messages.po +++ b/app/locale/en-pseudo/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/es/messages.po b/app/locale/es/messages.po index 779fbc43b9..04ca30cdce 100644 --- a/app/locale/es/messages.po +++ b/app/locale/es/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/fr/messages.po b/app/locale/fr/messages.po index ec478b480c..a1d4d9e3f3 100644 --- a/app/locale/fr/messages.po +++ b/app/locale/fr/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/hi/messages.po b/app/locale/hi/messages.po index 8df7b21ea5..548cbcda54 100644 --- a/app/locale/hi/messages.po +++ b/app/locale/hi/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/ko/messages.po b/app/locale/ko/messages.po index d328b693b5..c2f57cb042 100644 --- a/app/locale/ko/messages.po +++ b/app/locale/ko/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/ru/messages.po b/app/locale/ru/messages.po index 66b9a59ed4..552bd368ac 100644 --- a/app/locale/ru/messages.po +++ b/app/locale/ru/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/app/locale/zh-CN/messages.po b/app/locale/zh-CN/messages.po index 1b48abee08..74d8497f8f 100644 --- a/app/locale/zh-CN/messages.po +++ b/app/locale/zh-CN/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/de/messages.po b/carbon/locale/de/messages.po index 0938cd0425..9797b1d87f 100644 --- a/carbon/locale/de/messages.po +++ b/carbon/locale/de/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/en-pseudo/messages.po b/carbon/locale/en-pseudo/messages.po index fb4a11d355..c4a189a1d2 100644 --- a/carbon/locale/en-pseudo/messages.po +++ b/carbon/locale/en-pseudo/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/es/messages.po b/carbon/locale/es/messages.po index 212e0eb842..16d0435cfd 100644 --- a/carbon/locale/es/messages.po +++ b/carbon/locale/es/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/fr/messages.po b/carbon/locale/fr/messages.po index 1db9e4b28a..1d91829927 100644 --- a/carbon/locale/fr/messages.po +++ b/carbon/locale/fr/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/hi/messages.po b/carbon/locale/hi/messages.po index 3ced10b9e9..bc3bee35d2 100644 --- a/carbon/locale/hi/messages.po +++ b/carbon/locale/hi/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/ko/messages.po b/carbon/locale/ko/messages.po index 560d751dc6..cc3f65c49d 100644 --- a/carbon/locale/ko/messages.po +++ b/carbon/locale/ko/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/ru/messages.po b/carbon/locale/ru/messages.po index 51c3f17466..a0c3cfc223 100644 --- a/carbon/locale/ru/messages.po +++ b/carbon/locale/ru/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/carbon/locale/zh-CN/messages.po b/carbon/locale/zh-CN/messages.po index 4bc33c28b9..7cad051134 100644 --- a/carbon/locale/zh-CN/messages.po +++ b/carbon/locale/zh-CN/messages.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-05-17 17:13+0000\n" +"POT-Creation-Date: 2024-05-17 18:32+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n"