Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Conversation

@takahi5
Copy link
Contributor

@takahi5 takahi5 commented Jan 19, 2020

概要

docs/glossary/node を翻訳しました。
レビューお願いします。

チェックリスト

  • 翻訳スタイルガイド に目を通しました。
  • Translation Guide に目を通しました。
  • textlint を使って校正を行いました(推奨)
  • Allow edits from maintainers にチェックを入れました。

しばらく待ってもレビューが終わらなかったり、必要なレビュー数が足りない状態が続いた場合は、こちらからメンテナーを探して、@を付けてメンションを飛ばしてください。

@takahi5 takahi5 marked this pull request as ready for review January 19, 2020 06:05
@smorimoto smorimoto added the status: awaiting review A pull request that is currently awaiting a reviewer's response label Jan 19, 2020
---

Learn more about Node.js, one of the software packages that makes Gatsby possible.
Gatsby を可能にするソフトウェアの 1 つである Node.js について学びましょう。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

「Gatsby を可能にする」直訳だと意図が伝わりにくいのでより適切な語彙に意訳した方が良いです。

Once you've installed Node.js, you can use it to run JavaScript from the [command line](/docs/glossary#command-line). Type `node` at a prompt to launch the Node.js interactive shell. Include the path to a JavaScript file to execute that script: e.g. `node /Users/gatsbyfan/hello-world.js`.
Node.js をインストールすると、JavaScript を[コマンドライン](/docs/glossary#command-line)
から実行できます。
コマンドプロンプトで`node`と入力すると Node.js のシェルが立ち上がります。スクリプトを実行するには JavaScript ファイルへのパスを含めて入力します。例:`node /Users/gatsbyfan/hello-world.js`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
コマンドプロンプトで`node`と入力すると Node.js のシェルが立ち上がります。スクリプトを実行するには JavaScript ファイルへのパスを含めて入力します。例:`node /Users/gatsbyfan/hello-world.js`
コマンドプロンプトで `node` と入力すると Node.js のシェルが立ち上がります。スクリプトを実行するには JavaScript ファイルへのパスを含めて入力します。例:`node /Users/gatsbyfan/hello-world.js`

する必要があります。

Installing Node.js also installs [npm](/docs/glossary#npm), the Node.js _package manager_. A package manager is specialized software that lets you install and update modules and packages used in your project.
Node.js をインストールすると、Node.js の _パッケージマネージャー_ である [npm](/docs/glossary#npm) も合わせてインストールされます。パッケージマネージャー
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Node.js をインストールすると、Node.js の _パッケージマネージャー_ である [npm](/docs/glossary#npm) も合わせてインストールされます。パッケージマネージャー
Node.js をインストールすると、Node.js の **パッケージマネージャー** である [npm](/docs/glossary#npm) もあわせてインストールされます。パッケージマネージャー


Installing Node.js also installs [npm](/docs/glossary#npm), the Node.js _package manager_. A package manager is specialized software that lets you install and update modules and packages used in your project.
Node.js をインストールすると、Node.js の _パッケージマネージャー_ である [npm](/docs/glossary#npm) も合わせてインストールされます。パッケージマネージャー
とはモジュールやパッケージをあなたのプロジェクトにインストールしたり更新したりするための特別なソフトウェアです。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

改行が入ってる?

とはモジュールやパッケージをあなたのプロジェクトにインストールしたり更新したりするための特別なソフトウェアです。

You'll use npm to install Gatsby and its dependencies. Type `npm install -g gatsby-cli` at a command line prompt to install the Gatsby command line interface or CLI. The `-g` flag installs Gatsby globally, which means that you can use it by typing `gatsby` at a prompt. For example, you can use `gatsby new` to create a new Gatsby site.
Gatsby とその依存パッケージをインストールするためには npm を使います。Gatsby CLI をインストールするにはコマンドラインプロンプトで`npm install -g gatsby-cli`と入力してください。`-g`のフラグを付けると Gatsby がグローバルにインストールされ、コマンドプロンプトで`gatsby`と入力して Gatsby を使用できるようになります。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Gatsby とその依存パッケージをインストールするためには npm を使います。Gatsby CLI をインストールするにはコマンドラインプロンプトで`npm install -g gatsby-cli`と入力してください。`-g`のフラグを付けると Gatsby がグローバルにインストールされ、コマンドプロンプトで`gatsby`と入力して Gatsby を使用できるようになります。
Gatsby とその依存パッケージをインストールするためには npm を使います。Gatsby CLI をインストールするにはコマンドラインに `npm install -g gatsby-cli` と入力してください。`-g` フラグを付けると Gatsby がグローバルにインストールされ、コマンドラインで `gatsby` と入力することで Gatsby を使用できるようになります。


You'll use npm to install Gatsby and its dependencies. Type `npm install -g gatsby-cli` at a command line prompt to install the Gatsby command line interface or CLI. The `-g` flag installs Gatsby globally, which means that you can use it by typing `gatsby` at a prompt. For example, you can use `gatsby new` to create a new Gatsby site.
Gatsby とその依存パッケージをインストールするためには npm を使います。Gatsby CLI をインストールするにはコマンドラインプロンプトで`npm install -g gatsby-cli`と入力してください。`-g`のフラグを付けると Gatsby がグローバルにインストールされ、コマンドプロンプトで`gatsby`と入力して Gatsby を使用できるようになります。
例えば`gatsby new`と入力すると新規の Gatsby サイトを作成できます。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
例えば`gatsby new`と入力すると新規の Gatsby サイトを作成できます。
例えば `gatsby new` と入力すると新規の Gatsby サイトを作成できます。

@uetchy uetchy added the status: awaiting author response A pull request that is awaiting author's response label Jan 22, 2020
@takahi5
Copy link
Contributor Author

takahi5 commented Jan 26, 2020

レビューありがとうございます!ご指摘の箇所を修正しました。

主な修正は以下です。

  • タイトル
    「Gatsby を可能にする」→ 意訳で「Gatsbyに必要な」に修正してみました。

  • コードブロックの前後にスペースを入れました

  • コマンドプロンプト→コマンドラインに全体的に修正しました。

@takahi5 takahi5 requested a review from uetchy January 26, 2020 00:27
uetchy
uetchy previously approved these changes Jan 26, 2020
Copy link
Contributor

@uetchy uetchy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉

@uetchy uetchy added status: awaiting more approval A pull request that is awaiting reviewer #2 to be assigned and removed status: awaiting author response A pull request that is awaiting author's response status: awaiting review A pull request that is currently awaiting a reviewer's response labels Jan 26, 2020
2000 年代初頭、Gmail Flickr などのサービスは JavaScript でロバストなアプリケーションを開発できることを示してくれました。そしてそれらのアプリケーションは、ウェブブラウザーとインターネット接続があれば誰でも利用できるものでした。

However, those JavaScript applications had a big limitation: they could only perform as well as the runtime allowed. Before 2009, the runtime was almost always a web browser. So Google formed the Chromium Project, in part, to create a faster browser. The result was Google Chrome, released in 2008, and its new JavaScript engine: [V8](https://v8.dev/).
しかし、それらの JavaScript アプリケーションは、ランタイムの下でしか実行できないという、大きな制約がありました。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この部分、改行を原文と合わせるようにお願いします:bow:

1 年後、V8 エンジンを使用した Node.js というスタンドアロン JavaScript ランタイムが公開されました。

Once you've installed Node.js, you can use it to run JavaScript from the [command line](/docs/glossary#command-line). Type `node` at a prompt to launch the Node.js interactive shell. Include the path to a JavaScript file to execute that script: e.g. `node /Users/gatsbyfan/hello-world.js`.
Node.js をインストールすると、JavaScript を[コマンドライン](/docs/glossary#command-line)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この部分、改行を原文と合わせるようにお願いします:bow:

コマンドラインで `node` と入力すると Node.js のシェルが立ち上がります。スクリプトを実行するには JavaScript ファイルへのパスを含めて入力します。例: `node /Users/gatsbyfan/hello-world.js`

You will need to [install Node.js](/tutorial/part-zero/#-install-nodejs-and-npm) before using Gatsby. Gatsby is built using JavaScript, and requires the Node.js runtime.
Gatsby を使用する前にまず、[Node.js をインストール](/tutorial/part-zero/#-install-nodejs-and-npm)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この部分、改行を原文と合わせるようにお願いします:bow:

Node.js をインストールすると、Node.js **パッケージマネージャー** である [npm](/docs/glossary#npm) もあわせてインストールされます。パッケージマネージャーとはモジュールやパッケージをあなたのプロジェクトにインストールしたり更新したりするための特別なソフトウェアです。

You'll use npm to install Gatsby and its dependencies. Type `npm install -g gatsby-cli` at a command line prompt to install the Gatsby command line interface or CLI. The `-g` flag installs Gatsby globally, which means that you can use it by typing `gatsby` at a prompt. For example, you can use `gatsby new` to create a new Gatsby site.
Gatsby とその依存パッケージをインストールするためには npm を使います。Gatsby CLI をインストールするにはコマンドラインに `npm install -g gatsby-cli` と入力してください。`-g` フラグを付けると Gatsby がグローバルにインストールされ、コマンドラインで `gatsby` と入力することで Gatsby を使用できるようになります。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この部分、改行を原文と合わせるようにお願いします:bow:

Copy link
Contributor

@Naturalclar Naturalclar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@takahi5 翻訳はとても良いと感じました!改行だけ原文と合わせて貰うようにお願いしたいです。:pray:

@Naturalclar Naturalclar added status: awaiting author response A pull request that is awaiting author's response and removed status: awaiting more approval A pull request that is awaiting reviewer #2 to be assigned labels Jan 26, 2020
@Naturalclar
Copy link
Contributor

@takahi5 こちら、suggestion の確認はできましたでしょうか?

@uetchy uetchy added the stale? A pull request that is seemingly abandoned by author label Feb 9, 2020
@takahi5
Copy link
Contributor Author

takahi5 commented Feb 10, 2020

@Naturalclar すいません、コメント見落としていました!指摘箇所対応します!

@smorimoto smorimoto removed the stale? A pull request that is seemingly abandoned by author label Feb 10, 2020
@takahi5
Copy link
Contributor Author

takahi5 commented Feb 10, 2020

遅くなり申し訳ありません!指摘箇所(改行)を修正しました。

@takahi5 takahi5 requested a review from Naturalclar February 10, 2020 22:00
@smorimoto
Copy link
Contributor

コンフリクトしているようです。

@smorimoto
Copy link
Contributor

smorimoto commented Feb 10, 2020

<<<<<<< docs/glossary/node
Gatsby を使用する前にまず、[Node.js をインストール](/tutorial/part-zero/#-install-nodejs-and-npm)する必要があります。
=======
You will need to [install Node.js](/tutorial/part-zero/#install-nodejs-for-your-appropriate-operating-system) before using Gatsby. Gatsby is built using JavaScript, and requires the Node.js runtime.
>>>>>>> master

@takahi5
Copy link
Contributor Author

takahi5 commented Feb 13, 2020

@imbsky コンフリクト解消しました。
ドキュメント内の相対パス /tutorial/part-zero/#install-nodejs-for-your-appropriate-operating-system がmaster側で変わっていたためコンフリクトしたようでした。

相対パスは原文ママにしたのですが、それでよろしかったでしょうか?

Copy link
Contributor

@Naturalclar Naturalclar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@Naturalclar
Copy link
Contributor

相対パスは原文ママで一旦は大丈夫です!

@Naturalclar Naturalclar added status: awaiting more approval A pull request that is awaiting reviewer #2 to be assigned and removed status: awaiting author response A pull request that is awaiting author's response labels Feb 16, 2020
Copy link
Contributor

@uetchy uetchy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ありがとうございます!

@uetchy uetchy merged commit ad76db9 into gatsbyjs:master Feb 16, 2020
@gatsbot
Copy link

gatsbot bot commented Feb 16, 2020

Holy buckets, @takahi5 — we just merged your PR to Gatsby! 💪💜

Gatsby is built by awesome people like you. Let us say “thanks” in two ways:

  1. We’d like to send you some Gatsby swag. As a token of our appreciation, you can go to the Gatsby Swag Store and log in with your GitHub account to get a coupon code good for one free piece of swag. We’ve got Gatsby t-shirts, stickers, hats, scrunchies, and much more. (You can also unlock even more free swag with 5 contributions — wink wink nudge nudge.) See gatsby.dev/swag for details.
  2. We just invited you to join the Gatsby organization on GitHub. This will add you to our team of maintainers. Accept the invite by visiting https://github.com/orgs/gatsbyjs/invitation. By joining the team, you’ll be able to label issues, review pull requests, and merge approved pull requests.

If there’s anything we can do to help, please don’t hesitate to reach out to us: tweet at @gatsbyjs and we’ll come a-runnin’.

Thanks again!

@uetchy uetchy removed the status: awaiting more approval A pull request that is awaiting reviewer #2 to be assigned label Feb 16, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants