diff --git a/common/components/ui/Modal.tsx b/common/components/ui/Modal.tsx
index afb515d9..53bdd2c2 100644
--- a/common/components/ui/Modal.tsx
+++ b/common/components/ui/Modal.tsx
@@ -10,11 +10,11 @@ export interface IButton {
}
interface Props {
isOpen?: boolean;
- title: string | React.ReactElement
;
+ title?: string | React.ReactElement;
disableButtons?: boolean;
children: any;
buttons?: IButton[];
- handleClose(): void;
+ handleClose?(): void;
}
export default class Modal extends Component {
@@ -44,12 +44,15 @@ export default class Modal extends Component {
-
-
{title}
-
-
+ {title && (
+
+
{title}
+
+
+ )}
+
{isOpen && children}
{hasButtons &&
{this.renderButtons()}
}
@@ -70,6 +73,9 @@ export default class Modal extends Component
{
}
if (ev.key === 'Escape' || ev.keyCode === 27) {
+ if (!this.props.handleClose) {
+ return;
+ }
this.props.handleClose();
}
};
diff --git a/common/containers/OnboardModal/components/BlockchainSlide.tsx b/common/containers/OnboardModal/components/BlockchainSlide.tsx
new file mode 100644
index 00000000..82fbd313
--- /dev/null
+++ b/common/containers/OnboardModal/components/BlockchainSlide.tsx
@@ -0,0 +1,20 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconFour from 'assets/images/onboarding_icon-04.svg';
+
+const BlockchainSlide = () => {
+ const header = translate('ONBOARD_blockchain_title');
+ const content = (
+
+ - {translate('ONBOARD_blockchain_content__1')}
+ - {translate('ONBOARD_blockchain_content__2')}
+ - {translate('ONBOARD_blockchain_content__3')}
+ - {translate('ONBOARD_blockchain_content__4')}
+ - {translate('ONBOARD_blockchain_content__5')}
+ - {translate('ONBOARD_blockchain_content__6')}
+
+ );
+ return ;
+};
+export default BlockchainSlide;
diff --git a/common/containers/OnboardModal/components/FinalSlide.tsx b/common/containers/OnboardModal/components/FinalSlide.tsx
new file mode 100644
index 00000000..bd01369b
--- /dev/null
+++ b/common/containers/OnboardModal/components/FinalSlide.tsx
@@ -0,0 +1,97 @@
+import React from 'react';
+import translate from 'translations';
+import { Link } from 'react-router-dom';
+import OnboardSlide from './OnboardSlide';
+import onboardIconTen from 'assets/images/onboarding_icon-10.svg';
+
+const FinalSlide = ({ closeModal }) => {
+ const header = (
+
+
{translate('ONBOARD_final_title')}
+
{translate('ONBOARD_final_subtitle')}
+
+
+ );
+
+ const content = (
+
+ );
+ return ;
+};
+export default FinalSlide;
diff --git a/common/containers/OnboardModal/components/InterfaceSlide.tsx b/common/containers/OnboardModal/components/InterfaceSlide.tsx
new file mode 100644
index 00000000..7e6ff55e
--- /dev/null
+++ b/common/containers/OnboardModal/components/InterfaceSlide.tsx
@@ -0,0 +1,22 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconThree from 'assets/images/onboarding_icon-03.svg';
+
+const InterfaceSlide = () => {
+ const header = translate('ONBOARD_interface_title');
+
+ const content = (
+
+ - {translate('ONBOARD_interface_content__1')}
+ - {translate('ONBOARD_interface_content__2')}
+ - {translate('ONBOARD_interface_content__3')}
+ - {translate('ONBOARD_interface_content__4')}
+ - {translate('ONBOARD_interface_content__5')}
+ - {translate('ONBOARD_interface_content__6')}
+ - {translate('ONBOARD_interface_content__7')}
+
+ );
+ return ;
+};
+export default InterfaceSlide;
diff --git a/common/containers/OnboardModal/components/NotABankSlide.tsx b/common/containers/OnboardModal/components/NotABankSlide.tsx
new file mode 100644
index 00000000..ff02661b
--- /dev/null
+++ b/common/containers/OnboardModal/components/NotABankSlide.tsx
@@ -0,0 +1,22 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconTwo from 'assets/images/onboarding_icon-02.svg';
+
+const NotABankSlide = () => {
+ const header = translate('ONBOARD_bank_title');
+
+ const content = (
+
+ - {translate('ONBOARD_bank_content__1')}
+ - {translate('ONBOARD_bank_content__2')}
+ - {translate('ONBOARD_bank_content__3')}
+ - {translate('ONBOARD_bank_content__4')}
+ - {translate('ONBOARD_bank_content__5')}
+
+ );
+
+ return ;
+};
+
+export default NotABankSlide;
diff --git a/common/containers/OnboardModal/components/OnboardSlide.scss b/common/containers/OnboardModal/components/OnboardSlide.scss
new file mode 100644
index 00000000..350f8fb8
--- /dev/null
+++ b/common/containers/OnboardModal/components/OnboardSlide.scss
@@ -0,0 +1,42 @@
+@import 'common/sass/variables';
+@import 'common/sass/mixins';
+
+.OnboardSlide {
+ height: 400px;
+ width: 650px;
+
+ &-body {
+ display: flex;
+ }
+
+ &-content {
+ flex: 0.7;
+ }
+
+ &-image {
+ flex: 0.3;
+ }
+
+ &-header {
+ text-align: center;
+ }
+
+ @media screen and (max-width: $screen-xs) {
+ width: 100%;
+
+ &-body {
+ flex-direction: column;
+ }
+
+ &-content {
+ order: 2;
+ }
+
+ &-image {
+ order: 1;
+ align-self: center;
+ width: 130px;
+ max-height: 200px;
+ }
+ }
+}
diff --git a/common/containers/OnboardModal/components/OnboardSlide.tsx b/common/containers/OnboardModal/components/OnboardSlide.tsx
new file mode 100644
index 00000000..e8ee423d
--- /dev/null
+++ b/common/containers/OnboardModal/components/OnboardSlide.tsx
@@ -0,0 +1,26 @@
+import React, { ReactElement } from 'react';
+import './OnboardSlide.scss';
+
+interface Props {
+ header: ReactElement | string;
+ content: ReactElement;
+ slideImage: string;
+}
+
+class OnboardSlide extends React.Component {
+ public render() {
+ return (
+
+
{this.props.header}
+
+
+
+
+
+
+
+ );
+ }
+}
+
+export default OnboardSlide;
diff --git a/common/containers/OnboardModal/components/SecureSlideOne.tsx b/common/containers/OnboardModal/components/SecureSlideOne.tsx
new file mode 100644
index 00000000..6b2c5dd6
--- /dev/null
+++ b/common/containers/OnboardModal/components/SecureSlideOne.tsx
@@ -0,0 +1,28 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconSeven from 'assets/images/onboarding_icon-07.svg';
+
+const SecureSlideOne = () => {
+ const header = (
+
+ {translate('ONBOARD_secure_1_title')}
+
+ );
+
+ const content = (
+
+
{translate('ONBOARD_secure_1_content__1')}
+
+ - {translate('ONBOARD_secure_1_content__2')}
+ - {translate('ONBOARD_secure_1_content__3')}
+ - {translate('ONBOARD_secure_1_content__4')}
+ - {translate('ONBOARD_secure_1_content__5')}
+ - {translate('ONBOARD_secure_1_content__6')}
+ - {translate('ONBOARD_secure_1_content__7')}
+
+
+ );
+ return ;
+};
+export default SecureSlideOne;
diff --git a/common/containers/OnboardModal/components/SecureSlideThree.tsx b/common/containers/OnboardModal/components/SecureSlideThree.tsx
new file mode 100644
index 00000000..8f5fdc9d
--- /dev/null
+++ b/common/containers/OnboardModal/components/SecureSlideThree.tsx
@@ -0,0 +1,32 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconNine from 'assets/images/onboarding_icon-09.svg';
+
+interface Props {
+ site?: string;
+}
+
+const SecureSlideThree: React.SFC = ({ site }) => {
+ const header = (
+
+
{translate('ONBOARD_secure_3_title')}
+
{translate('ONBOARD_secure_3_content__1')}
+
+ );
+
+ const content = (
+
+
+ - {translate('ONBOARD_secure_3_content__2')}
+ - {translate('ONBOARD_secure_3_content__3')}
+ - {translate('ONBOARD_secure_3_content__4')}
+ - {translate('ONBOARD_secure_3_content__5')}
+ {site === 'cx' && - {translate('CX_Warning_1')}
}
+
+
{translate('ONBOARD_secure_3_content__6')}
+
+ );
+ return ;
+};
+export default SecureSlideThree;
diff --git a/common/containers/OnboardModal/components/SecureSlideTwo.tsx b/common/containers/OnboardModal/components/SecureSlideTwo.tsx
new file mode 100644
index 00000000..71252a2c
--- /dev/null
+++ b/common/containers/OnboardModal/components/SecureSlideTwo.tsx
@@ -0,0 +1,25 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconEight from 'assets/images/onboarding_icon-08.svg';
+
+const SecureSlideTwo = () => {
+ const header = (
+
+
{translate('ONBOARD_secure_2_title')}
+
{translate('ONBOARD_secure_2_content__1')}
+
+
+ );
+
+ const content = (
+
+ - {translate('ONBOARD_secure_2_content__2')}
+ - {translate('ONBOARD_secure_2_content__3')}
+ - {translate('ONBOARD_secure_2_content__4')}
+ - {translate('ONBOARD_secure_2_content__5')}
+
+ );
+ return ;
+};
+export default SecureSlideTwo;
diff --git a/common/containers/OnboardModal/components/WelcomeSlide.scss b/common/containers/OnboardModal/components/WelcomeSlide.scss
new file mode 100644
index 00000000..5a5dc34b
--- /dev/null
+++ b/common/containers/OnboardModal/components/WelcomeSlide.scss
@@ -0,0 +1,12 @@
+@import 'common/sass/variables';
+@import 'common/sass/mixins';
+
+.WelcomeSlide {
+ &-alert {
+ font-weight: 500;
+ color: #e74c3c;
+ border-style: solid;
+ padding: 10px;
+ border-radius: 5px;
+ }
+}
diff --git a/common/containers/OnboardModal/components/WelcomeSlide.tsx b/common/containers/OnboardModal/components/WelcomeSlide.tsx
new file mode 100644
index 00000000..5f5f6d52
--- /dev/null
+++ b/common/containers/OnboardModal/components/WelcomeSlide.tsx
@@ -0,0 +1,34 @@
+import React from 'react';
+import OnboardSlide from './OnboardSlide';
+import translate from 'translations';
+import onboardIconOne from 'assets/images/onboarding_icon-01.svg';
+
+import './WelcomeSlide.scss';
+
+const WelcomeSlide = () => {
+ const header = (
+
+ {translate('ONBOARD_welcome_title')}
+
+ {translate('ONBOARD_welcome_content__3')}
+
+ );
+ const content = (
+
+
+ {translate('ONBOARD_welcome_content__1')}
+ {translate('ONBOARD_welcome_content__2')}
+
+
{translate('ONBOARD_welcome_content__8')}
+
{translate('ONBOARD_welcome_content__4')}
+
+ - {translate('ONBOARD_welcome_content__5')}
+ - {translate('ONBOARD_welcome_content__6')}
+ - {translate('ONBOARD_welcome_content__7')}
+
+
+ );
+ return ;
+};
+
+export default WelcomeSlide;
diff --git a/common/containers/OnboardModal/components/WhyMewSlide.tsx b/common/containers/OnboardModal/components/WhyMewSlide.tsx
new file mode 100644
index 00000000..d552d494
--- /dev/null
+++ b/common/containers/OnboardModal/components/WhyMewSlide.tsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconSix from 'assets/images/onboarding_icon-06.svg';
+
+const WhyMewSlide = () => {
+ const header = translate('ONBOARD_whymew_title');
+
+ const content = (
+
+ - {translate('ONBOARD_whymew_content__1')}
+ - {translate('ONBOARD_whymew_content__2')}
+ - {translate('ONBOARD_whymew_content__3')}
+ - {translate('ONBOARD_whymew_content__4')}
+ - {translate('ONBOARD_whymew_content__5')}
+ - {translate('ONBOARD_whymew_content__6')}
+
+ );
+ return ;
+};
+export default WhyMewSlide;
diff --git a/common/containers/OnboardModal/components/WhySlide.tsx b/common/containers/OnboardModal/components/WhySlide.tsx
new file mode 100644
index 00000000..5a322f9e
--- /dev/null
+++ b/common/containers/OnboardModal/components/WhySlide.tsx
@@ -0,0 +1,30 @@
+import React from 'react';
+import translate from 'translations';
+import OnboardSlide from './OnboardSlide';
+import onboardIconFive from 'assets/images/onboarding_icon-05.svg';
+
+const WhySlide = () => {
+ const header = translate('ONBOARD_why_title');
+
+ const content = (
+
+
{translate('ONBOARD_why_content__1')}
+
+ - {translate('ONBOARD_why_content__2')}
+ - {translate('ONBOARD_why_content__3')}
+ - {translate('ONBOARD_why_content__4')}
+ - {translate('ONBOARD_why_content__5')}
+ - {translate('ONBOARD_why_content__6')}
+
+
{translate('ONBOARD_why_content__7')}
+
+ - {translate('ONBOARD_why_content__8')}
+ - {translate('ONBOARD_why_content__9')}
+ - {translate('ONBOARD_why_content__10')}
+
+
+ );
+ return ;
+};
+
+export default WhySlide;
diff --git a/common/containers/OnboardModal/components/index.ts b/common/containers/OnboardModal/components/index.ts
new file mode 100644
index 00000000..be3730b9
--- /dev/null
+++ b/common/containers/OnboardModal/components/index.ts
@@ -0,0 +1,10 @@
+export { default as WelcomeSlide } from './WelcomeSlide';
+export { default as NotABankSlide } from './NotABankSlide';
+export { default as InterfaceSlide } from './InterfaceSlide';
+export { default as BlockchainSlide } from './BlockchainSlide';
+export { default as WhySlide } from './WhySlide';
+export { default as WhyMewSlide } from './WhyMewSlide';
+export { default as SecureSlideOne } from './SecureSlideOne';
+export { default as SecureSlideTwo } from './SecureSlideTwo';
+export { default as SecureSlideThree } from './SecureSlideThree';
+export { default as FinalSlide } from './FinalSlide';
diff --git a/common/containers/OnboardModal/index.scss b/common/containers/OnboardModal/index.scss
new file mode 100644
index 00000000..1545891a
--- /dev/null
+++ b/common/containers/OnboardModal/index.scss
@@ -0,0 +1,18 @@
+@import 'common/sass/variables';
+@import 'common/sass/mixins';
+
+.OnboardModal {
+ // Additional styles for the Stepper Component
+ &-stepper {
+ a,
+ span {
+ position: relative;
+ bottom: 3px;
+ }
+ }
+ @media screen and (max-width: $screen-xs) {
+ &-stepper {
+ display: none;
+ }
+ }
+}
diff --git a/common/containers/OnboardModal/index.tsx b/common/containers/OnboardModal/index.tsx
new file mode 100644
index 00000000..cf88e238
--- /dev/null
+++ b/common/containers/OnboardModal/index.tsx
@@ -0,0 +1,192 @@
+import React from 'react';
+import { connect } from 'react-redux';
+import translate from 'translations';
+import Stepper from 'react-stepper-horizontal';
+import { showNotification, TShowNotification } from 'actions/notifications';
+import { AppState } from 'reducers';
+import Modal, { IButton } from 'components/ui/Modal';
+import './index.scss';
+import {
+ startOnboardSession,
+ TStartOnboardSession,
+ decrementSlide,
+ TDecrementSlide,
+ incrementSlide,
+ TIncrementSlide,
+ resumeSlide,
+ TResumeSlide
+} from 'actions/onboardStatus';
+import {
+ WelcomeSlide,
+ NotABankSlide,
+ InterfaceSlide,
+ BlockchainSlide,
+ WhySlide,
+ WhyMewSlide,
+ SecureSlideOne,
+ SecureSlideTwo,
+ SecureSlideThree,
+ FinalSlide
+} from './components';
+
+const ONBOARD_LOCAL_STORAGE_KEY = 'onboardStatus';
+const NUMBER_OF_SLIDES = 10;
+
+interface State {
+ isOpen: boolean;
+}
+
+interface Props {
+ sessionStarted: boolean;
+ slideNumber: number;
+ startOnboardSession: TStartOnboardSession;
+ resumeSlide: TResumeSlide;
+ decrementSlide: TDecrementSlide;
+ incrementSlide: TIncrementSlide;
+ showNotification: TShowNotification;
+}
+
+class OnboardModal extends React.Component {
+ constructor(props) {
+ super(props);
+ this.state = {
+ isOpen: false
+ };
+ }
+
+ public componentDidMount() {
+ const { sessionStarted } = this.props;
+
+ const currentSlide = Number(localStorage.getItem(ONBOARD_LOCAL_STORAGE_KEY)) || 0;
+
+ if (!sessionStarted) {
+ this.props.startOnboardSession();
+ if (currentSlide === 0) {
+ this.setState({
+ isOpen: true
+ });
+ }
+ if (currentSlide > 0 && currentSlide < NUMBER_OF_SLIDES) {
+ this.props.resumeSlide(currentSlide);
+ this.setState({
+ isOpen: true
+ });
+
+ const onboardResumeMessage = translate('ONBOARD_resume');
+
+ this.props.showNotification('info', onboardResumeMessage, 30000);
+ }
+ }
+ }
+
+ public render() {
+ const { isOpen } = this.state;
+ const { slideNumber } = this.props;
+
+ const firstButtons: IButton[] = [
+ {
+ disabled: slideNumber === NUMBER_OF_SLIDES,
+ text: 'Next',
+ type: 'primary',
+ onClick: this.handleNextSlide
+ },
+ {
+ disabled: slideNumber === 1,
+ text: 'Back',
+ type: 'default',
+ onClick: this.handlePreviousSlide
+ }
+ ];
+ const lastButtons: IButton[] = [
+ {
+ text: 'Finish',
+ type: 'primary',
+ onClick: this.closeModal
+ },
+ {
+ text: 'Back',
+ type: 'default',
+ onClick: this.handlePreviousSlide
+ }
+ ];
+
+ const buttons = slideNumber === NUMBER_OF_SLIDES ? lastButtons : firstButtons;
+ const steps = new Array(NUMBER_OF_SLIDES).fill({});
+
+ return (
+
+
+
+
+
+ {this.renderSlide()}
+
+
+ );
+ }
+
+ public closeModal = () => {
+ this.setState({ isOpen: false });
+ };
+
+ public changeOnboardStatus = (slideNumber: number) => {
+ localStorage.setItem(ONBOARD_LOCAL_STORAGE_KEY, String(slideNumber));
+ };
+
+ private renderSlide = () => {
+ const slides = [
+ ,
+ ,
+ ,
+ ,
+ ,
+ ,
+ ,
+ ,
+ ,
+
+ ];
+
+ if (slides.length !== NUMBER_OF_SLIDES) {
+ console.log('Slides length do not match const NUMBER_OF_SLIDES');
+ }
+ const currentSlideIndex = this.props.slideNumber - 1;
+
+ return slides[currentSlideIndex];
+ };
+
+ private handlePreviousSlide = () => {
+ const prevSlideNum = this.props.slideNumber - 1;
+
+ localStorage.setItem(ONBOARD_LOCAL_STORAGE_KEY, String(prevSlideNum));
+ this.props.decrementSlide();
+ };
+
+ private handleNextSlide = () => {
+ const nextSlideNum = this.props.slideNumber + 1;
+
+ localStorage.setItem(ONBOARD_LOCAL_STORAGE_KEY, String(nextSlideNum));
+ this.props.incrementSlide();
+ };
+}
+
+function mapStateToProps(state: AppState) {
+ return {
+ sessionStarted: state.onboardStatus.sessionStarted,
+ slideNumber: state.onboardStatus.slideNumber
+ };
+}
+
+export default connect(mapStateToProps, {
+ startOnboardSession,
+ resumeSlide,
+ decrementSlide,
+ incrementSlide,
+ showNotification
+})(OnboardModal);
diff --git a/common/reducers/index.ts b/common/reducers/index.ts
index 0e4c17a6..73122d55 100644
--- a/common/reducers/index.ts
+++ b/common/reducers/index.ts
@@ -9,10 +9,13 @@ import { rates, State as RatesState } from './rates';
import { State as SwapState, swap } from './swap';
import { State as WalletState, wallet } from './wallet';
import { State as TransactionState, transaction } from './transaction';
+import { onboardStatus, State as OnboardStatusState } from './onboardStatus';
+
export interface AppState {
// Custom reducers
config: ConfigState;
notifications: NotificationsState;
+ onboardStatus: OnboardStatusState;
ens: EnsState;
wallet: WalletState;
customTokens: CustomTokensState;
@@ -29,6 +32,7 @@ export default combineReducers({
config,
swap,
notifications,
+ onboardStatus,
ens,
wallet,
customTokens,
diff --git a/common/reducers/onboardStatus.ts b/common/reducers/onboardStatus.ts
new file mode 100644
index 00000000..940f7c54
--- /dev/null
+++ b/common/reducers/onboardStatus.ts
@@ -0,0 +1,51 @@
+import { OnboardStatusAction } from 'actions/onboardStatus';
+import { TypeKeys } from 'actions/onboardStatus/constants';
+
+export interface State {
+ sessionStarted: boolean;
+ slideNumber: number;
+}
+
+export const INITIAL_STATE: State = {
+ sessionStarted: false,
+ slideNumber: 1
+};
+
+export function onboardStatus(state: State = INITIAL_STATE, action: OnboardStatusAction): State {
+ switch (action.type) {
+ case TypeKeys.START_ONBOARD_SESSION: {
+ return {
+ ...state,
+ sessionStarted: true
+ };
+ }
+
+ case TypeKeys.RESUME_SLIDE: {
+ return {
+ ...state,
+ slideNumber: action.slideNumber
+ };
+ }
+
+ case TypeKeys.DECREMENT_SLIDE: {
+ const prevSlide = state.slideNumber - 1;
+
+ return {
+ ...state,
+ slideNumber: prevSlide
+ };
+ }
+
+ case TypeKeys.INCREMENT_SLIDE: {
+ const nextSlide = state.slideNumber + 1;
+
+ return {
+ ...state,
+ slideNumber: nextSlide
+ };
+ }
+
+ default:
+ return state;
+ }
+}
diff --git a/common/translations/lang/ar.json b/common/translations/lang/ar.json
index 5a79ab6c..7ae5614b 100644
--- a/common/translations/lang/ar.json
+++ b/common/translations/lang/ar.json
@@ -555,6 +555,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch "
+ "HELP_Contact_Title": "Ways to Get in Touch ",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/de.json b/common/translations/lang/de.json
index 62df5ecb..7bc50bb5 100644
--- a/common/translations/lang/de.json
+++ b/common/translations/lang/de.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "Mehr hilfreiche Antworten zu oft gefragten Fragen ",
- "HELP_Contact_Title": "Kontakt zu uns"
+ "HELP_Contact_Title": "Kontakt zu uns",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/el.json b/common/translations/lang/el.json
index 3ff9bf0e..de92df75 100644
--- a/common/translations/lang/el.json
+++ b/common/translations/lang/el.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "Περισσότερες χρήσιμες απαντήσεις σε συχνές ερωτήσεις ",
- "HELP_Contact_Title": "Τρόποι για να έρθετε σε επαφή"
+ "HELP_Contact_Title": "Τρόποι για να έρθετε σε επαφή",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/en.json b/common/translations/lang/en.json
index 36899331..7c9363e3 100644
--- a/common/translations/lang/en.json
+++ b/common/translations/lang/en.json
@@ -558,6 +558,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch "
+ "HELP_Contact_Title": "Ways to Get in Touch ",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
}
diff --git a/common/translations/lang/es.json b/common/translations/lang/es.json
index e0bad70c..c46d8c15 100644
--- a/common/translations/lang/es.json
+++ b/common/translations/lang/es.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Haz una prueba y observa qué actividad de red ocurre. La manera más fácil de hacer esto es hacer clic con el botón derecho en la página y hacer clic en \"inspeccionar elemento\". Ve a la pestaña \"Red\". Genera una cartera de prueba. Verás que no hay actividad de red. Puede que veas algo que aparece como data:image/gif y data:image/png. Se trata de los códigos QR generándose en tu ordenador y por tu ordenador. No se ha transferido ni un solo byte. ",
"HELP_Sec_Desc_8": "Si no te encuentras cómodo utilizando esta herramienta, no la utilices bajo ningún concepto. Hemos creado esta herramienta como una manera útil para que la gente pueda generar carteras y hacer transacciones sin tener que utilizar la línea de comandos o ejecutar un nodo completo. De nuevo, por favor contáctanos si tienes inquietudes y responderemos lo más pronto posible. ¡Gracias! ",
"HELP_FAQ_Title": "Más respuestas útiles a preguntas frecuentes ",
- "HELP_Contact_Title": "Maneras de contactar con nosotros"
+ "HELP_Contact_Title": "Maneras de contactar con nosotros",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/fi.json b/common/translations/lang/fi.json
index 4a493c48..ef2617f2 100644
--- a/common/translations/lang/fi.json
+++ b/common/translations/lang/fi.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/fr.json b/common/translations/lang/fr.json
index e62ec409..0265cb0a 100644
--- a/common/translations/lang/fr.json
+++ b/common/translations/lang/fr.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Lancez un test et vérifiez le type d'activité réseau. La manière la plus simple consiste en un clic droit sur la page, puis \"Inspecter\". Allez à l'onglet \"Network\". Générez un portefeuille de test. Vous verrez qu'il n'y a pas d'activité réseau. Vous pourrez voir quelque chose se produire ressemblant à data:image/gif et data:image/png. Ce sont les QR codes en cours de génération... sur votre ordinateur. Aucun octet n'a été transféré. ",
"HELP_Sec_Desc_8": "Si cet outil ne vous plaît pas, alors ne l'utilisez surtout pas. Nous l'avons créé pour qu'il aide les gens à générer des portefeuilles et à effectuer des transactions sans avoir besoin de plonger dans les lignes de commandes ni faire tourner un nœud complet. À nouveau, n'hésitez pas à nous faire part de vos doutes et nous répondrons aussi rapidement que possible. Merci ! ",
"HELP_FAQ_Title": "Plus de réponses utiles aux questions fréquentes ",
- "HELP_Contact_Title": "Moyens de nous contacter"
+ "HELP_Contact_Title": "Moyens de nous contacter",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/ht.json b/common/translations/lang/ht.json
index d8b9b631..0f8ef5eb 100644
--- a/common/translations/lang/ht.json
+++ b/common/translations/lang/ht.json
@@ -555,6 +555,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch "
+ "HELP_Contact_Title": "Ways to Get in Touch ",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/hu.json b/common/translations/lang/hu.json
index 5a9e6d4e..502d390d 100644
--- a/common/translations/lang/hu.json
+++ b/common/translations/lang/hu.json
@@ -566,6 +566,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/id.json b/common/translations/lang/id.json
index 32d922cc..346ebf3f 100644
--- a/common/translations/lang/id.json
+++ b/common/translations/lang/id.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/it.json b/common/translations/lang/it.json
index 36e70cb6..7ae0bf03 100644
--- a/common/translations/lang/it.json
+++ b/common/translations/lang/it.json
@@ -554,6 +554,99 @@
"HELP_Sec_Desc_6": "Genera un portafoglio di prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere \"Analizza elemento\". Vai sulla scheda \"Rete\". Genera un portafoglio di prova. Vedrai che non c'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte. ",
"HELP_Sec_Desc_8": "Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ",
"HELP_FAQ_Title": "Risposte più utili alle domande frequenti (in Inglese) ",
- "HELP_Contact_Title": "Modi per contattarci (in Inglese)"
+ "HELP_Contact_Title": "Modi per contattarci (in Inglese)",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/ja.json b/common/translations/lang/ja.json
index d78d4e9e..460416ab 100644
--- a/common/translations/lang/ja.json
+++ b/common/translations/lang/ja.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/ko.json b/common/translations/lang/ko.json
index 5178ed45..9c30646a 100644
--- a/common/translations/lang/ko.json
+++ b/common/translations/lang/ko.json
@@ -555,6 +555,99 @@
"HELP_Sec_Desc_6": "테스트 지갑을 생성하고 어떤 네트워크 활동이 진행되는지 확인할 수 있습니다. 가장 쉬운 방법은 페이지를 마우스 오른쪽 버튼을 클릭하여 \"요소 검사\"를 클릭합니다. \"네트워크\" 탭으로 이동합니다. 테스트 지갑을 생성하면 네트워크 탭에서 네트워크 활동이 없음을 확인할 수 있습니다. data:image/gif, data:image/png 생성도 역시 네트워크를 사용하지 않는 것을 확인하실 수 있습니다. QR 코드는 컴퓨터에서 생성됩니다. 당신의 컴퓨터에서 아무것도 전송되지 않는 것을 확인하실 수 있습니다. ",
"HELP_Sec_Desc_8": "이 도구를 사용하는 것이 내키지 않는다면 사용하지 않아도 됩니다. 우리는 사람들이 커맨드 명령을 입력이나 풀 노드를 실행할 필요 없이 지갑을 생성하고 트랜잭션을 생성하는 데 도움이 되었으면 하는 바램으로 이 도구를 제작하였습니다. 다시 말씀드리자면, 이상한 점을 발견하신다면 우리에게 연락해주세요. 가능한 빨리 답변드리겠습니다. 감사합니다! ",
"HELP_FAQ_Title": "자주 묻는 질문에 대한 도움이 될 답변 ",
- "HELP_Contact_Title": "연락 방법 "
+ "HELP_Contact_Title": "연락 방법 ",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/nl.json b/common/translations/lang/nl.json
index fec85954..139bca74 100644
--- a/common/translations/lang/nl.json
+++ b/common/translations/lang/nl.json
@@ -554,6 +554,99 @@
"HELP_Sec_Desc_6": "Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor \"inspecteer element\". Ga naar het \"Netwerk\" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen. ",
"HELP_Sec_Desc_8": "Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een \"full node\" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ",
"HELP_FAQ_Title": "Meer hulpzame antwoorden op veel voorkomende vragen: ",
- "HELP_Contact_Title": "Manieren om in contact te komen:"
+ "HELP_Contact_Title": "Manieren om in contact te komen:",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/no.json b/common/translations/lang/no.json
index d7f9baf8..d26a6f81 100644
--- a/common/translations/lang/no.json
+++ b/common/translations/lang/no.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke \"inspiser element\". Gå til \"Nettverk\"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført. ",
"HELP_Sec_Desc_8": "Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ",
"HELP_FAQ_Title": "Flere nyttige svar på hyppige spørsmål ",
- "HELP_Contact_Title": "Måter å ta kontakt på"
+ "HELP_Contact_Title": "Måter å ta kontakt på",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/pl.json b/common/translations/lang/pl.json
index ee555f22..986b360f 100644
--- a/common/translations/lang/pl.json
+++ b/common/translations/lang/pl.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i \"Zbadaj\". Przejdź na zakładkę \"Network\". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane. ",
"HELP_Sec_Desc_8": "Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ",
"HELP_FAQ_Title": "Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski) ",
- "HELP_Contact_Title": "Sposoby Nawiązania Kontaktu (tylko angielski)"
+ "HELP_Contact_Title": "Sposoby Nawiązania Kontaktu (tylko angielski)",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/pt.json b/common/translations/lang/pt.json
index af7e4850..2d701680 100644
--- a/common/translations/lang/pt.json
+++ b/common/translations/lang/pt.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/ru.json b/common/translations/lang/ru.json
index e82f9d19..c063d2c5 100644
--- a/common/translations/lang/ru.json
+++ b/common/translations/lang/ru.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/sk.json b/common/translations/lang/sk.json
index a3711d8c..1d83374b 100644
--- a/common/translations/lang/sk.json
+++ b/common/translations/lang/sk.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/sl.json b/common/translations/lang/sl.json
index f0643c86..5c8d1a53 100644
--- a/common/translations/lang/sl.json
+++ b/common/translations/lang/sl.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/sv.json b/common/translations/lang/sv.json
index 3dbb6c6e..8c5a635e 100644
--- a/common/translations/lang/sv.json
+++ b/common/translations/lang/sv.json
@@ -555,6 +555,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch "
+ "HELP_Contact_Title": "Ways to Get in Touch ",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/tr.json b/common/translations/lang/tr.json
index a0adf5b7..62a7a0f7 100644
--- a/common/translations/lang/tr.json
+++ b/common/translations/lang/tr.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch"
+ "HELP_Contact_Title": "Ways to Get in Touch",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/vi.json b/common/translations/lang/vi.json
index 7653bdd6..7261c130 100644
--- a/common/translations/lang/vi.json
+++ b/common/translations/lang/vi.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Bạn hãy cho chạy thử đễ kiễm tra lại toàn bộ hoạt động của nó. Cách đơn giản nhất đễ bạn kiễm tra là nhấn chuột phải vào trang của chúng tôi vào chọn mục \"inspect element\". đi đến mục \"Network\". Khởi tạo thử một Ví. Lúc này bạn sẽ thấy được các hoạt động của hệ thống sẽ diễn ra như thế nào. Bạn sẽ thấy được dữ liệu sau: image/gif và image/png. Nó chính là mã QR đã được khởi tạo...trên máy tính của bạn. Và không có một dung lượng dữ liệu nào được chuyển ra khỏi máy của bạn. ",
"HELP_Sec_Desc_8": "Nếu bạn cảm thấy không an tâm khi sử dụng công cụ của chúng tôi, bạn có quyền không sử dụng nó. Chúng tôi tạo ra ứng dụng này nhằm giúp người sử dụng dễ dàng tạo Ví mới và lập giao dịch mà không cần dùng đến những câu lệnh trên Terminal hoặc tải về đầy đủ các node. Một lần nữa xin nhắc lại, bạn hoàn toàn có thể ngưng sử dụng và báo lại với chúng tôi nếu bạn có một mối quan ngại nào đó, chúng tôi sẽ chịu trách nhiệm chỉnh sửa hoặc giải đáp thắc mắc từ nơi bạn một cách sớm nhất có thể. Xin Chân Thành Cảm Ơn! ",
"HELP_FAQ_Title": "Lời giãi đáp cho những câu hỏi thường gặp: ",
- "HELP_Contact_Title": "Những cách đễ liên lạc với chúng tôi:"
+ "HELP_Contact_Title": "Những cách đễ liên lạc với chúng tôi:",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/zhcn.json b/common/translations/lang/zhcn.json
index c639cc8d..b1e5f840 100644
--- a/common/translations/lang/zhcn.json
+++ b/common/translations/lang/zhcn.json
@@ -565,6 +565,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions 常见问题的更多有用回答 ",
- "HELP_Contact_Title": "Ways to Get in Touch 联系方式"
+ "HELP_Contact_Title": "Ways to Get in Touch 联系方式",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/common/translations/lang/zhtw.json b/common/translations/lang/zhtw.json
index 20e1e778..ca7168fb 100644
--- a/common/translations/lang/zhtw.json
+++ b/common/translations/lang/zhtw.json
@@ -555,6 +555,99 @@
"HELP_Sec_Desc_6": "Generate a test wallet and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click \"inspect element\". Go to the \"Network\" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred. ",
"HELP_Sec_Desc_8": "If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ",
"HELP_FAQ_Title": "More Helpful Answers to Frequent Questions ",
- "HELP_Contact_Title": "Ways to Get in Touch "
+ "HELP_Contact_Title": "Ways to Get in Touch ",
+ "ONBOARD_welcome_title": "Welcome to MyEtherWallet.com",
+ "ONBOARD_welcome_content__1": "Please take some time to understand this for your own safety. 🙏",
+ "ONBOARD_welcome_content__2": "Your funds will be stolen if you do not heed these warnings.",
+ "ONBOARD_welcome_content__3": "We know this click-through stuff is annoying. We are sorry.",
+ "ONBOARD_welcome_content__4": "What is MEW? ",
+ "ONBOARD_welcome_content__5": "MyEtherWallet is a free, open-source, client-side interface.",
+ "ONBOARD_welcome_content__6": "We allow you to interact directly with the blockchain while remaining in full control of your keys & your funds.",
+ "ONBOARD_welcome_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_welcome_content__8": "We cannot recover your funds or freeze your account if you visit a phishing site or lose your private key.",
+ "ONBOARD_bank_title": "MyEtherWallet is not a Bank",
+ "ONBOARD_bank_content__1": "When you open an account with a bank or exchange, they create an account for you in their system.",
+ "ONBOARD_bank_content__2": "The bank keeps track of your personal information, account passwords, balances, transactions and ultimately your money.",
+ "ONBOARD_bank_content__3": "The bank charge fees to manage your account and provide services, like refunding transactions when your card gets stolen.",
+ "ONBOARD_bank_content__4": "The bank allows you to write a check or charge your debit card to send money, go online to check your balance, reset your password, and get a new debit card if you lose it.",
+ "ONBOARD_bank_content__5": "You have an account *with the bank or exchange* and they decide how much money you can send, where you can send it, and how long to hold on a suspicious deposit. All for a fee.",
+ "ONBOARD_welcome_title__alt": "Introduction",
+ "ONBOARD_interface_title": "MyEtherWallet is an Interface",
+ "ONBOARD_interface_content__1": "When you create an account on MyEtherWallet you are generating a cryptographic set of numbers: your private key and your public key (address).",
+ "ONBOARD_interface_content__2": "The handling of your keys happens entirely on your computer, inside your browser.",
+ "ONBOARD_interface_content__3": "We never transmit, receive or store your private key, password, or other account information.",
+ "ONBOARD_interface_content__4": "We do not charge a transaction fee.",
+ "ONBOARD_interface_content__5": "You are simply using our **interface** to interact **directly with the blockchain**.",
+ "ONBOARD_interface_content__6": "If you send your *public key (address)* to someone, they can send you ETH or tokens. 👍",
+ "ONBOARD_interface_content__7": "If you send your *private key* to someone, they now have full control of your account. 👎",
+ "ONBOARD_bank_title__alt": "MEW isn't a Bank",
+ "ONBOARD_blockchain_skip": "I already know what a blockchain is...",
+ "ONBOARD_blockchain_title": "Wait, WTF is a Blockchain?",
+ "ONBOARD_blockchain_content__1": "The blockchain is like a huge, global, decentralized spreadsheet.",
+ "ONBOARD_blockchain_content__2": "It keeps track of who sent how many coins to whom, and what the balance of every account is.",
+ "ONBOARD_blockchain_content__3": "It is stored and maintained by thousands of people (miners) across the globe who have special computers.",
+ "ONBOARD_blockchain_content__4": "The blocks in the blockchain are made up of all the individual transactions sent from MyEtherWallet, MetaMask, Exodus, Mist, Geth, Parity, and everywhere else.",
+ "ONBOARD_blockchain_content__5": "When you see your balance on MyEtherWallet.com or view your transactions on [etherscan.io](https://etherscan.io), you are seeing data on the blockchain, not in our personal systems.",
+ "ONBOARD_blockchain_content__6": "Again: **we are not a bank**.",
+ "ONBOARD_interface_title__alt": "MEW is an Interface",
+ "ONBOARD_why_title": "Why are you making me read all this?",
+ "ONBOARD_why_content__1": "Because we need you to understand that we **cannot**...",
+ "ONBOARD_why_content__2": "Access your account or send your funds for you X.",
+ "ONBOARD_why_content__3": "Recover or change your private key.",
+ "ONBOARD_why_content__4": "Recover or reset your password.",
+ "ONBOARD_why_content__5": "Reverse, cancel, or refund transactions.",
+ "ONBOARD_why_content__6": "Freeze accounts.",
+ "ONBOARD_why_content__7": "**You** and **only you** are responsible for your security.",
+ "ONBOARD_why_content__8": "Be diligent to keep your private key and password safe. Your private key is sometimes called your mnemonic phrase, keystore file, UTC file, JSON file, wallet file.",
+ "ONBOARD_why_content__9": "If you lose your private key or password, no one can recover it.",
+ "ONBOARD_why_content__10": "If you enter your private key on a phishing website, you will have **all your funds taken**.",
+ "ONBOARD_blockchain_title__alt": "WTF is a Blockchain?",
+ "ONBOARD_point_title__alt": "What's the Point of MEW then?",
+ "ONBOARD_whymew_title": "If MyEtherWallet can't do those things, what's the point?",
+ "ONBOARD_whymew_content__1": "Because that is the point of decentralization and the blockchain.",
+ "ONBOARD_whymew_content__2": "You don't have to rely on your bank, government, or anyone else when you want to move your funds.",
+ "ONBOARD_whymew_content__3": "You don't have to rely on the security of an exchange or bank to keep your funds safe.",
+ "ONBOARD_whymew_content__4": "If you don't find these things valuable, ask yourself why you think the blockchain and cryptocurrencies are valuable. 😉",
+ "ONBOARD_whymew_content__5": "If you don't like the sound of this, consider using [Coinbase](https://www.coinbase.com/) or [Blockchain.info](https://blockchain.info/wallet/#/signup). They have more familiar accounts with usernames & passwords.",
+ "ONBOARD_whymew_content__6": "If you are scared but want to use MEW, [get a hardware wallet](https://myetherwallet.github.io/knowledge-base/hardware-wallets/hardware-wallet-recommendations.html)! These keep your keys secure.",
+ "ONBOARD_why_title__alt": "But...why?",
+ "ONBOARD_secure_title": "How To Protect Yourself & Your Funds",
+ "ONBOARD_secure_1_title": "How To Protect Yourself from Phishers",
+ "ONBOARD_secure_1_content__1": "Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.",
+ "ONBOARD_secure_1_content__2": "Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.",
+ "ONBOARD_secure_1_content__3": "Always check the URL: `https://www.myetherwallet.com`.",
+ "ONBOARD_secure_1_content__4": "Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.",
+ "ONBOARD_secure_1_content__5": "Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.",
+ "ONBOARD_secure_1_content__6": "Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.",
+ "ONBOARD_secure_1_content__7": "[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).",
+ "ONBOARD_point_title__alt_2": "What's the point?",
+ "ONBOARD_secure_2_title": "How To Protect Yourself from Scams",
+ "ONBOARD_secure_2_content__1": "People will try to get you to give them money in return for nothing.",
+ "ONBOARD_secure_2_content__2": "If it is too good to be true, it probably is.",
+ "ONBOARD_secure_2_content__3": "Research before sending money to someone or some project. Look for information on a variety of websites and forums. Be wary.",
+ "ONBOARD_secure_2_content__4": "Ask questions when you don't understand something or it doesn't seem right.",
+ "ONBOARD_secure_2_content__5": "Don't let fear, FUD, or FOMO win over common sense. If something is very urgent, ask yourself \"why?\". It may be to create FOMO or prevent you from doing research.",
+ "ONBOARD_secure_3_title__alt": "Phuck Phishers",
+ "ONBOARD_secure_3_title": "How To Protect Yourself from Loss",
+ "ONBOARD_secure_3_content__1": "If you lose your private key or password, it is gone forever. Don't lose it.",
+ "ONBOARD_secure_3_content__2": "Make a backup of your private key and password. Do NOT just store it on your computer. Print it out on a piece of paper or save it to a USB drive.",
+ "ONBOARD_secure_3_content__3": "Store this paper or USB drive in a different physical location. A backup is not useful if it is destroyed by a fire or flood along with your laptop.",
+ "ONBOARD_secure_3_content__4": "Do not store your private key in Dropbox, Google Drive, or other cloud storage. If that account is compromised, your funds will be stolen.",
+ "ONBOARD_secure_3_content__5": "If you have more than 1-week's worth of pay worth of cryptocurrency, get a hardware wallet. No excuses. It's worth it. I promise.",
+ "ONBOARD_secure_3_content__6": "[Even more Security Tips!](https://myetherwallet.github.io/knowledge-base/getting-started/protecting-yourself-and-your-funds.html)",
+ "ONBOARD_secure_2_title__alt_2": "Screw Scams",
+ "ONBOARD_final_title__alt": "One more click & you're done! 🤘",
+ "ONBOARD_final_title": "Alright, I'm done lecturing you!",
+ "ONBOARD_final_subtitle": "Sorry for being like this. Onwards!",
+ "ONBOARD_final_content__1": "Create a wallet",
+ "ONBOARD_final_content__2": "Get a hardware wallet",
+ "ONBOARD_final_content__3": "How to Set up MEW + MetaMask",
+ "ONBOARD_final_content__4": "How to Run MEW Offline / Locally",
+ "ONBOARD_final_content__5": "How to Send via Ledger hardware wallet",
+ "ONBOARD_final_content__6": "How to Send via TREZOR hardware wallet",
+ "ONBOARD_final_content__7": "How to Send via MetaMask",
+ "ONBOARD_final_content__8": "Learn More or Contact Us",
+ "ONBOARD_final_content__9": "OMG, please just let me send FFS.",
+ "ONBOARD_resume": "It looks like you didn't finish reading through these slides last time. ProTip: Finish reading through the slides 😉"
}
-}
\ No newline at end of file
+}
diff --git a/package.json b/package.json
index a9dc55e9..88edf212 100644
--- a/package.json
+++ b/package.json
@@ -36,6 +36,7 @@
"react-redux": "5.0.6",
"react-router-dom": "4.2.2",
"react-router-redux": "4.0.8",
+ "react-stepper-horizontal": "^1.0.9",
"react-transition-group": "2.2.1",
"redux": "3.7.2",
"redux-logger": "3.0.6",
diff --git a/spec/actions/onboardStatus.spec.ts b/spec/actions/onboardStatus.spec.ts
new file mode 100644
index 00000000..67bd86c7
--- /dev/null
+++ b/spec/actions/onboardStatus.spec.ts
@@ -0,0 +1,32 @@
+import * as actions from '../../common/actions/onboardStatus';
+
+describe('onboardStatus actions', () => {
+ it('should create an action to start onboard session', () => {
+ const expectedAction = {
+ type: 'START_ONBOARD_SESSION'
+ };
+ expect(actions.startOnboardSession()).toEqual(expectedAction);
+ });
+
+ it('should create an action to resume slide', () => {
+ const expectedAction = {
+ type: 'RESUME_SLIDE',
+ slideNumber: 3
+ };
+ expect(actions.resumeSlide(3)).toEqual(expectedAction);
+ });
+
+ it('should create an action to decrement slide', () => {
+ const expectedAction = {
+ type: 'DECREMENT_SLIDE'
+ };
+ expect(actions.decrementSlide()).toEqual(expectedAction);
+ });
+
+ it('should create an action to increment slide', () => {
+ const expectedAction = {
+ type: 'INCREMENT_SLIDE'
+ };
+ expect(actions.incrementSlide()).toEqual(expectedAction);
+ });
+});
diff --git a/spec/reducers/onboardStatus.spec.ts b/spec/reducers/onboardStatus.spec.ts
new file mode 100644
index 00000000..448d4f36
--- /dev/null
+++ b/spec/reducers/onboardStatus.spec.ts
@@ -0,0 +1,11 @@
+import { onboardStatus, INITIAL_STATE } from 'reducers/onboardStatus';
+import * as onboardStatusActions from 'actions/onboardStatus';
+
+describe('onboardStatus reducer', () => {
+ it('should handle START_ONBOARD_STATUS', () => {
+ expect(onboardStatus(undefined, onboardStatusActions.startOnboardSession())).toEqual({
+ ...INITIAL_STATE,
+ sessionStarted: true
+ });
+ });
+});