From c2a6d084dc80b5eb36e898f22de3303cc1dd4f26 Mon Sep 17 00:00:00 2001 From: konojunya Date: Wed, 15 Jan 2020 10:36:50 +0900 Subject: [PATCH 1/3] docs: what is a plugin --- docs/docs/what-is-a-plugin.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/docs/what-is-a-plugin.md b/docs/docs/what-is-a-plugin.md index e6a901a0f..94514a07e 100644 --- a/docs/docs/what-is-a-plugin.md +++ b/docs/docs/what-is-a-plugin.md @@ -1,15 +1,15 @@ --- -title: What is a Plugin? +title: プラグインとは? --- -Gatsby plugins are Node.js packages that implement Gatsby APIs. For larger, more complex sites, plugins let you modularize your site customizations into site-specific plugins. +Gatsby プラグインは、Gatsby API を実装する Node.js パッケージです。より大規模で複雑なサイトの場合、プラグインを使用するとサイトのカスタマイズをサイト固有のプラグインにモジュール化できます。 -One of the best ways to add functionality to Gatsby is through our plugin system. Gatsby is designed to be extensible, which means plugins are able to extend and modify just about everything Gatsby does. +Gatsby に機能を追加するもっとも良いの方法の 1 つは、プラグインシステムを使用することです。Gatsby は拡張可能に設計されています。つまり、プラグインは Gatsby が行うほぼすべてを拡張および変更できます。 -Of the many possibilities, plugins can: +多くの可能性のうち、プラグインは次のことができます。 -- add external data or content (e.g. your CMS, static files, a REST API) to your Gatsby GraphQL data -- transform data from other formats (e.g. Markdown, YAML, CSV) to JSON objects -- add third-party services (e.g. Google Analytics, Instagram) to your site -- add bundled, pre-configured functionality with [themes](/docs/themes/) -- do anything you can dream up! +- 外部データまたはコンテンツ(CMS、静的ファイル、REST API など)を Gatsby GraphQL データに追加します。 +- データを他の形式(Markdown、YAML、CSV など)から JSON オブジェクトに変換します。 +- サードパーティのサービス(Google Analytics、Instagram など)をサイトに追加します。 +- [テーマ](docs/themes) を使用して、バンドルされている事前に設定した機能を追加します。 +- 思いつく限りのことをしてください! From cc91755ed450a4239a2dddeb99fb7ca633d8d125 Mon Sep 17 00:00:00 2001 From: konojunya Date: Wed, 15 Jan 2020 10:56:55 +0900 Subject: [PATCH 2/3] fixup! docs: what is a plugin --- docs/docs/what-is-a-plugin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/what-is-a-plugin.md b/docs/docs/what-is-a-plugin.md index 94514a07e..6ee522c53 100644 --- a/docs/docs/what-is-a-plugin.md +++ b/docs/docs/what-is-a-plugin.md @@ -4,9 +4,9 @@ title: プラグインとは? Gatsby プラグインは、Gatsby API を実装する Node.js パッケージです。より大規模で複雑なサイトの場合、プラグインを使用するとサイトのカスタマイズをサイト固有のプラグインにモジュール化できます。 -Gatsby に機能を追加するもっとも良いの方法の 1 つは、プラグインシステムを使用することです。Gatsby は拡張可能に設計されています。つまり、プラグインは Gatsby が行うほぼすべてを拡張および変更できます。 +Gatsby に機能を追加するもっとも良い方法の 1 つは、プラグインシステムを使用することです。Gatsby は拡張可能に設計されています。つまり、プラグインは Gatsby が行うほぼすべてを拡張および変更できます。 -多くの可能性のうち、プラグインは次のことができます。 +たとえば、プラグインを使うことで以下のようなことができます。 - 外部データまたはコンテンツ(CMS、静的ファイル、REST API など)を Gatsby GraphQL データに追加します。 - データを他の形式(Markdown、YAML、CSV など)から JSON オブジェクトに変換します。 From eb4118ae8c53a0103c7e2a0e3039f9e4aee055e3 Mon Sep 17 00:00:00 2001 From: konojunya Date: Wed, 15 Jan 2020 16:06:27 +0900 Subject: [PATCH 3/3] fixup! docs: what is a plugin --- docs/docs/what-is-a-plugin.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/what-is-a-plugin.md b/docs/docs/what-is-a-plugin.md index 6ee522c53..3d499c205 100644 --- a/docs/docs/what-is-a-plugin.md +++ b/docs/docs/what-is-a-plugin.md @@ -8,8 +8,8 @@ Gatsby に機能を追加するもっとも良い方法の 1 つは、プラグ たとえば、プラグインを使うことで以下のようなことができます。 -- 外部データまたはコンテンツ(CMS、静的ファイル、REST API など)を Gatsby GraphQL データに追加します。 -- データを他の形式(Markdown、YAML、CSV など)から JSON オブジェクトに変換します。 -- サードパーティのサービス(Google Analytics、Instagram など)をサイトに追加します。 -- [テーマ](docs/themes) を使用して、バンドルされている事前に設定した機能を追加します。 +- Gatsby GraphQL のデータに外部データまたはコンテンツ(CMS、静的ファイル、REST API など)を追加。 +- データを他の形式(Markdown、YAML、CSV など)から JSON オブジェクトに変換。 +- サイトにサードパーティのサービス(Google Analytics、Instagram など)を追加。 +- [テーマ](docs/themes) を使用して、バンドルされている事前に設定した機能を追加。 - 思いつく限りのことをしてください!