Skip to content

Commit

Permalink
Project translation
Browse files Browse the repository at this point in the history
  • Loading branch information
master authored and master committed Jul 18, 2024
1 parent d09198c commit 0c09ebd
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion target/docs/FAQ.htm
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ <h3 id="HotPrefix">プレフィックスキーが何もしないのではなく
<pre>Numpad0 &amp; Numpad1::MsgBox "You pressed Numpad1 while holding down Numpad0."</pre>
<p>さて、Numpad0が上記のようなホットキーの起動に使われなかったときは、いつでも本物のNumpad0のキーストロークを送るようにするには、以下のホットキーを追加してください:</p>
<pre> $Numpad0::Send "{Numpad0}"</pre>
<p>プレフィックス$は、無限ループに関する警告ダイアログを防ぐために必要です(ホットキーが「自分自身を送信」するため)。In addition, the above action occurs at the time the key is <strong>released</strong>.</p>
<p>プレフィックス$は、無限ループに関する警告ダイアログを防ぐために必要です(ホットキーが「自分自身を送信」するため)。また、鍵が<strong>離された</strong>時点で上記の動作が発生します。</p>
<h3 id="HotOverride">Win+U(ユーティリティマネージャ)やWin+R(ファイル名を指定して実行)など、Windowsに内蔵されているショートカットキーを変更したり無効にしたりするには、どうしたらよいですか?</h3>
<p>以下はその<a href="misc/Override.htm"></a>です。</p>
<h3 id="HotRegex">Hotstringsでワイルドカードや正規表現を使用することはできますか?</h3>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/howto/ManageWindows.htm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2 id="class">ウィンドウズクラス</h2>
WinWait "ahk_class Notepad"
WinActivate
WinMove 0, 0, A_ScreenWidth/4, A_ScreenHeight/2</pre>
<p>ウィンドウクラスは、上図のように「ahk_class」という単語を使ってタイトルと区別します。複数の条件を組み合わせる場合は、ウィンドウのタイトルを最初に記載します。For example: <code>"Untitled ahk_class Notepad"</code>.</p>
<p>ウィンドウクラスは、上図のように「ahk_class」という単語を使ってタイトルと区別します。複数の条件を組み合わせる場合は、ウィンドウのタイトルを最初に記載します。事例:<code>"Untitled ahk_class Notepad"</code></p>
<p><strong>関連:</strong><a href="../misc/WinTitle.htm#ahk_class">ahk_class</a></p>

<h2 id="exe">プロセス名/パス</h2>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/A_HotkeyModifierTimeout.htm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h2 id="Remarks">備考</h2>
<p>この変数は、以下の場合に効果がありません:</p>
<ul>
<li>ホットキーは、<a href="Send.htm#SendInput">SendInput</a>または<a href="Send.htm#SendPlay">SendPlay</a>メソッドでキーストロークを送信します。これは、ユーザーがキーを押したり離したりする操作を、送信完了後まで延期するためです。</li>
<li>スクリプトにキーボードフックがインストールされている(スクリプトがフックを使用しているかどうかは、<a href="../Program.htm#main-window">メインウィンドウ</a>の「View-&gt;Key history」メニュー項目、または<a href="KeyHistory.htm">KeyHistory</a>関数で確認することができます)。This is because the hook can keep track of which modifier keys (Alt, Ctrl, Shift, and Win) the user is physically holding down and doesn't need to use the timeout.</li>
<li>スクリプトにキーボードフックがインストールされている(スクリプトがフックを使用しているかどうかは、<a href="../Program.htm#main-window">メインウィンドウ</a>の「View-&gt;Key history」メニュー項目、または<a href="KeyHistory.htm">KeyHistory</a>関数で確認することができます)。これは、フックがユーザーが物理的に押している修飾キー(AltCtrlShiftWin)を追跡できるため、タイムアウトを使用する必要がないためです。</li>
</ul>
<p>この変数の効果を説明するために、この例を考えてみましょう:<code>^!a::Send "abc"</code></p>
<p><a href="Send.htm">Send</a>関数が実行されると、まず<kbd>Ctrl</kbd><kbd>Alt</kbd>を解除して、文字が正しく送信されるようにします。すべてのキーを送信した後、関数は<kbd>Ctrl</kbd><kbd>Alt</kbd>を安全に押し戻せるかどうか(ユーザーがまだ押し続けているかどうかを確認するため)わからない。しかし、指定されたミリ秒未満しか経過していない場合は、ユーザーがまだキーを離す機会がなかったと判断し、物理的な状態に合わせてキーを押し戻します。そうしないと、修飾キーが押し戻されず、同じキーや別のキーを修飾させるために、ユーザーは一旦キーを離して再度押す必要があります。</p>
Expand Down
4 changes: 2 additions & 2 deletions target/docs/lib/FileEncoding.htm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2 id="Parameters">パラメータ</h2>
<dd>
<p>型:<a href="../Concepts.htm#strings">文字列</a>または<a href="../Concepts.htm#numbers">整数</a></p>
<p>以下のいずれかの値を指定します:</p>
<p><strong>CP0</strong>または空文字列:システムデフォルトのANSIコードページ下記の備考をご覧ください</p>
<p><strong>CP0</strong>または空文字列:システムデフォルトのANSIコードページ。下記の備考をご覧ください</p>
<p><strong>UTF-8:</strong>Unicode UTF-8、CP65001と同等です。</p>
<p><strong>UTF-8-RAW:</strong>上記と同様ですが、新規ファイル作成時にバイトオーダーマークを付与しません。</p>
<p><strong>UTF-16:</strong>Unicode UTF-16 リトルエンディアンバイトオーダーで、CP1200と同等。</p>
Expand All @@ -37,7 +37,7 @@ <h2 id="Return_Value">戻り値</h2>
<p>前の設定に戻す機能です。</p>

<h2 id="Remarks">備考</h2>
<p>FileEncodin が使われていないときは、エンコードの初期値はCP0ですIf FileEncoding is not used, the default encoding is CP0.</p>
<p>FileEncodingが使われていないときは、エンコードの初期値はCP0です。</p>
<p>CP0は、普遍的に1つのコードページを識別するのではなく、システムのデフォルトのANSIコードページに対応し、システムロケールまたは「非Unicodeプログラム用の言語」のシステム設定に依存します。実際のコードページ番号を取得するには、<code>DllCall("GetACP")</code>を呼び出します。</p>
<p>組込変数<strong>A_FileEncoding</strong>に現在の設定が格納されます。</p>
<p>新しく起動する<a href="../misc/Threads.htm">スレッド</a><a href="../Hotkeys.htm">ホットキー</a><a href="Menu.htm">カスタムメニュー項目</a><a href="SetTimer.htm">時間指定</a>サブルーチンなど)はすべて、この機能のデフォルト設定で新しくスタートします。このデフォルトは、<a href="../Scripts.htm#auto">スクリプト起動</a>時にこの関数を使用することで変更することができます。</p>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/FileSetAttrib.htm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2 id="Error_Handling">エラー処理</h2>
<p>ファイルが見つかった場合、<a href="../Variables.htm#LastError">A_LastError</a>には0(ゼロ)または最後の失敗の直後のオペレーティングシステムのGetLastError()関数の結果が設定されます。それ以外の場合、A_LastError は、ファイルが見つからなかった理由を示す可能性のあるエラーコードを含みます。</p>

<h2 id="Remarks">備考</h2>
<p>The compression state of files cannot be changed with this function.</p>
<p>この機能でファイルの圧縮状態を変更することはできません。</p>

<h2 id="Related">関連</h2>
<p><a href="FileGetAttrib.htm">FileGetAttrib</a><a href="FileGetTime.htm">FileGetTime</a><a href="FileSetTime.htm">FileSetTime</a><a href="FileGetSize.htm">FileGetSize</a><a href="FileGetVersion.htm">FileGetVersion</a><a href="LoopFiles.htm">ファイルループ</a></p>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/Format.htm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2 id="FormatSpec">フォーマット指定子</h2>
<li><code>s</code><em>Precision</em>は、印刷する文字数の最大値を指定します。これを超える文字は印刷されません。</li>
<li>整数型(<code>d</code><code>i</code><code>u</code><code>x</code><code>X</code><code>o</code>)の場合、<em>Precision</em><em>Width</em>のように接頭辞<code class="no-highlight">0</code>、デフォルト1として動作します。</li>
</ul>
<p id="ULT"><strong>ULT:</strong> Specifies a case transformation to apply to a string value -- <b>U</b>pper, <b>L</b>ower or <b>T</b>itle. <code>s</code>タイプのみ有効です。例えば<code>{:U}</code><code>{:.20Ts}</code>のようなものです。小文字の<code>l</code><code>t</code>もサポートされているが、<code>u</code>は符号なし整数用に予約されている。</p>
<p id="ULT"><strong>ULT</strong>文字列の値に適用する大文字と小文字の変換を指定する --<b>U</b>pper<b>L</b>ower<b>T</b>itle<code>s</code>タイプのみ有効です。例えば<code>{:U}</code><code>{:.20Ts}</code>のようなものです。小文字の<code>l</code><code>t</code>もサポートされているが、<code>u</code>は符号なし整数用に予約されている。</p>
<p><strong>Type:</strong>入力値がどのように解釈されるべきかを示す、以下の<a href="#Types">タイプテーブル</a>からの文字。省略された場合、デフォルトは<code>s</code>です。</p>

<h2 id="Flags">フラグ</h2>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/Hotstring.htm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h2 id="Examples">例</h2>
<em>; 入力ボックスを表示し、デフォルトのホットストリングを提供します:</em>
IB := InputBox("
(
Type your abbreviation at the indicated insertion point. また、必要に応じて、置換テキストを編集することもできます。
表示された挿入口に略号を入力してください。また、必要に応じて、置換テキストを編集することもできます。

Example entry: :T:btw`::by the way
)", "New Hotstring",, DefaultValue)
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/InputHook.htm
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h2 id="Parameters">パラメータ</h2>
if (ih.Input = CtrlC)
MsgBox "You pressed Control-C."</pre>
<p>By default, the system maps <kbd>Ctrl</kbd>+<kbd>A</kbd> through <kbd>Ctrl</kbd>+<kbd>Z</kbd> to ASCII control characters <a href="Chr.htm">Chr(1)</a> through <a href="Chr.htm">Chr(26)</a>. Other translations may be defined by the system or the active window's keyboard layout. Translation may ignore any modifier key for which the keyboard layout does not define a modifier bitmask. For example, <kbd>Win</kbd>+<kbd>E</kbd> typically transcribes to "e" if the M option is used.</p>
<p>The M option might cause some keyboard shortcuts such as <kbd>Ctrl</kbd>+<kbd></kbd> to misbehave while an Input is in progress.</p>
<p>Mオプションを使用すると、入力中に<kbd>Ctrl</kbd>+<kbd></kbd>などの一部のキーボードショートカットが誤動作する場合があります。</p>
<p id="option-t"><strong>T:</strong><a href="#Timeout">タイムアウト</a>を設定します(例:<code>T3</code>または<code class="no-highlight">T2.5</code>)。</p>
<p id="vis"><strong>V:</strong><a href="#VisibleText">VisibleText</a><a href="#VisibleNonText">VisibleNonText</a>を1 (true)に設定します。通常、ユーザーの入力はブロックされます(システムから隠されます)。ユーザーのキー入力をアクティブウィンドウに送るには、このオプションを使用します。</p>
<p id="asterisk"><strong>*:</strong>ワイルドカード。<a href="#FindAnywhere">FindAnywhere</a>を1 (true)に設定し、ユーザーが入力した内容のどこにでもマッチを見つけることができるようにします。</p>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/MsgBox.htm
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h3 id="Group_1_Buttons">グループ1:ボタン</h3>
<th class="sized1">関数</th>
<th class="sized2 right">十進法</th>
<th class="sized2 right">十六進法</th>
<th>String</th>
<th>文字列</th>
</tr>
<tr>
<td>OK</td>
Expand Down
3 changes: 2 additions & 1 deletion target/docs/lib/OnExit.htm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ <h2 id="ExitReason">Exit Reasons</h2>
</tr>
<tr>
<td>Menu</td>
<td>The user selected Exit from the <a href="../Program.htm#main-window">main window</a>'s menu or from the <a href="../Program.htm#tray-icon">standard tray menu</a>.</td>
<td>ユーザーは、<a href="../Program.htm#main-window">メインウィンドウ</a>のメニューまたは<a href="../Program.htm#tray-icon">標準トレイメニュー</a>からExitを選択しました。
</td>
</tr>
<tr>
<td>Exit</td>
Expand Down
6 changes: 3 additions & 3 deletions target/docs/lib/SetNumScrollCapsLockState.htm
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ <h2 id="Parameters">パラメータ</h2>
<dt>State</dt>
<dd>
<p>型:<a href="../Concepts.htm#strings">文字列</a>または<a href="../Concepts.htm#numbers">整数</a></p>
<p>If blank or omitted, the AlwaysOn/Off attribute of the key is removed (if present). そうでないときは、次のいずれかの値を指定します:</p>
<p>属性空白または省略したときは、AlwaysOn/Off属性(存在する場合)を削除します。そうでないときは、次のいずれかの値を指定します:</p>
<p><strong>On</strong> または 1 (<a href="../Variables.htm#True">true</a>):キーをオンにし、キーのAlwaysOn/Off属性(存在する場合)を削除します。</p>
<p><strong>Off</strong> または 0 (<a href="../Variables.htm#False">false</a>):キーをオフにし、キーの AlwaysOn/Off 属性を削除します(存在する場合)。</p>
<p><strong>AlwaysOn:</strong>キーを強制的に常時点灯させる</p>
<p><strong>AlwaysOff:</strong>強制的にキーが永久に外れないようにします</p>
<p><strong>AlwaysOn:</strong>強制的にキーをオンのままにします</p>
<p><strong>AlwaysOff:</strong>強制的にキーをオフのままにします</p>
</dd>

</dl>
Expand Down
8 changes: 4 additions & 4 deletions target/docs/lib/SoundSetVolume.htm
Original file line number Diff line number Diff line change
Expand Up @@ -59,24 +59,24 @@ <h2 id="Related">関連</h2>

<h2 id="Examples"></h2>
<div class="ex" id="ExBasic">
<p><a class="ex_number" href="#ExBasic"></a> Sets the master volume to 50 percent. Quotation marks can be omitted.</p>
<p><a class="ex_number" href="#ExBasic"></a> マスター音量を50パーセントにします。クオーテーションマークは省略できます。</p>
<pre>SoundSetVolume "50"</pre>
<pre>SoundSetVolume 50</pre>
</div>

<div class="ex" id="ExPlus">
<p><a class="ex_number" href="#ExPlus"></a> Increases the master volume by 10 percent. Quotation marks <u>cannot</u> be omitted.</p>
<p><a class="ex_number" href="#ExPlus"></a> マスター音量を10パーセント上げます。クオーテーションマークは省略<u>できません</u> </p>
<pre>SoundSetVolume "+10"</pre>
</div>

<div class="ex" id="ExMinus">
<p><a class="ex_number" href="#ExMinus"></a> Decreases the master volume by 10 percent. Quotation marks can be omitted.</p>
<p><a class="ex_number" href="#ExMinus"></a> マスター音量を10パーセント下げます。クオーテーションマークは省略できます。</p>
<pre>SoundSetVolume "-10"</pre>
<pre>SoundSetVolume -10</pre>
</div>

<div class="ex" id="ExMic">
<p><a class="ex_number" href="#ExMic"></a> Increases microphone recording volume by 20 percent.</p>
<p><a class="ex_number" href="#ExMic"></a> マイクロフォンのレコーディングボリュームを20パーセント上げます。</p>
<pre>SoundSetVolume "+20", , "Microphone"</pre>
</div>

Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/SysGet.htm
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h2 id="Not_Commonly_Used">一般的ではない</h2>
</tr>
<tr>
<td>47、⁠48</td>
<td>SM_CXMINSPACING, SM_CYMINSPACING: Dimensions of a grid cell for a minimized window, in pixels. 最小化されたウィンドウを並べると、このサイズの矩形に収まる。これらの値は常にSM_CXMINIMIZEDおよびSM_CYMINIMIZED以上である。</td>
<td>SM_CXMINSPACINGSM_CYMINSPACING:最小化されたウィンドウのグリッドセルの寸法(ピクセル単位)。最小化されたウィンドウを並べると、このサイズの矩形に収まる。これらの値は常にSM_CXMINIMIZEDおよびSM_CYMINIMIZED以上である。</td>
</tr>
<tr>
<td>30、⁠31</td>
Expand Down
2 changes: 1 addition & 1 deletion target/docs/lib/WinSetRegion.htm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2 id="Parameters">パラメータ</h2>
<p><strong>E:</strong>領域を矩形ではなく楕円にする。このオプションは、Wと Hが存在する場合にのみ有効である。</p>
<p><strong>R</strong><em>w-h</em>:領域を角を丸めた長方形にする。例えば、<code class="no-highlight">r30-30</code>は、各コーナーに30x30の楕円を使用する。<em>w-h</em>が省略された場合は、30-30が使用される。Rは、Wと Hが存在する場合にのみ有効である。</p>
<p><strong>矩形または楕円:</strong> Wと Hのオプションがある場合、新しい表示領域は、最初の(そして唯一の)X-Y座標の組で指定された左上隅を持つ矩形になります。ただし、Eオプションも存在する場合、新しい表示領域は矩形ではなく楕円になる。事例:<code>WinSetRegion "50-0 w200 h250 E"</code></p>
<p><strong>多角形:</strong> Wと Hのオプションがない場合、新しい表示領域は、複数のX-Y座標のペアによって決定される多角形になります(各座標のペアは、ウィンドウの左上隅からの相対的なウィンドウ内の点です)。例えば、3組の座標が指定された場合、ほとんどの場合、新しい表示領域は三角形になる。互いに対する座標ペアの順番が重要な場合もある。In addition, the word <strong>Wind</strong> may be present in <em>Options</em> to use the winding method instead of the alternating method to determine the polygon's region.</p>
<p><strong>多角形:</strong> Wと Hのオプションがない場合、新しい表示領域は、複数のX-Y座標のペアによって決定される多角形になります(各座標のペアは、ウィンドウの左上隅からの相対的なウィンドウ内の点です)。例えば、3組の座標が指定された場合、ほとんどの場合、新しい表示領域は三角形になる。互いに対する座標ペアの順番が重要な場合もある。さらに、多角形の領域を決定するために、交互法の代わりに巻線法を使用するために、<em>Options</em>に単語<strong>Wind</strong>が存在するかもしれない。</p>
</dd>
<dt>WinTitle, WinText, ExcludeTitle, ExcludeText</dt>
<dd>
Expand Down
Loading

0 comments on commit 0c09ebd

Please sign in to comment.