-
Notifications
You must be signed in to change notification settings - Fork 113
Translated docs/glossary/node #93
Conversation
docs/docs/glossary/node.md
Outdated
| --- | ||
|
|
||
| Learn more about Node.js, one of the software packages that makes Gatsby possible. | ||
| Gatsby を可能にするソフトウェアの 1 つである Node.js について学びましょう。 |
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.
「Gatsby を可能にする」直訳だと意図が伝わりにくいのでより適切な語彙に意訳した方が良いです。
docs/docs/glossary/node.md
Outdated
| 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` |
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.
| コマンドプロンプトで`node`と入力すると Node.js のシェルが立ち上がります。スクリプトを実行するには JavaScript ファイルへのパスを含めて入力します。例:`node /Users/gatsbyfan/hello-world.js` | |
| コマンドプロンプトで `node` と入力すると Node.js のシェルが立ち上がります。スクリプトを実行するには JavaScript ファイルへのパスを含めて入力します。例:`node /Users/gatsbyfan/hello-world.js` |
docs/docs/glossary/node.md
Outdated
| する必要があります。 | ||
|
|
||
| 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) も合わせてインストールされます。パッケージマネージャー |
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.
| Node.js をインストールすると、Node.js の _パッケージマネージャー_ である [npm](/docs/glossary#npm) も合わせてインストールされます。パッケージマネージャー | |
| Node.js をインストールすると、Node.js の **パッケージマネージャー** である [npm](/docs/glossary#npm) もあわせてインストールされます。パッケージマネージャー |
docs/docs/glossary/node.md
Outdated
|
|
||
| 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) も合わせてインストールされます。パッケージマネージャー | ||
| とはモジュールやパッケージをあなたのプロジェクトにインストールしたり更新したりするための特別なソフトウェアです。 |
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.
改行が入ってる?
docs/docs/glossary/node.md
Outdated
| とはモジュールやパッケージをあなたのプロジェクトにインストールしたり更新したりするための特別なソフトウェアです。 | ||
|
|
||
| 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 を使用できるようになります。 |
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.
| 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 を使用できるようになります。 |
docs/docs/glossary/node.md
Outdated
|
|
||
| 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 サイトを作成できます。 |
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.
| 例えば`gatsby new`と入力すると新規の Gatsby サイトを作成できます。 | |
| 例えば `gatsby new` と入力すると新規の Gatsby サイトを作成できます。 |
|
レビューありがとうございます!ご指摘の箇所を修正しました。 主な修正は以下です。
|
uetchy
left a comment
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.
🎉
docs/docs/glossary/node.md
Outdated
| 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 アプリケーションは、ランタイムの下でしか実行できないという、大きな制約がありました。 |
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.
この部分、改行を原文と合わせるようにお願いします:bow:
docs/docs/glossary/node.md
Outdated
| 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) |
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.
この部分、改行を原文と合わせるようにお願いします:bow:
docs/docs/glossary/node.md
Outdated
| コマンドラインで `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) |
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.
この部分、改行を原文と合わせるようにお願いします:bow:
docs/docs/glossary/node.md
Outdated
| 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 を使用できるようになります。 |
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.
この部分、改行を原文と合わせるようにお願いします:bow:
Naturalclar
left a comment
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.
@takahi5 翻訳はとても良いと感じました!改行だけ原文と合わせて貰うようにお願いしたいです。:pray:
|
@takahi5 こちら、suggestion の確認はできましたでしょうか? |
|
@Naturalclar すいません、コメント見落としていました!指摘箇所対応します! |
|
遅くなり申し訳ありません!指摘箇所(改行)を修正しました。 |
|
コンフリクトしているようです。 |
|
|
@imbsky コンフリクト解消しました。 相対パスは原文ママにしたのですが、それでよろしかったでしょうか? |
Naturalclar
left a comment
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.
👍
|
相対パスは原文ママで一旦は大丈夫です! |
uetchy
left a comment
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.
ありがとうございます!
|
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:
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! |
概要
docs/glossary/node を翻訳しました。
レビューお願いします。
チェックリスト
textlintを使って校正を行いました(推奨)Allow edits from maintainersにチェックを入れました。しばらく待ってもレビューが終わらなかったり、必要なレビュー数が足りない状態が続いた場合は、こちらからメンテナーを探して、@を付けてメンションを飛ばしてください。