Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions i18n/en/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -1315,5 +1315,14 @@
},
"LIMITED TIME": {
"message": "LIMITED TIME"
},
"You must use a different email address when creating your account on the new Deriv APIs.\n If you’d like to use the same email, you will need to change the email on your legacy\n account first, then use that email to sign up on {link}.": {
"message": "You must use a different email address when creating your account on the new Deriv APIs.\n If you’d like to use the same email, you will need to change the email on your legacy\n account first, then use that email to sign up on {link}."
},
"However, in order to onboard and support new users, you should migrate to the new Deriv APIs. {breakline}{breakline} To access the new Deriv APIs, you will need to create a new account on {link}. Your existing legacy credentials will not work there. Please use a different email address when signing up.": {
"message": "However, in order to onboard and support new users, you should migrate to the new Deriv APIs. {breakline}{breakline} To access the new Deriv APIs, you will need to create a new account on {link}. Your existing legacy credentials will not work there. Please use a different email address when signing up."
},
"If you'd like to use the same email, you will need to change the email on your legacy account first.": {
"message": "If you'd like to use the same email, you will need to change the email on your legacy account first."
}
}
9 changes: 9 additions & 0 deletions i18n/fr/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -1315,5 +1315,14 @@
},
"LIMITED TIME": {
"message": "OFFRE LIMITÉE"
},
"You must use a different email address when creating your account on the new Deriv APIs.\n If you'd like to use the same email, you will need to change the email on your legacy\n account first, then use that email to sign up on {link}.": {
"message": "Vous devez utiliser une adresse e-mail différente lors de la création de votre compte sur les nouveaux Deriv APIs.\n Si vous souhaitez utiliser la même adresse e-mail, vous devrez modifier l'adresse e-mail de votre ancien compte, puis utiliser cette adresse e-mail pour vous inscrire sur {link}."
},
"However, in order to onboard and support new users, you should migrate to the new Deriv APIs. {breakline}{breakline} To access the new Deriv APIs, you will need to create a new account on {link}. Your existing legacy credentials will not work there. Please use a different email address when signing up.": {
"message": "Cependant, afin d'intégrer et de prendre en charge de nouveaux utilisateurs, vous devriez migrer vers les nouveaux Deriv APIs. {breakline}{breakline} Pour accéder aux nouveaux Deriv APIs, vous devrez créer un nouveau compte sur {link}. Vos identifiants de l'ancienne version ne fonctionneront pas. Veuillez utiliser une adresse e-mail différente lors de votre inscription."
},
"If you'd like to use the same email, you will need to change the email on your legacy account first.": {
"message": "Si vous souhaitez utiliser la même adresse e-mail, vous devrez modifier l'adresse e-mail de votre ancien compte."
}
}
25 changes: 23 additions & 2 deletions src/features/Updates/FAQ/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ import styles from './FAQ.module.scss';
import Link from '@docusaurus/Link';

const FAQ_ITEMS = [
{
header: 'Can I use the same email to sign up on the new Deriv APIs?',
content: (
<p>
<Translate
values={{
link: (
<Link to='https://developers.deriv.com' className={styles.noticeLink}>
developers.deriv.com
</Link>
),
breakline: <br />,
}}
>
{`You must use a different email address when creating your account on the new Deriv APIs.
If you’d like to use the same email, you will need to change the email on your legacy
account first, then use that email to sign up on {link}.`}
</Translate>
</p>
),
},
{
header: 'Will my existing apps still work?',
content: (
Expand Down Expand Up @@ -54,8 +75,8 @@ const FAQ_ITEMS = [
content: (
<p>
<Translate>
Head straight to developers.deriv.com and create an account. The new Deriv APIs offer OAuth
2.0 security, improved documentation, a playground to test your integrations, and
Head straight to developers.deriv.com and create an account. The new Deriv APIs offer
OAuth 2.0 security, improved documentation, a playground to test your integrations, and
AI-powered tools to help you build faster.
</Translate>
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/features/Updates/HowToGetStarted/HowToGetStarted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const STEPS: TStep[] = [
number: 2,
title: 'Create a new account',
description:
"Click Sign up and register. Your existing legacy credentials won't work here — a new account is required.",
"Click Sign up and register. Your existing legacy credentials won't work here — a new account is required. If you want to use the same email, change it on your legacy account first.",
},
{
number: 3,
Expand Down
10 changes: 8 additions & 2 deletions src/features/Updates/ImportantNotice/ImportantNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,18 @@ export const ImportantNotice = () => {
}}
>
{
'However, in order to onboard and support new users, you should migrate to the new Deriv APIs. {breakline}{breakline} To access the new Deriv APIs, you will need to create a new account on {link}. Your existing legacy credentials will not work there.'
'However, in order to onboard and support new users, you should migrate to the new Deriv APIs. {breakline}{breakline} To access the new Deriv APIs, you will need to create a new account on {link}. Your existing legacy credentials will not work there. Please use a different email address when signing up.'
}
</Translate>
</p>
<p className={styles.noticeSmall}>
<Translate>New users do not need to take any action.</Translate>
<Translate>
If you&apos;d like to use the same
email, you will need to change the email on your legacy account first.
</Translate>
</p>
<p className={styles.noticeSmall}>
<Translate> New users do not need to take any action.</Translate>
</p>
</div>
</section>
Expand Down
Loading