Skip to content

Commit f87ad93

Browse files
authored
Merge pull request #157 from Katakuranatsumi/translate-documentation-style-guide
Contribute to the Docs > Documentation Style Guide の翻訳
2 parents ef9d733 + 205a995 commit f87ad93

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

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

Lines changed: 29 additions & 29 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+
- **Info**: 中立的な情報を提供する
10+
- **Tip**: ポジティブで奨励する情報を提供する
11+
- **Warning**: 低から中程度、ユーザが知っておくべき情報を提供する
12+
- **Danger**: ネガティブで、ユーザにリスクの高い情報を提供する
1313

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

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

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

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

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

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

4848
::: danger DANGER
49-
This is something we do not recommend. Use at your own risk.
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)