-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translate: Fragments #82
Translate: Fragments #82
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @RamirezAlex some suggestions
Thanks @elyalvarado. I did the proper fixes you suggested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @RamirezAlex, thanks for wrapping this up!
The only big change I think we should do here, is to change the code back to English.
Besides that, everything looks 👍
content/docs/fragments.md
Outdated
|
||
```jsx | ||
class Columns extends React.Component { | ||
render() { | ||
return ( | ||
<div> | ||
<td>Hello</td> | ||
<td>World</td> | ||
<td>Hola</td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @RamirezAlex, we're leaving the code as is, we're only translating comments. So please, leave this as <td>Hello</td>
We use lots of codepen examples, and if we translate the code contents we could confuse people!
content/docs/fragments.md
Outdated
|
||
```jsx | ||
function Glossary(props) { | ||
return ( | ||
<dl> | ||
{props.items.map(item => ( | ||
// Without the `key`, React will fire a key warning | ||
// Sin la 'key', React disparará una advertencia de key |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this could sound better as
// Sin la 'key', React disparará una advertencia de key | |
// Sin el prop 'key', React disparará una advertencia de key |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fragments
should be renamed to Fragmentos
:)
Thank you @alejandronanez I updated the PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for your FIRST contribution 🎉 ! 🚢
This is related to #80
Please review.