Skip to content

Commit c0746cf

Browse files
committed
Translate: Documentation Style Guide
1 parent 5821c03 commit c0746cf

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

src/guide/contributing/doc-style-guide.md

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
1-
# Documentation Style Guide
1+
# ドキュメントスタイルガイド
22

3-
This guide will provide an overview of different design elements that are available for your use in creating documentation.
3+
このガイドでは、ドキュメントの作成に使用できるさまざまな設計要素の概要を説明します。
44

5-
## Alerts
5+
## アラート
66

7-
VuePress provides a custom container plugin to create alert boxes. There are four types:
7+
VuePress は、アラートボックスを作成するためのカスタムコンテナプラグインを提供します。 4つのタイプがあります:
88

9-
- **Info**: Provide information that is neutral
10-
- **Tip**: Provide information that is positive and encouraged
11-
- **Warning**: Provide information that users should be aware of as there is a low to moderate
12-
- **Danger**: Provide information that is negative and has a high risk to the user
9+
- **情報**: 中立的な情報を提供する
10+
- **ヒント**: ポジティブで奨励する情報を提供する
11+
- **警告**: 低から中程度、ユーザが知っておくべき情報を提供する
12+
- **危険**: ネガティブで、ユーザにリスクの高い情報を提供する
1313

14-
**Markdown Examples**
14+
**マークダウンの例**
1515

1616
```
17-
::: info
18-
You can find more information at this site.
17+
::: 情報
18+
あなたはこのサイトでより多くの情報を見つけることができます。
1919
:::
2020
21-
::: tip
22-
This is a great tip to remember!
21+
::: ヒント
22+
これは覚えておくべき素晴らしいヒントです!
2323
:::
2424
25-
::: warning
26-
This is something to be cautious of.
25+
::: 警告
26+
これは注意が必要なことです。
2727
:::
2828
29-
::: danger DANGER
30-
This is something we do not recommend. Use at your own risk.
29+
::: 危険
30+
これはお勧めしません。自己責任で使用してください。
3131
:::
3232
```
3333

34-
**Rendered Markdown**
34+
**レンダリングされたマークダウン**
3535

36-
::: info
37-
You can find more information at this site.
36+
::: 情報
37+
あなたはこのサイトでより多くの情報を見つけることができます。
3838
:::
3939

40-
::: tip
41-
This is a great tip to remember!
40+
::: ヒント
41+
これは覚えておくべき素晴らしいヒントです!
4242
:::
4343

44-
::: warning
45-
This is something to be cautious of.
44+
::: 警告
45+
これは注意が必要なことです。
4646
:::
4747

48-
::: danger DANGER
49-
This is something we do not recommend. Use at your own risk.
48+
::: 危険
49+
これはお勧めしません。自己責任で使用してください。
5050
:::
5151

52-
## Code Blocks
52+
## コードブロック
5353

54-
VuePress uses Prism to provide language syntax highlighting by appending the language to the beginning backticks of a code block:
54+
VuePress は、Prism を使用して、コードブロックの最初のバッククォートに言語を追加することにより、言語構文の強調表示を提供します:
5555

56-
**Markdown Example**
56+
**マークダウンの例**
5757

5858
````
5959
```js
@@ -63,20 +63,20 @@ export default {
6363
```
6464
````
6565

66-
**Rendered Output**
66+
**レンダリングされた出力**
6767
```js
6868
export default {
6969
name: 'MyComponent'
7070
}
7171
```
7272

73-
### Line Highlighting
73+
### 行の強調表示
7474

75-
To add line highlighting to your code blocks, you need to append the line number in curly braces.
75+
コードブロックに行の強調表示を追加するには、中括弧で行番号を追加する必要があります。
7676

77-
#### Single Line
77+
#### 一行
7878

79-
**Markdown Example**
79+
**マークダウンの例**
8080

8181
````
8282
```js{2}
@@ -90,7 +90,7 @@ export default {
9090
```
9191
````
9292

93-
**Rendered Markdown**
93+
**レンダリングされたマークダウン**
9494

9595
```js{2}
9696
export default {
@@ -102,7 +102,7 @@ export default {
102102
}
103103
```
104104

105-
#### Group of Lines
105+
#### 行のグループ
106106

107107
````
108108
```js{4-5}
@@ -126,7 +126,7 @@ export default {
126126
}
127127
```
128128

129-
#### Multiple Sections
129+
#### 複数のセクション
130130

131131
````
132132
```js{2,4-5}

0 commit comments

Comments
 (0)