Skip to content

Commit 58a1cb9

Browse files
mastermaster
master
authored and
master
committed
Project translation
1 parent f93ab88 commit 58a1cb9

File tree

6 files changed

+44
-44
lines changed

6 files changed

+44
-44
lines changed

target/docs/Variables.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ <h3 id="operators">式演算子(優先順位の降順)</h3>
234234
<p>In an expression where all operands are true, the <u>last</u> operand is returned. Otherwise, the <u>first</u> operand that is false is returned. In other words, the result is true only if all operands are true. Boolean expressions are subject to <a href="Functions.htm#ShortCircuit">short-circuit evaluation</a> (from left to right) to improve performance.</p>
235235
<p>In the following example, all operands are true and will be evaluated:</p>
236236
<pre>A := 1, B := {}, C := 20, D := true, E := "str"
237-
MsgBox(A &amp;&amp; B &amp;&amp; C &amp;&amp; D &amp;&amp; E) <em>; Shows "str" (E).</em></pre>
237+
MsgBox(A &amp;&amp; B &amp;&amp; C &amp;&amp; D &amp;&amp; E) <em>; "str" (E)と表示します。</em></pre>
238238
<p>In the following example, only the first two operands will be evaluated because B is false. The rest is ignored, i.e. C is not incremented either:</p>
239239
<pre>A := 1, B := "", C := 0, D := false, E := "str"
240-
MsgBox(A &amp;&amp; B &amp;&amp; ++C &amp;&amp; D &amp;&amp; E) <em>; Shows "" (B).</em></pre>
240+
MsgBox(A &amp;&amp; B &amp;&amp; ++C &amp;&amp; D &amp;&amp; E) <em>; "" (B)と表示します。</em></pre>
241241
<p><code>AND</code>または<code>&amp;&amp;</code>(あるいはその他の演算子)で始まる行は、自動的にその上の行に<a href="Scripts.htm#continuation">追加</a>される。</p></td>
242242
</tr>
243243
<tr id="or">

target/docs/lib/Gui.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ <h3>FocusedCtrl</h3>
548548

549549
<div class="methodShort" id="Hwnd">
550550
<h3>Hwnd</h3>
551-
<p>ウィンドウのウィンドウハンドル(HWND)を取得します。</p>
551+
<p>GUIウィンドウのウィンドウハンドル(HWND)を取得します。</p>
552552
<pre class="Syntax">CurrentHwnd := MyGui.<span class="func">Hwnd</span></pre>
553553
<p>GUIのHWNDは、<a href="PostMessage.htm">PostMessage</a><a href="SendMessage.htm">SendMessage</a><a href="DllCall.htm">DllCall</a>で、よく使われます。また、<a href="../misc/WinTitle.htm#ahk_id">WinTitleパラメータ</a>で直接使用することも可能です。</p></div>
554554

@@ -579,7 +579,7 @@ <h3>MenuBar</h3>
579579
<pre class="Syntax">MyGui.<span class="func">MenuBar</span> := NewBar</pre>
580580
<p><em>CurrentBar</em> and <em>NewBar</em> are a <a href="Menu.htm">MenuBar object</a> created by <a href="Menu.htm#Call">MenuBar()</a>. 事例:</p>
581581
<pre>FileMenu := Menu()
582-
FileMenu.Add("&amp;Open`tCtrl+O", (*) =&gt; FileSelect()) <em>; See remarks below about Ctrl+O.</em>
582+
FileMenu.Add("&amp;Open`tCtrl+O", (*) =&gt; FileSelect()) <em>; Ctrl+Oについては下記参照。</em>
583583
FileMenu.Add("E&amp;xit", (*) =&gt; ExitApp())
584584
HelpMenu := Menu()
585585
HelpMenu.Add("&amp;About", (*) =&gt; MsgBox("Not implemented"))

target/docs/lib/GuiControls.htm

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ <h2 id="Button">Button</h2>
8383
<p>事例:</p>
8484
<pre>MyBtn := MyGui.Add("Button", "Default w80", "OK")
8585
MyBtn.OnEvent("Click", MyBtn_Click) <em>; クリックされたときにMyBtn_Clickをコールします。</em></pre>
86-
<p>あるいは:</p>
86+
<p>Or:</p>
8787
<pre>MyBtn := MyGui.AddButton("Default w80", "OK")
8888
MyBtn.OnEvent("Click", MyBtn_Click) <em>; クリックされたときにMyBtn_Clickをコールします。</em>
8989
</pre>
@@ -102,7 +102,7 @@ <h2 id="Button">Button</h2>
102102
<p>A small box that can be checked or unchecked to represent On/Off, Yes/No, etc.</p>
103103
<p>事例:</p>
104104
<pre>MyGui.Add("CheckBox", "vShipToBillingAddress", "Ship to billing address?")</pre>
105-
<p>あるいは:</p>
105+
<p>Or:</p>
106106
<pre>MyGui.AddCheckBox("vShipToBillingAddress", "Ship to billing address?")</pre>
107107
<p>アピアランス(外観):</p>
108108
<img src="../static/ctrl_check.png" alt="CheckBox" />
@@ -117,7 +117,7 @@ <h2 id="ComboBox">ComboBox</h2>
117117
<p>Same as DropDownList but also permits free-form text to be entered as an alternative to picking an item from the list. In this case, the last parameter of <a href="Gui.htm#Add">Gui.Add</a> is an <a href="Array.htm">Array</a> like <code>["Choice1", "Choice2", "Choice3"]</code>.</p>
118118
<p>事例:</p>
119119
<pre>MyGui.Add("ComboBox", "vColorChoice", ["Red", "Green", "Blue", "Black", "White"])</pre>
120-
<p>あるいは:</p>
120+
<p>Or:</p>
121121
<pre>MyGui.AddComboBox("vColorChoice", ["Red", "Green", "Blue", "Black", "White"])</pre>
122122
<p>アピアランス(外観):</p>
123123
<img src="../static/ctrl_combo.png" alt="ComboBox" />
@@ -195,7 +195,7 @@ <h2 id="DateTime">DateTime</h2>
195195
<p>A box that looks like a single-line edit control but instead accepts a date and/or time. A drop-down calendar is also provided.</p>
196196
<p>事例:</p>
197197
<pre>MyGui.Add("DateTime", "vMyDateTime", "LongDate")</pre>
198-
<p>あるいは:</p>
198+
<p>Or:</p>
199199
<pre>MyGui.AddDateTime("vMyDateTime", "LongDate")</pre>
200200
<p>アピアランス(外観):</p>
201201
<img src="../static/ctrl_datetime.png" alt="DateTime" />
@@ -239,7 +239,7 @@ <h3 id="DateTime_Options">DateTime Options</h3>
239239
<p>A list of choices that is displayed in response to pressing a small button. In this case, the last parameter of <a href="Gui.htm#Add">Gui.Add</a> is an <a href="Array.htm">Array</a> like <code>["Choice1", "Choice2", "Choice3"]</code>.</p>
240240
<p>事例:</p>
241241
<pre>MyGui.Add("DropDownList", "vColorChoice", ["Black", "White", "Red", "Green", "Blue"])</pre>
242-
<p>あるいは:</p>
242+
<p>Or:</p>
243243
<pre>MyGui.AddDropDownList("vColorChoice", ["Black", "White", "Red", "Green", "Blue"])</pre>
244244
<p>アピアランス(外観):</p>
245245
<img src="../static/ctrl_ddl.png" alt="DDL" />
@@ -260,7 +260,7 @@ <h2 id="Edit">Edit</h2>
260260
<p>ユーザーが自由にテキストを入力できる領域。</p>
261261
<p>事例:</p>
262262
<pre>MyGui.Add("Edit", "r9 vMyEdit w135", "Text to appear inside the edit control (omit this parameter to start off empty).")</pre>
263-
<p>あるいは:</p>
263+
<p>Or:</p>
264264
<pre>MyGui.AddEdit("r9 vMyEdit w135", "Text to appear inside the edit control (omit this parameter to start off empty).")</pre>
265265
<p>アピアランス(外観):</p>
266266
<img src="../static/ctrl_edit.png" alt="Edit" />
@@ -293,7 +293,7 @@ <h2 id="GroupBox">GroupBox</h2>
293293
<p>A rectangular border/frame, often used around other controls to indicate they are related. In this case, the last parameter is the title of the box, which if present is displayed at its upper-left edge.</p>
294294
<p>事例:</p>
295295
<pre>MyGui.Add("GroupBox", "w200 h100", "Geographic Criteria")</pre>
296-
<p>あるいは:</p>
296+
<p>Or:</p>
297297
<pre>MyGui.AddGroupBox("w200 h100", "Geographic Criteria")</pre>
298298
<p>アピアランス(外観):</p>
299299
<img src="../static/ctrl_group.png" alt="GroupBox" />
@@ -304,7 +304,7 @@ <h2 id="Hotkey">Hotkey</h2>
304304
<p>A box that looks like a single-line edit control but instead accepts a keyboard combination pressed by the user. For example, if the user presses <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>C</kbd> on an English keyboard layout, the box would display "Ctrl + Alt + C".</p>
305305
<p>事例:</p>
306306
<pre>MyGui.Add("Hotkey", "vChosenHotkey")</pre>
307-
<p>あるいは:</p>
307+
<p>Or:</p>
308308
<pre>MyGui.AddHotkey("vChosenHotkey")</pre>
309309
<p>アピアランス(外観):</p>
310310
<img src="../static/ctrl_hotkey.png" alt="Hotkey" />
@@ -332,7 +332,7 @@ <h2 id="Link">Link</h2>
332332
<p>事例:</p>
333333
<pre>MyGui.Add("Link",, 'This is a &lt;a href="https://www.autohotkey.com"&gt;link&lt;/a&gt;')
334334
MyGui.Add("Link",, 'Links may be used anywhere in the text like &lt;a id="A"&gt;this&lt;/a&gt; or &lt;a id="B"&gt;that&lt;/a&gt;')</pre>
335-
<p>あるいは:</p>
335+
<p>Or:</p>
336336
<pre>MyGui.AddLink(, 'This is a &lt;a href="https://www.autohotkey.com"&gt;link&lt;/a&gt;')
337337
MyGui.AddLink(, 'Links may be used anywhere in the text like &lt;a id="A"&gt;this&lt;/a&gt; or &lt;a id="B"&gt;that&lt;/a&gt;')</pre>
338338
<p>アピアランス(外観):</p>
@@ -361,7 +361,7 @@ <h2 id="ListBox">ListBox</h2>
361361
<p>A relatively tall box containing a list of choices that can be selected. In this case, the last parameter of <a href="Gui.htm#Add">Gui.Add</a> is an <a href="Array.htm">Array</a> like <code>["Choice1", "Choice2", "Choice3"]</code>.</p>
362362
<p>事例:</p>
363363
<pre>MyGui.Add("ListBox", "r5 vColorChoice", ["Red", "Green", "Blue", "Black", "White"])</pre>
364-
<p>あるいは:</p>
364+
<p>Or:</p>
365365
<pre>MyGui.AddListBox("r5 vColorChoice", ["Red", "Green", "Blue", "Black", "White"])</pre>
366366
<p>アピアランス(外観):</p>
367367
<img src="../static/ctrl_list.png" alt="ListBox" />
@@ -388,7 +388,7 @@ <h2 id="ListView">ListView</h2>
388388
<p>リストビューは、オペレーティングシステムが提供する最も精巧なコントロールの1つです。最も分かりやすい形としては、行と列の表形式で表示され、最も一般的な例としては、エクスプローラーのファイルやフォルダのリスト(詳細表示)があります。</p>
389389
<p>事例:</p>
390390
<pre>MyGui.Add("ListView", "r20 w700", ["Name", "In Folder", "Size (KB)", "Type"])</pre>
391-
<p>あるいは:</p>
391+
<p>Or:</p>
392392
<pre>MyGui.AddListView("r20 w700", ["Name", "In Folder", "Size (KB)", "Type"])</pre>
393393
<p>アピアランス(外観):</p>
394394
<img src="../static/ctrl_listview.png" alt="ListView" />
@@ -398,7 +398,7 @@ <h2 id="MonthCal">MonthCal</h2>
398398
<p>A tall and wide control that displays all the days of the month in calendar format. The user may select a single date or a range of dates.</p>
399399
<p>事例:</p>
400400
<pre>MyGui.Add("MonthCal", "vMyCalendar")</pre>
401-
<p>あるいは:</p>
401+
<p>Or:</p>
402402
<pre>MyGui.AddMonthCal("vMyCalendar")</pre>
403403
<p>アピアランス(外観):</p>
404404
<img src="../static/ctrl_monthcal.png" alt="MonthCal" />
@@ -423,7 +423,7 @@ <h3 id="MonthCal_Options">MonthCal Options</h3>
423423
<p>An area containing an image (see last two paragraphs for supported file types). The last parameter is the filename of the image, which is assumed to be in <a href="../Variables.htm#WorkingDir">A_WorkingDir</a> if an absolute path isn't specified.</p>
424424
<p>事例:</p>
425425
<pre>MyGui.Add("Picture", "w300 h-1", "C:\My Pictures\Company Logo.gif")</pre>
426-
<p>あるいは:</p>
426+
<p>Or:</p>
427427
<pre>MyGui.AddPicture("w300 h-1", "C:\My Pictures\Company Logo.gif")</pre>
428428
<p>To retain the image's actual width and/or height, omit the W and/or H options. Otherwise, the image is scaled to the specified width and/or height (this width and height also determines which icon to load from a multi-icon .ICO file). 画像のアスペクト比を保ったまま縮小・拡大する場合は、一方の寸法に-1、他方の寸法に正の数を指定します。例えば、<code>"w200 h-1"</code>を指定すると、画像の幅は200ピクセルになり、高さは自動的に設定されました。If the picture cannot be loaded or displayed (e.g. file not found), an error is thrown and the control is not added.</p>
429429
<p>Picture controls support the <a href="GuiOnEvent.htm#Click">Click</a> and <a href="GuiOnEvent.htm#DoubleClick">DoubleClick</a> events, with the same <a href="#SS_NOTIFY">caveat</a> as Text controls.</p>
@@ -443,7 +443,7 @@ <h2 id="Progress">Progress</h2>
443443
<p>A dual-color bar typically used to indicate how much progress has been made toward the completion of an operation.</p>
444444
<p>事例:</p>
445445
<pre>MyGui.Add("Progress", "w200 h20 cBlue vMyProgress", 75)</pre>
446-
<p>あるいは:</p>
446+
<p>Or:</p>
447447
<pre>MyGui.AddProgress("w200 h20 cBlue vMyProgress", 75)</pre>
448448
<p>アピアランス(外観):</p>
449449
<img src="../static/ctrl_progress.png" alt="Progress" />
@@ -464,7 +464,7 @@ <h2 id="Radio">Radio</h2>
464464
<p>A radio button is a small empty circle that can be checked (on) or unchecked (off).</p>
465465
<p>事例:</p>
466466
<pre>MyGui.Add("Radio", "vMyRadioGroup", "Wait for all items to be in stock before shipping.")</pre>
467-
<p>あるいは:</p>
467+
<p>Or:</p>
468468
<pre>MyGui.AddRadio("vMyRadioGroup", "Wait for all items to be in stock before shipping.")</pre>
469469
<p>アピアランス(外観):</p>
470470
<img src="../static/ctrl_radio.png" alt="Radio" />
@@ -480,7 +480,7 @@ <h2 id="Slider">Slider</h2>
480480
<p>A sliding bar that the user can move along a vertical or horizontal track. The standard volume control in the taskbar's tray is an example of a slider.</p>
481481
<p>事例:</p>
482482
<pre>MyGui.Add("Slider", "vMySlider", 50)</pre>
483-
<p>あるいは:</p>
483+
<p>Or:</p>
484484
<pre>MyGui.AddSlider("vMySlider", 50)</pre>
485485
<p>アピアランス(外観):</p>
486486
<img src="../static/ctrl_slider.png" alt="Slider" />
@@ -535,7 +535,7 @@ <h2 id="StatusBar">StatusBar</h2>
535535
<p>事例:</p>
536536
<pre>SB := MyGui.Add("StatusBar",, "Bar's starting text (omit to start off empty).")
537537
SB.SetText("There are " . RowCount . " rows selected.")</pre>
538-
<p>あるいは:</p>
538+
<p>Or:</p>
539539
<pre>SB := MyGui.AddStatusBar(, "Bar's starting text (omit to start off empty).")
540540
SB.SetText("There are " . RowCount . " rows selected.")</pre>
541541
<p>アピアランス(外観):</p>
@@ -608,7 +608,7 @@ <h3 id="StatusBar_Usage">StatusBar Usage</h3>
608608
</ul>
609609
<p>事例:</p>
610610
<pre>MyGui.Add("Tab3",, ["General", "View", "Settings"])</pre>
611-
<p>あるいは:</p>
611+
<p>Or:</p>
612612
<pre>MyGui.AddTab3(, ["General", "View", "Settings"])</pre>
613613
<p>アピアランス(外観):</p>
614614
<img src="../static/ctrl_tab.png" alt="Tab" />
@@ -696,7 +696,7 @@ <h2 id="Text">Text</h2>
696696
<p>ユーザーが編集できない、境界のないテキストを含む領域。他のコントロールのラベルに使用されることが多い。</p>
697697
<p>事例:</p>
698698
<pre>MyGui.Add("Text",, "Please enter your name:")</pre>
699-
<p>あるいは:</p>
699+
<p>Or:</p>
700700
<pre>MyGui.AddText(, "Please enter your name:")</pre>
701701
<p>アピアランス(外観):</p>
702702
<img src="../static/ctrl_text.png" alt="Text" />
@@ -728,7 +728,7 @@ <h2 id="TreeView">TreeView</h2>
728728
<p>A TreeView displays a hierarchy of items by indenting child items beneath their parents. 最も一般的な例は、エクスプローラーのドライブとフォルダーのツリーである。</p>
729729
<p>事例:</p>
730730
<pre>MyGui.Add("TreeView", "r10")</pre>
731-
<p>あるいは:</p>
731+
<p>Or:</p>
732732
<pre>MyGui.AddTreeView("r10")</pre>
733733
<p>アピアランス(外観):</p>
734734
<img src="../static/ctrl_treeview.png" alt="TreeView" />
@@ -739,7 +739,7 @@ <h2 id="UpDown">UpDown</h2>
739739
<p>事例:</p>
740740
<pre>MyGui.Add("Edit")
741741
MyGui.Add("UpDown", "vMyUpDown Range1-10", 5)</pre>
742-
<p>あるいは:</p>
742+
<p>Or:</p>
743743
<pre>MyGui.AddEdit()
744744
MyGui.AddUpDown("vMyUpDown Range1-10", 5)</pre>
745745
<p>アピアランス(外観):</p>

target/docs/lib/ListView.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h2 id="Intro">導入と簡単な例</h2>
2929
<img src="../static/ctrl_listview.png" alt="ListView" />
3030
<p>凝った作りになっていますが、ListViewの基本的な機能は簡単に使うことができます。ListViewを作成するための構文です:</p>
3131
<pre class="Syntax" id="GuiAdd">LV := GuiObj.<span class="func">Add</span>("ListView", Options, ["ColumnTitle1", "ColumnTitle2", "..."])</pre>
32-
<p>あるいは:</p>
32+
<p>Or:</p>
3333
<pre class="Syntax">LV := GuiObj.<span class="func">AddListView</span>(Options, ["ColumnTitle1", "ColumnTitle2", "..."])</pre>
3434
<p>ここでは、ユーザーの「My Documents」フォルダ内のファイルのリストを含むListViewを作成し、表示するスクリプトを紹介します:</p>
3535
<pre><em>; ウィンドウを作成します:</em>

target/docs/lib/TreeView.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h2 id="Intro">導入と簡単な例</h2>
2727
<img src="../static/ctrl_treeview.png" alt="TreeView" />
2828
<p>TreeViewを作成する構文は以下の通り:</p>
2929
<pre class="Syntax" id="GuiAdd">TV := GuiObj.<span class="func">Add</span>("TreeView", Options)</pre>
30-
<p>あるいは:</p>
30+
<p>Or:</p>
3131
<pre class="Syntax">TV := GuiObj.<span class="func">AddTreeView</span>(Options)</pre>
3232
<p>ここでは、アイテムの単純な階層を作成して表示するスクリプトを紹介する:</p>
3333
<pre>MyGui := Gui()

target/docs/v2-changes.htm

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h2 id="toc">目次</h2>
5050
<li><a href="#library">ライブラリ</a>
5151
<ul>
5252
<li><a href="#lib-removed">Removed Commands, Functions &amp; Directives</a></li>
53-
<li><a href="#lib-renamed">Renamed Commands, Functions &amp; Directives</a></li>
53+
<li><a href="#lib-renamed">名前が変わったコマンド、関数、指令</a></li>
5454
<li><a href="#lib-modified">Modified Commands, Functions &amp; Directives</a></li>
5555
<li><a href="#new-functions">新機能のご紹介</a></li>
5656
<li><a href="#new-directives">新しいディレクティブ</a></li>
@@ -447,15 +447,15 @@ <h2 id="library">ライブラリ</h2>
447447
<table class="info">
448448
<tr>
449449
<th style="width:13em">削除</th>
450-
<th>Note</th>
450+
<th>摘要</th>
451451
</tr>
452452
<tr>
453453
<td>Asc()</td>
454-
<td>Use <a href="lib/Ord.htm">Ord</a> instead.</td>
454+
<td><a href="lib/Ord.htm">Ord</a>で代替</td>
455455
</tr>
456456
<tr>
457457
<td>AutoTrim</td>
458-
<td>Use <a href="lib/Trim.htm">Trim</a> instead.</td>
458+
<td><a href="lib/Trim.htm">Trim</a>で代替</td>
459459
</tr>
460460
<tr>
461461
<td>ComObjMissing()</td>
@@ -543,7 +543,7 @@ <h2 id="library">ライブラリ</h2>
543543
</tr>
544544
<tr>
545545
<td>IfMsgBox</td>
546-
<td><a href="lib/MsgBox.htm">MsgBox</a> now returns the button name.</td>
546+
<td><a href="lib/MsgBox.htm">MsgBox</a>がボタン名を返すようになりました。</td>
547547
</tr>
548548
<tr>
549549
<td>IfNotEqual</td>
@@ -651,7 +651,7 @@ <h2 id="library">ライブラリ</h2>
651651
</tr>
652652
<tr>
653653
<td>StringGetPos</td>
654-
<td>Use <a href="lib/InStr.htm">InStr</a> instead.</td>
654+
<td><a href="lib/InStr.htm">InStr</a>で代替</td>
655655
</tr>
656656
<tr>
657657
<td>StringLeft<br>StringLen<br>StringMid<br>StringRight<br>StringTrimLeft<br>StringTrimRight</td>
@@ -663,7 +663,7 @@ <h2 id="library">ライブラリ</h2>
663663
</tr>
664664
<tr>
665665
<td>StringSplit</td>
666-
<td>Use <a href="lib/StrSplit.htm">StrSplit</a> instead.</td>
666+
<td><a href="lib/StrSplit.htm">StrSplit</a>で代替</td>
667667
</tr>
668668
<tr>
669669
<td>Transform</td>
@@ -699,7 +699,7 @@ <h2 id="library">ライブラリ</h2>
699699
</tr>
700700
<tr>
701701
<td>#HotkeyInterval</td>
702-
<td>Use <a href="Variables.htm#HotkeyInterval">A_HotkeyInterval</a> instead.</td>
702+
<td><a href="Variables.htm#HotkeyInterval">A_HotkeyInterval</a>で代替</td>
703703
</tr>
704704
<tr>
705705
<td>#HotkeyModifierTimeout</td>
@@ -743,19 +743,19 @@ <h2 id="library">ライブラリ</h2>
743743
</tr>
744744
</table>
745745

746-
<h3 id="lib-renamed">Renamed Commands, Functions &amp; Directives</h3>
746+
<h3 id="lib-renamed">名前が変わったコマンド、関数、指令</h3>
747747
<table class="info">
748748
<tr>
749-
<th style="width:13em">v1 Name</th>
750-
<th>v2 Name</th>
749+
<th style="width:13em">v1の名前</th>
750+
<th>v2の名前</th>
751751
</tr>
752752
<tr>
753753
<td>ComObjCreate()</td>
754-
<td><a href="lib/ComObject.htm">ComObject</a>, which is a class now</td>
754+
<td><a href="lib/ComObject.htm">ComObject</a> クラスになりました。</td>
755755
</tr>
756756
<tr>
757757
<td>ComObjParameter()</td>
758-
<td><a href="lib/ComValue.htm">ComValue</a>, which is a class now</td>
758+
<td><a href="lib/ComValue.htm">ComValue</a> クラスになりました。</td>
759759
</tr>
760760
<tr>
761761
<td>DriveSpaceFree</td>
@@ -803,11 +803,11 @@ <h3 id="lib-renamed">Renamed Commands, Functions &amp; Directives</h3>
803803
</tr>
804804
<tr>
805805
<td>StringLower</td>
806-
<td><a href="lib/StrLower.htm">StrLower</a> and <a href="lib/StrLower.htm">StrTitle</a></td>
806+
<td><a href="lib/StrLower.htm">StrLower</a><a href="lib/StrLower.htm">StrTitle</a></td>
807807
</tr>
808808
<tr>
809809
<td>StringUpper</td>
810-
<td><a href="lib/StrLower.htm">StrUpper</a> and <a href="lib/StrLower.htm">StrTitle</a></td>
810+
<td><a href="lib/StrLower.htm">StrUpper</a><a href="lib/StrLower.htm">StrTitle</a></td>
811811
</tr>
812812
<tr>
813813
<td>UrlDownloadToFile</td>
@@ -818,8 +818,8 @@ <h3 id="lib-renamed">Renamed Commands, Functions &amp; Directives</h3>
818818
<td><a href="lib/MenuSelect.htm">MenuSelect</a></td>
819819
</tr>
820820
<tr>
821-
<td>LV, TV and SB functions</td>
822-
<td>methods of <a href="lib/GuiControl.htm">GuiControl</a></td>
821+
<td>LV TV、SB関数</td>
822+
<td><a href="lib/GuiControl.htm">GuiControl</a>のメソッドになりました。</td>
823823
</tr>
824824
<tr>
825825
<td>File.__Handle</td>

0 commit comments

Comments
 (0)