aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ja
diff options
context:
space:
mode:
authorumi <57262844+umi-umi@users.noreply.github.com>2020-06-28 12:02:43 +0900
committerGitHub <noreply@github.com>2020-06-27 20:02:43 -0700
commit097df6afdbacf70ee10d84639b3975e6fc0b37ec (patch)
tree194d3a8b9f4acf6f0607c160a02ef393f81cee9f /docs/ja
parent6574ac52ad93bdd010c323c444f26b951c9227c3 (diff)
downloadfirmware-097df6afdbacf70ee10d84639b3975e6fc0b37ec.tar.gz
firmware-097df6afdbacf70ee10d84639b3975e6fc0b37ec.tar.bz2
firmware-097df6afdbacf70ee10d84639b3975e6fc0b37ec.zip
[Docs] Japanese translation of docs/documentation_templates.md (#9523)
* add documentation_templates.md translation * update based on comment * update based on comment
Diffstat (limited to 'docs/ja')
-rw-r--r--docs/ja/documentation_templates.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/docs/ja/documentation_templates.md b/docs/ja/documentation_templates.md
new file mode 100644
index 000000000..a767c671a
--- /dev/null
+++ b/docs/ja/documentation_templates.md
@@ -0,0 +1,45 @@
+# ドキュメントテンプレート
+
+<!---
+ original document: 0.9.19:docs/documentation_templates.md
+ git diff 0.9.19 HEAD -- docs/documentation_templates.md | cat
+-->
+
+このページでは、新しいキーマップやキーボードを QMK に提出する際に使うべきテンプレートをまとめています。
+
+## キーマップ `readme.md` テンプレート :id=keyboard-readmemd-template
+
+ほとんどのキーマップには、レイアウトを表す画像があります。画像を作成するには、[Keyboard Layout Editor](http://keyboard-layout-editor.com) を使うことができます。画像は [Imgur](http://imgur.com) や別のホスティングサービスにアップロードし、プルリクエストに画像を含めないでください。
+
+画像の下には、キーマップを理解してもらうための簡単な説明文を書いてください。
+
+```
+![Clueboard Layout Image](http://i.imgur.com/7Capi8W.png)
+
+# Default Clueboard Layout
+
+This is the default layout that comes flashed on every Clueboard. For the most
+part it's a straightforward and easy to follow layout. The only unusual key is
+the key in the upper left, which sends Escape normally, but Grave when any of
+the Ctrl, Alt, or GUI modifiers are held down.
+```
+
+## キーボード `readme.md` テンプレート
+
+```
+# Planck
+
+![Planck](http://i.imgur.com/q2M3uEU.jpg)
+
+A compact 40% (12x4) ortholinear keyboard kit made and sold by OLKB and Massdrop. [More info on qmk.fm](http://qmk.fm/planck/)
+
+* Keyboard Maintainer: [Jack Humbert](https://github.com/jackhumbert)
+* Hardware Supported: Planck PCB rev1, rev2, rev3, rev4, Teensy 2.0
+* Hardware Availability: [OLKB.com](https://olkb.com), [Massdrop](https://www.massdrop.com/buy/planck-mechanical-keyboard?mode=guest_open)
+
+Make example for this keyboard (after setting up your build environment):
+
+ make planck/rev4:default
+
+See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
+```