community updates

This commit is contained in:
gozzy 2022-09-09 09:53:03 +00:00
parent 7d340f715d
commit 1ccc7f3a89
4 changed files with 51 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{
"closeNotification": "Close notification",
"indexNotification": "Tornado.cash {link}. However, it is still an experimental software. Please use at your own risk.",
"indexNotificationLinkText": "was audited",
"indexNotification": "Tornado Cash is now being maintained by the community, for more information visit {link}",
"indexNotificationLinkText": "tornadocash.community",
"binanceInternalTxsNotification": "Please, do not use Binance wallet addresses for withdrawals. Internal transactions (including Tornado.cash withdrawals) are not currently supported on Binance Exchange. If you have an issue receiving your funds, you should contact Binance support.",
"deposit": "Deposit",
"depositButton": "Deposit",
@ -165,6 +165,10 @@
"tooManyDecimalPoints": "[ethjs-unit] while converting number {value} to wei, too many decimal points",
"tooManyDecimalPlaces": "[ethjs-unit] while converting number {value} to wei, too many decimal places",
"settings": "Settings",
"rpcDisclaimer": "After the {linkOne} most RPC endpoints have censored deposits, make sure your wallet is manually configured to a working endpoint. See options on {linkTwo} and how to {linkThree}",
"rpcDisclaimerLinkOneText": "OFAC sanctions",
"rpcDisclaimerLinkTwoText": "chainlist.org",
"rpcDisclaimerLinkThreeText": "how to configure MetaMask",
"rpc": "RPC endpoint",
"rpcStatusOk": "RPC status: OK",
"rpcIsDown": "RPC is down",

View File

@ -1,6 +1,6 @@
{
"closeNotification": "Закрыть",
"indexNotification": "Tornado.cash {link}. Однако, это экспериментальный проект, используйте на свой страх и риск.",
"indexNotification": "Tornado Cash в настоящее время поддерживается сообществом, для получения дополнительной информации посетите {link}",
"indexNotificationLinkText": "прошел аудит",
"binanceInternalTxsNotification": "Пожалуйста, не используйте адреса кошельков Binance для вывода средств. Внутренние транзакции (включая снятие средств с Tornado.cash) в настоящее время не поддерживаются на бирже Binance. Если у вас возникли проблемы с получением средств, вам следует обратиться в службу поддержки Binance.",
"deposit": "Депозит",
@ -165,6 +165,10 @@
"tooManyDecimalPoints": "[ethjs-unit] слишком много десятичных знаков при преобразовании числа {значения} в wei",
"tooManyDecimalPlaces": "[ethjs-unit] слишком много знаков после запятой при преобразовании числа {value} в wei",
"settings": "Настройки",
"rpcDisclaimer": "После {linkOne} большинство конечных точек RPC подвергают цензуре депозиты, убедитесь, что ваш кошелек вручную настроен на работающую конечную точку. См. {linkTwo}, чтобы узнать о вариантах и о том, {linkThree}",
"rpcDisclaimerLinkOneText": "санкций OFAC",
"rpcDisclaimerLinkTwoText": "chainlist.org",
"rpcDisclaimerLinkThreeText": "как настроить MetaMask",
"rpc": "RPC",
"rpcStatusOk": "Статус RPC: OK",
"rpcIsDown": "RPC не отвечает",

View File

@ -1,6 +1,6 @@
{
"closeNotification": "关闭通知",
"indexNotification": "Tornado.cash {link}。 但它仍处在实验阶段,请注意并自行承担使用风险。",
"indexNotification": "Tornado Cash 现在由社区维护,有关更多信息,请访问 {link}",
"indexNotificationLinkText": "已通过安全审计",
"binanceInternalTxsNotification": "请不要使用Binance钱包地址进行提款。Binance交易所目前不支持内部交易包括Tornado.cash提款。如果您有资金未收到的问题您应该联系Binance支持。",
"deposit": "存款",
@ -165,6 +165,10 @@
"tooManyDecimalPoints": "[ethjs-unit] 将数字 {value} 转换为 wei 时, 小数点过多",
"tooManyDecimalPlaces": "[ethjs-unit] 将数字 {value} 转换为 wei 时, 小数位数过多",
"settings": "设置",
"rpcDisclaimer": "之后 {linkOne} 大多数 RPC 端点都有审查存款,请确保您的钱包被手动配置为工作端点。查看选项 {linkTwo} 以及如何 {linkThree}",
"rpcDisclaimerLinkOneText": "OFAC 制裁",
"rpcDisclaimerLinkTwoText": "chainlist.org",
"rpcDisclaimerLinkThreeText": "如何配置 MetaMask",
"rpc": "节点地址",
"rpcStatusOk": "节点状态: OK",
"rpcIsDown": "无法连接此节点",

View File

@ -40,12 +40,45 @@
>
<i18n path="indexNotification">
<template v-slot:link>
<a href="https://tornadocash.community" target="_blank" rel="noopener noreferrer">
{{ $t('indexNotificationLinkText') }}
</a>
</template>
</i18n>
</b-notification>
<b-notification
:active="isActiveNotification.second"
class="main-notification"
type="is-warning"
icon-pack="icon"
has-icon
:aria-close-label="$t('closeNotification')"
@close="disableNotification({ key: 'second' })"
>
<i18n path="rpcDisclaimer">
<template v-slot:linkOne>
<a
href="https://twitter.com/TornadoCash/status/1204745639759884289"
href="https://home.treasury.gov/news/press-releases/jy0916"
target="_blank"
rel="noopener noreferrer"
>{{ $t('indexNotificationLinkText') }}</a
>
{{ $t('rpcDisclaimerLinkOneText') }}
</a>
</template>
<template v-slot:linkTwo>
<a href="https://chainlist.org" target="_blank" rel="noopener noreferrer">
{{ $t('rpcDisclaimerLinkTwoText') }}
</a>
</template>
<template v-slot:linkThree>
<a
href="https://hackmd.io/@gozzy/tornado-cash-post-censorship#RPC"
target="_blank"
rel="noopener noreferrer"
>
{{ $t('rpcDisclaimerLinkThreeText') }}
</a>
</template>
</i18n>
</b-notification>