diff --git a/README.md b/README.md index 3044c0d66..6702b26a3 100644 --- a/README.md +++ b/README.md @@ -57,10 +57,7 @@ The documentation is divided into several sections with a different tone and pur ## Translation -If you are interested in translating `reactjs.org`, please see the current translation efforts at [isreacttranslatedyet.com](https://www.isreacttranslatedyet.com/). - - -If your language does not have a translation and you would like to create one, please follow the instructions at [reactjs.org Translations](https://github.com/reactjs/reactjs.org-translation#translating-reactjsorg). +If you are interested in translating `reactjs.org` to **pt-BR**, check the translation progress and claim a section/page to translate **[here](https://github.com/reactjs/pt-BR.reactjs.org/issues/1)**. Also, when translating any content, make sure you follow our **[Glossary](GLOSSARY.md)**. ## Troubleshooting diff --git a/content/home/examples/a-component-using-external-plugins.js b/content/home/examples/a-component-using-external-plugins.js index 09868cfbb..b525010f4 100644 --- a/content/home/examples/a-component-using-external-plugins.js +++ b/content/home/examples/a-component-using-external-plugins.js @@ -2,7 +2,7 @@ class MarkdownEditor extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); - this.state = { value: 'Hello, **world**!' }; + this.state = { value: 'Olá, **mundo**!' }; } handleChange(e) { @@ -17,16 +17,16 @@ class MarkdownEditor extends React.Component { render() { return (