diff --git a/content/blog/2016-04-08-react-v15.0.1.md b/content/blog/2016-04-08-react-v15.0.1.md
index 6db9cc422..33efe219b 100644
--- a/content/blog/2016-04-08-react-v15.0.1.md
+++ b/content/blog/2016-04-08-react-v15.0.1.md
@@ -3,32 +3,32 @@ title: "React v15.0.1"
author: [zpao]
---
-Yesterday afternoon we shipped v15.0.0 and quickly got some feedback about a couple of issues. We apologize for these problems and we've been working since then to make sure we get fixes into your hands as quickly as possible.
+Ontem à tarde, lançamos a v15.0.0 e rapidamente obtivemos alguns comentários sobre alguns problemas. Pedimos desculpas por esses problemas e trabalhamos desde então para garantir que as correções cheguem às suas mãos o mais rápido possível.
-The first of these issues is related to the removal of an undocumented API. This API was added to enable [JSX Spread Attributes](/docs/jsx-spread.html) in our JS compile tools (react-tools, JSXTransformer) before `Object.assign` was standard. When we stopped supporting these tools last year, we kept the API there to catch the longer tail of people using those tools. Meanwhile we moved to using Babel and encouraged others to do the same. Babel will typically compile the spread use to an `_extends` helper, which will use `Object.assign`. We did not properly research other compilation tools before deciding to remove the API in v15. Specifically, TypeScript and coffee-react are two popular packages using `React.__spread`, as well as reactify which still makes use react-tools. In order to make sure that code compiled with these tools is not broken, we will be restoring the `React.__spread` API and adding a warning. It will be removed in the future so if you maintain a project making using of it, we encourage you to compile to `Object.assign` directly or a similar helper function.
+O primeiro desses problemas está relacionado à remoção de uma API não documentada. Esta API foi adicionada para ativar [JSX Spread Attributes](/docs/jsx-spread.html) em nossas ferramentas de compilação JS (react-tools, JSXTransformer) antes que o `Object.assign` fosse padrão. Quando paramos de oferecer suporte a essas ferramentas no ano passado, mantivemos a API lá para atrair a atenção das pessoas que as usam. Enquanto isso, passamos a usar Babel e incentivamos outros a fazer o mesmo. Babel normalmente compila o uso do spread para um auxiliar `_extends`, que utilizará `Object.assign`. Não pesquisamos adequadamente outras ferramentas de compilação antes de decidir remover a API na v15. Especificamente, TypeScript e coffee-react são dois pacotes populares usando o `React.__spread`, bem como o reactify, que ainda utiliza o react-tools. Para garantir que o código compilado com essas ferramentas não seja quebrado, restauraremos a API `React.__spread` e adicionaremos um aviso. Ele será removido no futuro, portanto, se você mantiver um projeto fazendo uso dele, recomendamos que você compile diretamente o `Object.assign` ou uma função auxiliar semelhante.
-The second issue resulted in cursor position being lost in controlled inputs. We merged a pull request earlier this week to fix a separate regression from v0.14. Our goal was to target `