mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +00:00
816ce3180f
* Update account view routing * Temporarily add unicode character to translated strings for testing * Temporarily select add unicode to all untranslated strings * Format changes * Add all english translations for /account & /generate * Add the rest of the english translations * Add a few more missing translations * Update en translations * Get selectedLanguage from localstorage instead of redux sttate * Update snapshots * Add missing translation keys & Update translate functs & change variable prefix * translate all markdown strings & remove old translation strings * Update snapshot * Add a few more translation strs * Move raw strings being translated into json * All translation keys are now Uppercase * Fix up the last few translations * Update snapshot * Uppercase de translation strings * Bring back shapeshift logo on swap * Fix contracts tab translations * Fix a few more translations * Fix translations * remove debugging stuff * Update snapshots * Use react.fragment as markdown root renderer * Seperate markdown translations into their own function * Clean up translation functions * Clean up translation functions * Update snapshot * Fix some broken translation strings * Add prettier ignore file
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import OnboardSlide from './OnboardSlide';
|
|
import translate from 'translations';
|
|
import onboardIconOne from 'assets/images/onboarding/slide-01.svg';
|
|
|
|
import './WelcomeSlide.scss';
|
|
|
|
const WelcomeSlide = () => {
|
|
const header = translate('ONBOARD_WELCOME_TITLE');
|
|
const subheader = <small>{translate('ONBOARD_WELCOME_CONTENT__3')}</small>;
|
|
|
|
const content = (
|
|
<div>
|
|
<div className="WelcomeSlide-alert">
|
|
<div className="WelcomeSlide-alert-icon">
|
|
<i className="fa fa-exclamation-triangle" />
|
|
</div>
|
|
<span>
|
|
{translate('ONBOARD_WELCOME_CONTENT__1')}
|
|
{translate('ONBOARD_WELCOME_CONTENT__2')}
|
|
</span>
|
|
</div>
|
|
<div className="WelcomeSlide-alert">
|
|
<div className="WelcomeSlide-alert-icon">
|
|
<i className="fa fa-exclamation-triangle" />
|
|
</div>
|
|
{translate('ONBOARD_WELCOME_CONTENT__8')}
|
|
</div>
|
|
<h5>{translate('ONBOARD_WELCOME_CONTENT__4')}</h5>
|
|
<ul>
|
|
<li>{translate('ONBOARD_WELCOME_CONTENT__5')}</li>
|
|
<li>{translate('ONBOARD_WELCOME_CONTENT__6')}</li>
|
|
<li>{translate('ONBOARD_WELCOME_CONTENT__7')}</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<OnboardSlide
|
|
header={header}
|
|
subheader={subheader}
|
|
content={content}
|
|
image={onboardIconOne}
|
|
imageSide="right"
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default WelcomeSlide;
|