James Prado 816ce3180f Translation Updates (#1323)
* Update account view routing

* Temporarily add unicode character to translated strings for testing

* Temporarily select add unicode to all untranslated strings

* Format changes

* Add all english translations for /account & /generate

* Add the rest of the english translations

* Add a few more missing translations

* Update en translations

* Get selectedLanguage from localstorage instead of redux sttate

* Update snapshots

* Add missing translation keys & Update translate functs & change variable prefix

* translate all markdown strings & remove old translation strings

* Update snapshot

* Add a few more translation strs

* Move raw strings being translated into json

* All translation keys are now Uppercase

* Fix up the last few translations

* Update snapshot

* Uppercase de translation strings

* Bring back shapeshift logo on swap

* Fix contracts tab translations

* Fix a few more translations

* Fix translations

* remove debugging stuff

* Update snapshots

* Use react.fragment as markdown root renderer

* Seperate markdown translations into their own function

* Clean up translation functions

* Clean up translation functions

* Update snapshot

* Fix some broken translation strings

* Add prettier ignore file
2018-03-21 22:50:25 -05:00

31 lines
1005 B
TypeScript

import React from 'react';
import { NameInput, NameResolve } from './components';
import TabSection from 'containers/TabSection';
import { donationAddressMap } from 'config';
import './index.scss';
import translate from 'translations';
export default class ENSClass extends React.Component<{}> {
public render() {
return (
<TabSection isUnavailableOffline={true}>
<div className="Tab-content">
<section className="Tab-content-pane">
<div className="ENS">
<h1 className="ENS-title">Ethereum Name Service</h1>
<p className="ENS-description">
{translate('ENS_DESCRIPTION', {
$ens_docs: 'https://ens.readthedocs.io/en/latest/introduction.html',
$example_donation_addr: donationAddressMap.ETH.substr(0, 8)
})}
</p>
<NameInput />
</div>
</section>
<NameResolve />
</div>
</TabSection>
);
}
}