-
Notifications
You must be signed in to change notification settings - Fork 182
Translate Code-Splitting #58
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Translate Code-Splitting #58
Conversation
@atsumine ありがとうございます!!一点、改行を原文と合わせるようにお願いします 🙇 |
@koba04 この原文ファイルは、他と違って文の途中でも積極的に改行しているようなので、合わせるのは困難そうです… |
確かにそうですね...。しかも意味の区切りというわけでもなさそうですね。 |
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.
@atsumine いくつかコメントしたので確認お願いします! 🙏
content/docs/code-splitting.md
Outdated
@@ -212,19 +186,13 @@ const MyComponent = () => ( | |||
); | |||
``` | |||
|
|||
## Route-based code splitting | |||
## ルート単位でのコード分割 |
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.
以降の文にてルートがトップレベルのルートと混同されるように感じたのでルーティングと明確にしたのですが如何でしょうか? (imo)
## ルート単位でのコード分割 | |
## ルーティング単位でのコード分割 |
ご指摘ありがとうございます!こんなに丁寧にレビューして頂いて感無量です…! コンフリクトの解消とともに、修正してまいりますね! |
Co-Authored-By: atsumine <atsu9615@me.com>
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.
微修正が多いのですがこちらをご確認いただけますでしょうか。
content/docs/code-splitting.md
Outdated
Bundling is the process of following imported files and merging them into a | ||
single file: a "bundle". This bundle can then be included on a webpage to load | ||
an entire app at once. | ||
多くの React アプリケーションは、[Webpack](https://webpack.js.org/)や [Browserify](http://browserify.org/) などのツールを使ってファイルを「バンドル」しています。バンドルはインポートされたファイルをたどって、それらを1つのファイルにまとめるプロセスです。このバンドルされたファイルを Web ページ内に置くことによって、アプリ全体を一度に読み込むことができます。 |
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.
多くの React アプリケーションは、[Webpack](https://webpack.js.org/)や [Browserify](http://browserify.org/) などのツールを使ってファイルを「バンドル」しています。バンドルはインポートされたファイルをたどって、それらを1つのファイルにまとめるプロセスです。このバンドルされたファイルを Web ページ内に置くことによって、アプリ全体を一度に読み込むことができます。 | |
多くの React アプリケーションは、[Webpack](https://webpack.js.org/)や [Browserify](http://browserify.org/) などのツールを使ってファイルを「バンドル」しています。バンドルはインポートされたファイルをたどって、それらを 1 つのファイルにまとめるプロセスです。このバンドルされたファイルを Web ページ内に置くことによって、アプリ全体を一度に読み込むことができます。 |
Co-Authored-By: atsumine <atsu9615@me.com>
確認しました。
こちらだけ対応をお願いします。このままだと、リンクの gist に code splitting 導入前のダメな例が載っているかのような文になってしまっています。リンク先の gist は code splitting が正しく動作するための最小限の例です。「(code splittingを導入すると、)大雑把にはこんな感じの設定になるでしょう」ということが言いたいのだと思います。 |
なんと!すみません、完全に原文の意味を取り違っておりました。。 |
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.
@atsumine いくつか間違った指摘をしてすみませんでした🙏
対応ありがとうございます✨
@koba04 いえいえ!もとはといえば、私の誤訳や間際らしい文章がすべての原因ですので、落ち度は私にあります。申し訳ありませんでした。:bow: お二人方には本当に丁寧にレビューをしていただき、感無量です! |
マージしました、ありがとうございました! |
I finished translating Code-Splitting
Please let me know if you find any mistakes.
Thanks.
target issue : #4