1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-22 17:33:23 +01:00

Adding terms of use link for opensea (#18381)

This commit is contained in:
Jyoti Puri 2023-03-30 22:25:02 +04:00 committed by GitHub
parent 6f7e382777
commit b3e45ea4bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 28 additions and 45 deletions

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Dies basiert auf Informationen von "
},
"thisServiceIsExperimental": {
"message": "Dieser Dienst ist experimentell"
},
"time": {
"message": "Zeit"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Αυτό βασίζεται σε πληροφορίες από"
},
"thisServiceIsExperimental": {
"message": "Η υπηρεσία αυτή είναι πειραματική"
},
"time": {
"message": "Ώρα"
},

View File

@ -4236,6 +4236,9 @@
"termsOfService": {
"message": "Terms of service"
},
"termsOfUse": {
"message": "terms of use"
},
"testNetworks": {
"message": "Test networks"
},
@ -4255,7 +4258,8 @@
"message": "This is based on information from "
},
"thisServiceIsExperimental": {
"message": "This service is experimental"
"message": "This service is experimental. By enabling this feature, you agree to OpenSea's $1.",
"description": "$1 is link to open sea terms of use"
},
"time": {
"message": "Time"

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Esto se basa en información de "
},
"thisServiceIsExperimental": {
"message": "Este servicio es experimental"
},
"time": {
"message": "Tiempo"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Ces informations proviennent de "
},
"thisServiceIsExperimental": {
"message": "Ce service est expérimental"
},
"time": {
"message": "Temps"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "से प्राप्त जानकारी पर आधारित है"
},
"thisServiceIsExperimental": {
"message": "यह सेवा प्रयोगात्मक है"
},
"time": {
"message": "समय"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Hal ini berdasarkan informasi dari "
},
"thisServiceIsExperimental": {
"message": "Layanan ini bersifat eksperimental"
},
"time": {
"message": "Waktu"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "これは次の情報源からの情報に基づくものです: "
},
"thisServiceIsExperimental": {
"message": "このサービスは実験段階です"
},
"time": {
"message": "時間"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "다음에 기반한 정보입니다: "
},
"thisServiceIsExperimental": {
"message": "이 서비스는 시험 서비스입니다"
},
"time": {
"message": "시간"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Isso se baseia em informações de "
},
"thisServiceIsExperimental": {
"message": "Esse serviço é experimental"
},
"time": {
"message": "Hora"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Это основано на информации от "
},
"thisServiceIsExperimental": {
"message": "Этот сервис является экспериментальным"
},
"time": {
"message": "Время"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Ito ay batay sa impormasyon mula sa "
},
"thisServiceIsExperimental": {
"message": "Eksperimental ang serbisyong ito"
},
"time": {
"message": "Oras"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Bu, şu kaynaktan alınan bilgilere dayanır: "
},
"thisServiceIsExperimental": {
"message": "Bu hizmet deneyseldir"
},
"time": {
"message": "Zaman"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "Điều này dựa trên thông tin từ "
},
"thisServiceIsExperimental": {
"message": "Đây là dịch vụ thử nghiệm"
},
"time": {
"message": "Thời gian"
},

View File

@ -4000,9 +4000,6 @@
"thisIsBasedOn": {
"message": "所根据的信息是来自"
},
"thisServiceIsExperimental": {
"message": "此服务是实验性的"
},
"time": {
"message": "时间"
},

View File

@ -85,7 +85,19 @@ exports[`ExperimentalTab with desktop enabled renders ExperimentalTab component
<h6
class="box box--margin-bottom-1 box--flex-direction-row typography typography--h6 typography--weight-normal typography--style-normal typography--color-text-alternative"
>
This service is experimental
<span>
This service is experimental. By enabling this feature, you agree to OpenSea's
<a
href="http://opensea.io/securityproviderterms"
rel="noopener noreferrer"
target="_blank"
>
terms of use
</a>
.
</span>
</h6>
<h5
class="box box--margin-top-2 box--margin-bottom-1 box--flex-direction-row typography typography--h5 typography--weight-medium typography--style-normal typography--color-text-muted"

View File

@ -209,7 +209,16 @@ export default class ExperimentalTab extends PureComponent {
color={TextColor.textAlternative}
marginTop={0}
>
{t('thisServiceIsExperimental')}
{t('thisServiceIsExperimental', [
<a
href="http://opensea.io/securityproviderterms"
key="termsOfUse"
rel="noopener noreferrer"
target="_blank"
>
{t('termsOfUse')}
</a>,
])}
</Typography>
<Typography
variant={TypographyVariant.H5}