Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Japanese translation of docs/documentation_best_practices.md #9522

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions docs/ja/documentation_best_practices.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# ドキュメントベストプラクティス

<!---
original document: 0.9.19:docs/documentation_best_practices.md
git diff 0.9.19 HEAD -- docs/documentation_best_practices.md | cat
-->

このページは QMK のためのドキュメントを作成する時のベストプラクティスを文章化するために存在します。これらのガイドラインに従うことで、一貫したトーンとスタイルを維持することに役立ちます。これは他の人が QMK をより簡単に理解するのに役立ちます。
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

# ページの開始

ドキュメントページは通常 H1 ヘッダから始まり、ユーザがこのページで見つける内容の一段落の説明が続く必要があります。この見出しと段落は目次の次にあるため、見出しを短くして、空白の無い長い文字列を避けるように気を付けてください。
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

例:

```
# My Page Title

This page covers my super cool feature. You can use this feature to make coffee, squeeze fresh oj, and have an egg mcmuffin and hashbrowns delivered from your local macca's by drone.
```

# 見出し

通常、ページには複数の "H1" 見出しが必要です。目次には H1 と H2 見出しのみが含まれるため、適切に計画してください。目次が広くなりすぎないように、H1 と H2 の見出しでは幅を広げないようにしてください。
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

# スタイル付きのヒントボックス
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

注目を集めるためにテキストの周囲にスタイル付きのヒントボックスを描画することができます。
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

### Important
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

```
!> This is important
```

以下のように描画されます:
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

!> This is important

### 一般的なヒント

```
?> This is a helpful tip.
```

以下のように描画されます:
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

?> This is a helpful tip.


# 文章化機能
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

QMK のために新しい機能を作成した場合、そのドキュメントページを作成してください。長い必要は無く、機能を説明する幾つかの文と、関連するキーコードをリストした表で十分です。以下は基本的なテンプレートです:
umi-umi marked this conversation as resolved.
Show resolved Hide resolved

```markdown
# My Cool Feature

This page describes my cool feature. You can use my cool feature to make coffee and order cream and sugar to be delivered via drone.

## My Cool Feature Keycodes

|Long Name|Short Name|Description|
|---------|----------|-----------|
|KC_COFFEE||Make Coffee|
|KC_CREAM||Order Cream|
|KC_SUGAR||Order Sugar|
```

ドキュメントを `docs/feature_<my_cool_feature>.md` に配置し、そのファイルを `docs/_sidebar.md` の適切な場所に追加します。キーコードを追加した場合は、機能ページに戻るリンクとともに `docs/keycodes.md` に追加するようにしてください。
umi-umi marked this conversation as resolved.
Show resolved Hide resolved