From b47217dce9c0c0af38e054901185fec08781ffc3 Mon Sep 17 00:00:00 2001 From: numa Date: Tue, 15 Sep 2020 01:39:02 +0900 Subject: [PATCH 1/2] docs(ja): add original --- .../configuration-cli.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 content/ja/guides/configuration-glossary/configuration-cli.md diff --git a/content/ja/guides/configuration-glossary/configuration-cli.md b/content/ja/guides/configuration-glossary/configuration-cli.md new file mode 100644 index 0000000000..77946358d5 --- /dev/null +++ b/content/ja/guides/configuration-glossary/configuration-cli.md @@ -0,0 +1,28 @@ +--- +title: 'The cli Property' +description: Nuxt.js lets you customize the CLI configuration. +menu: cli +category: configuration-glossary +position: 3 +--- + +> Nuxt.js lets you customize the CLI configuration. + +## bannerColor + +- Type: `String` + - Default: `'green'` + +Change the color of the 'Nuxt.js' title in the CLI banner. + +**Available colors:** + +`black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`, `gray`, `redBright`, `greenBright`, `yellowBright`, `blueBright`, `magentaBright`, `cyanBright`, `whiteBright` + +```js{}[nuxt.config.js] +export default { + cli: { + bannerColor: 'yellow' + } +} +``` From f5d9c0761370ffcc82565a6eae949c8acf055ff1 Mon Sep 17 00:00:00 2001 From: numa Date: Tue, 15 Sep 2020 10:04:55 +0900 Subject: [PATCH 2/2] docs(ja): translate configuration-cli --- .../configuration-glossary/configuration-cli.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/ja/guides/configuration-glossary/configuration-cli.md b/content/ja/guides/configuration-glossary/configuration-cli.md index 77946358d5..0f1cd9be24 100644 --- a/content/ja/guides/configuration-glossary/configuration-cli.md +++ b/content/ja/guides/configuration-glossary/configuration-cli.md @@ -1,23 +1,23 @@ --- -title: 'The cli Property' -description: Nuxt.js lets you customize the CLI configuration. +title: 'cli プロパティ' +description: 'Nuxt.js では CLI の設定をカスタマイズできます。' menu: cli category: configuration-glossary position: 3 --- -> Nuxt.js lets you customize the CLI configuration. +> Nuxt.js では CLI の設定をカスタマイズできます。 ## bannerColor -- Type: `String` - - Default: `'green'` +- 型: `String` + - デフォルト: `'green'` -Change the color of the 'Nuxt.js' title in the CLI banner. +CLI バナーの「Nuxt.js」タイトルの色を変更します。 -**Available colors:** +**利用可能な色:** -`black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`, `gray`, `redBright`, `greenBright`, `yellowBright`, `blueBright`, `magentaBright`, `cyanBright`, `whiteBright` +`black`、`red`、`green`、`yellow`、`blue`、`magenta`、`cyan`、`white`、`gray`、`redBright`、`greenBright`、`yellowBright`、`blueBright`、`magentaBright`、`cyanBright`、そして `whiteBright` ```js{}[nuxt.config.js] export default {