-
-
Notifications
You must be signed in to change notification settings - Fork 40.7k
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] update Japanese translation of some document files #14544
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,8 +1,8 @@ | ||||||
# 接点バウンス / 接点チャタリング | ||||||
|
||||||
<!--- | ||||||
original document: 0.11.53:docs/feature_debounce_type.md | ||||||
git diff 0.11.53 HEAD -- docs/feature_debounce_type.md | cat | ||||||
original document: 0.14.14:docs/feature_debounce_type.md | ||||||
git diff 0.14.14 HEAD -- docs/feature_debounce_type.md | cat | ||||||
--> | ||||||
|
||||||
メカニカルスイッチは押した状態と放した状態の間の移行が単純ではないことが良くあります。 | ||||||
|
@@ -112,11 +112,11 @@ DEBOUNCE_TYPE = <アルゴリズムの名前> | |||||
```NUM_KEYS``` の 8ビットカウンタの更新に高い計算コストがかかる、もしくは低スキャンレートのキーボード用で、各指は通常一度に1行しか叩かないようになっています。これは ErgoDox モデルに適しています; マトリックスは90度回転しているため、その「行」は実際には「列」であり、通常の使用では各指は一度に1つの「行」にしか当たりません。 | ||||||
* ```sym_eager_pk``` - キーごとにデバウンスします。状態が変化すると、応答は即座に行われ、その後そのキーは ```DEBOUNCE``` ミリ秒の間入力されません。 | ||||||
* ```sym_defer_pk``` - キーごとにデバウンスします。状態が変化すると、キーごとのタイマーが設定されます。```DEBOUNCE``` ミリ秒の間そのキーに変化がなければ、キーの状態の変更がプッシュされます。 | ||||||
* ```asym_eager_defer_pk``` - キーごとにデバウンスします。キーのダウン状態が変化すると、応答は即座に行われ、その後そのキーは ```DEBOUNCE``` ミリ秒の間入力されません。キーのアップ状態が変化すると、キーごとのタイマーが設定されます。```DEBOUNCE``` ミリ秒の間そのキーに変化がなければ、キーのアップ状態がプッシュされます。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
### 将来実装される可能性のあるいくつかのアルゴリズム: | ||||||
* ```sym_defer_pr``` | ||||||
* ```sym_eager_g``` | ||||||
* ```asym_eager_defer_pk``` | ||||||
|
||||||
### 独自のデバウンスコードの使用 | ||||||
独自のデバウンスアルゴリズムを実装するためのオプションがあります。次のようにします: | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,9 +1,10 @@ | ||||||
# LED インジケータ | ||||||
|
||||||
<!--- | ||||||
original document: 0.10.52:docs/feature_led_indicators.md | ||||||
git diff 0.10.52 HEAD -- docs/feature_led_indicators.md | cat | ||||||
original document: 0.14.22:docs/feature_led_indicators.md | ||||||
git diff 0.14.22 HEAD -- docs/feature_led_indicators.md | cat | ||||||
--> | ||||||
?> この機能を分割型キーボードの左右両側で使うためには、追加の設定が必要になります。詳細は [Data sync options](feature_split_keyboard.md#data-sync-options) を参照してください。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
QMK は HID 仕様で定義された5つの LED の読み取りメソッドを提供します: | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,8 +1,8 @@ | ||||||
# QMK での速記 :id=stenography-in-qmk | ||||||
|
||||||
<!--- | ||||||
original document: 0.13.15:docs/feature_stenography.md | ||||||
git diff 0.13.15 HEAD -- docs/feature_stenography.md | cat | ||||||
original document: 0.14.14:docs/feature_stenography.md | ||||||
git diff 0.14.14 HEAD -- docs/feature_stenography.md | cat | ||||||
--> | ||||||
|
||||||
[速記](https://en.wikipedia.org/wiki/Stenotype)は裁判所のレポート、字幕および耳が不自由な人のためのリアルタイムの文字起こしで最もよく使われる記述方法です。速記では単語はスペル、音声およびショートカット(短い)ストロークが混在する音節ごとに音節化されます。プロの速記者は、標準的なタイピングで通常見られる負担を掛けずに、はるかに少ないエラー(99.9%より高い精度)で、200-300 WPM に到達できます。 | ||||||
|
@@ -133,3 +133,17 @@ bool postprocess_steno_user(uint16_t keycode, keyrecord_t *record, steno_mode_t | |||||
| `STN_RES1` | (GeminiPR のみ) | | ||||||
| `STN_RES2` | (GeminiPR のみ) | | ||||||
| `STN_PWR` | (GeminiPR のみ) | | ||||||
1本の指で2つのキーを押したくない場合は、組み合わせたキーコードを使うことができます。これらは `keymap_steno.h` でも定義されており、両方のキーが押された、または放されたと報告されます。これらのキーコードを使うには、`config.h` ファイルで `STENO_COMBINEDMAP` を定義します。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|Combined key | Key1 | Key 2 | | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 項目名が未翻訳 |
||||||
|---------------|--------|----------| | ||||||
|STN_S3 | STN_S1 | STN_S2 | | ||||||
|STN_TKL | STN_TL | STN_KL | | ||||||
|STN_PWL | STN_PL | STN_WL | | ||||||
|STN_HRL | STN_HL | STN_RL | | ||||||
|STN_FRR | STN_FR | STN_RR | | ||||||
|STN_PBR | STN_PR | STN_BR | | ||||||
|STN_LGR | STN_LR | STN_GR | | ||||||
|STN_TSR | STN_TR | STN_SR | | ||||||
|STN_DZR | STN_DR | STN_ZR | | ||||||
|STN_AO | STN_A | STN_O | | ||||||
|STN_EU | STN_E | STN_U | |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -2,8 +2,8 @@ | |||||
|
||||||
<!--- | ||||||
grep --no-filename "^[ ]*git diff" docs/ja/*.md | sh | ||||||
original document: 0.12.41:docs/hardware_keyboard_guidelines.md | ||||||
git diff 0.12.41 HEAD -- docs/hardware_keyboard_guidelines.md | cat | ||||||
original document: 0.14.14:docs/hardware_keyboard_guidelines.md | ||||||
git diff 0.14.14 HEAD -- docs/hardware_keyboard_guidelines.md | cat | ||||||
--> | ||||||
|
||||||
QMK は開始以来、コミュニティにおけるキーボードの作成や保守に貢献しているあなたのような人たちのおかげで飛躍的に成長しました。私たちが成長するにつれて、うまくやるためのいくつかのパターンを発見しました。他の人たちがあなたの苦労の恩恵を受けやすくするため、それにあわせてもらえるようお願いします。 | ||||||
|
@@ -195,9 +195,9 @@ Clueboard は、サブフォルダをまとめるためとキーボードのリ | |||||
|
||||||
QMK が提供する機能の量を考えれば、新しいユーザーが混乱するのは当たり前です。キーボードのデフォルトファームウェアをまとめるなら、有効にする機能とオプションをハードウェアのサポートに必要な最低限のセットにすることをおすすめします。特定の機能に関するおすすめは以下の通りです。 | ||||||
|
||||||
### ブートマジックとコマンド | ||||||
### マジックキーコードとコマンド | ||||||
|
||||||
[ブートマジック](ja/feature_bootmagic.md) と[コマンド](ja/feature_command.md)は、ユーザーがキーボードを明白でない方法で制御出来るようにする2つの関連機能です。いずれかの機能を有効にする場合、この機能をどのように提供するかについて、よく考えることをおすすめします。この機能が必要なユーザーは、あなたのキーボードを最初のプログラムできるキーボードとして使用している初心者に影響を与えることなく、個人的なキーマップ内で有効に出来ることを覚えておきましょう。 | ||||||
[マジックキーコード](ja/feature_bootmagic.md) と[コマンド](ja/feature_command.md)は、ユーザーがキーボードを明白でない方法で制御出来るようにする2つの関連機能です。いずれかの機能を有効にする場合、この機能をどのように提供するかについて、よく考えることをおすすめします。この機能が必要なユーザーは、あなたのキーボードを最初のプログラムできるキーボードとして使用している初心者に影響を与えることなく、個人的なキーマップ内で有効に出来ることを覚えておきましょう。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
新規ユーザーが遭遇する最も多い問題は、キーボードを接続している間に間違えてブートマジックをトリガーしてしまうことです。キーボードの下を持っているとき、知らない間に Alt とスペースバーを押して、これらのキーが交換されてしまったことに気づきます。デフォルトではこの機能を無効にすることをおすすめしますが、有効にする場合は、キーボードを接続している間に押し間違えないキーへ `BOOTMAGIC_KEY_SALT` を設定することを検討して下さい。 | ||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.