<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://exword.benryves.com/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Benryves</id>
	<title>EX-word - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://exword.benryves.com/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Benryves"/>
	<link rel="alternate" type="text/html" href="https://exword.benryves.com/wiki/Special:Contributions/Benryves"/>
	<updated>2026-09-15T21:36:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Structure:Handwriting_input&amp;diff=338</id>
		<title>Structure:Handwriting input</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Structure:Handwriting_input&amp;diff=338"/>
		<updated>2024-05-25T01:53:34Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Created page with &amp;quot;Handwriting input for the current text input field is stored in a structure that specifies the handwriting script and the list of potential matches for each entered character.  {|class=&amp;quot;wikitable&amp;quot; !Offset!!Type!!Name!!Description |- |0||int||script||The handwriting script being recognised. |- |4||handwriting_matches[28]||matches||Possible matches for each entered character. |- |676||byte[28]||match_index||The index in the m...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Handwriting input for the current text input field is stored in a structure that specifies the [[Handwriting scripts|handwriting script]] and the list of potential matches for each entered character.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Offset!!Type!!Name!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||int||script||The [[Handwriting scripts|handwriting script]] being recognised.&lt;br /&gt;
|-&lt;br /&gt;
|4||handwriting_matches[28]||matches||Possible matches for each entered character.&lt;br /&gt;
|-&lt;br /&gt;
|676||byte[28]||match_index||The index in the matches table for the character in the string at the specified index, or -1 if not present.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
As handwriting is entered items lists of potentially-matching characters are appended to the handwriting_matches array. Each entry lists the number of potential matches then character values for each potential match:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Offset!!Type!!Name!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||short||count||The number of potential matches.&lt;br /&gt;
|-&lt;br /&gt;
|2||short[11]||characters||Possible matches for each written or typed character.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A maximum of 10 potential characters can be shown on the sub-LCD so the count will not exceed 10.&lt;br /&gt;
&lt;br /&gt;
Matches are appended to the array in the order in which they were entered, so the match_index list can be used to determine which set of matches correspond to which character in the text input field.&lt;br /&gt;
&lt;br /&gt;
For example, if you typed &amp;quot;ab&amp;quot; then pressed the left cursor key twice and typed &amp;quot;c&amp;quot; the display would show &amp;quot;cab&amp;quot;. The list of matches would be for &amp;quot;a&amp;quot;, &amp;quot;b&amp;quot; and &amp;quot;c&amp;quot; as that was the order they were typed. The list of indices  would contain 2, 0, 1 so you could determine that the first character (&amp;quot;c&amp;quot;) is stored in matches[2], the second character (&amp;quot;a&amp;quot;) is stored in matches[0] and the third character (&amp;quot;b&amp;quot;) is stored in matches[1].&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Structure:Text_input&amp;diff=337</id>
		<title>Structure:Text input</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Structure:Text_input&amp;diff=337"/>
		<updated>2024-05-25T01:35:47Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Offset!!Type!!Name!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||byte||type||The [[Text input types|text input type]] being used.&lt;br /&gt;
|-&lt;br /&gt;
|1||byte||size||The text size for the field (usually 24).&lt;br /&gt;
|-&lt;br /&gt;
|2||byte||style||0 is normal, 1 is underlined, 2 is inverted.&lt;br /&gt;
|-&lt;br /&gt;
|4||short||x||The x coordinate of the field on the screen in pixels.&lt;br /&gt;
|-&lt;br /&gt;
|6||short||y||The y coordinate of the field on the screen in pixels.&lt;br /&gt;
|-&lt;br /&gt;
|8||short||length||The maximum length of the field in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|10||byte||symbols||If set to 5, the symbol picker shows Chinese tone marks.&lt;br /&gt;
|-&lt;br /&gt;
|12||int||minimum||If the type is numeric, sets the minimum value.&lt;br /&gt;
|-&lt;br /&gt;
|16||int||minimum||If the type is numeric, sets the maximum value.&lt;br /&gt;
|-&lt;br /&gt;
|20||int||number||If the type is numeric, stores the numeric value.&lt;br /&gt;
|-&lt;br /&gt;
|24||byte||cursor||The cursor position within the field in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|25||byte||brackets||If set to zero hides the brackets drawn around the field.&lt;br /&gt;
|-&lt;br /&gt;
|26||byte[80]||text||Stores the text input value for non-numeric fields.&lt;br /&gt;
|-&lt;br /&gt;
|106||byte[5]||partial||Stores partially-entered characters (e.g. &amp;quot;ts&amp;quot; when typing &amp;quot;tsu&amp;quot; for つ).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Structure:Text_input&amp;diff=336</id>
		<title>Structure:Text input</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Structure:Text_input&amp;diff=336"/>
		<updated>2024-05-24T03:47:25Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Created page with &amp;quot;{|class=&amp;quot;wikitable&amp;quot; !Offset!!Type!!Name!!Description |- |0||byte||type||The text input type being used. |- |1||byte||size||The text size for the field (usually 24). |- |2||byte||style||0 is normal, 1 is underlined, 2 is inverted. |- |4||short||x||The x coordinate of the field on the screen in pixels. |- |6||short||y||The y coordinate of the field on the screen in pixels. |- |8||short||length||The maximum length of the field in bytes. |- |10||byte||sy...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Offset!!Type!!Name!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||byte||type||The [[Text input types|text input type]] being used.&lt;br /&gt;
|-&lt;br /&gt;
|1||byte||size||The text size for the field (usually 24).&lt;br /&gt;
|-&lt;br /&gt;
|2||byte||style||0 is normal, 1 is underlined, 2 is inverted.&lt;br /&gt;
|-&lt;br /&gt;
|4||short||x||The x coordinate of the field on the screen in pixels.&lt;br /&gt;
|-&lt;br /&gt;
|6||short||y||The y coordinate of the field on the screen in pixels.&lt;br /&gt;
|-&lt;br /&gt;
|8||short||length||The maximum length of the field in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|10||byte||symbols||If set to 5, the symbol picker shows Chinese tone marks.&lt;br /&gt;
|-&lt;br /&gt;
|12||int||minimum||If the type is numeric, sets the minimum value.&lt;br /&gt;
|-&lt;br /&gt;
|16||int||minimum||If the type is numeric, sets the maximum value.&lt;br /&gt;
|-&lt;br /&gt;
|20||int||number||If the type is numeric, stores the numeric value.&lt;br /&gt;
|-&lt;br /&gt;
|24||byte||cursor||The cursor position within the field in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|25||byte||brackets||If set to zero hides the brackets drawn around the field.&lt;br /&gt;
|-&lt;br /&gt;
|26||byte[80]||text||Stores the text input value for non-numeric fields.&lt;br /&gt;
|-&lt;br /&gt;
|106||byte[5]||partial||Stores partially-entered characters (e.g. &amp;quot;ts&amp;quot; when typing &amp;quot;tsu&amp;quot; for つ).&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Main_Page&amp;diff=335</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Main_Page&amp;diff=335"/>
		<updated>2024-05-22T14:03:43Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is an attempt to document add-on development for CASIO EX-word electronic dictionaries (電子辞書). It's based on reverse-engineering an EX-word DATAPLUS XD-SW6500. As this information is based on reverse-engineering and not on any formal documentation it may well be completely wrong, so proceed with caution!&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [[Event loop]]&lt;br /&gt;
* [[Syscalls]]&lt;br /&gt;
* [[Text input types]]&lt;br /&gt;
* [[Handwriting scripts]]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [[System icons]]&lt;br /&gt;
* [[System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Main_Page&amp;diff=334</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Main_Page&amp;diff=334"/>
		<updated>2024-05-22T14:00:45Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is an attempt to document add-on development for CASIO EX-word electronic dictionaries (電子辞書). It's based on reverse-engineering an EX-word DATAPLUS XD-SW6500. As this information is based on reverse-engineering and not on any formal documentation it may well be completely wrong, so proceed with caution!&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [[Syscalls]]&lt;br /&gt;
* [[Text input types]]&lt;br /&gt;
* [[Handwriting scripts]]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [[System icons]]&lt;br /&gt;
* [[System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Event_loop&amp;diff=333</id>
		<title>Event loop</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Event_loop&amp;diff=333"/>
		<updated>2024-05-17T21:51:31Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added stub event loop page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add-ons are executed by the dictionary in response to events. A pointer to event data is supplied and the add-on should act according to the type of event and the supplied data, then return a status code to the operating system. Some event types also require the event data pointed to by the supplied pointer to be updated. Unless you returned an error code your add-on will be executed again when the next event occurs.&lt;br /&gt;
&lt;br /&gt;
The pointer to event data can be interpreted as an array of 32-bit integers, in which case param[0] will contain the event type number, param[1] will contain the first event parameter, param[2] will contain the second etc.&lt;br /&gt;
&lt;br /&gt;
This is fairly different to how applications are typically written on other systems, where you have a main entry point, handle the application's loop yourself, and then only return when you wish to exit the application. As a result some development tools may need a bit of adjustment to ensure they are compatible with the dictionary's event loop. For example, if writing a program in C you must ensure that crt0 only performs its variable initialisation if event type 1 (low-level initialisation) is specified otherwise your program's global variables will be reset to their default values every time a new event is received.&lt;br /&gt;
&lt;br /&gt;
The first three events to be run are 1, 2 and 3. After that it is generally event 4 that will occur in response to input events, though other event types may be triggered if required (such as event 11 after closing the settings dialog).&lt;br /&gt;
&lt;br /&gt;
== Event 1: Low-level initialisation ==&lt;br /&gt;
&lt;br /&gt;
Add-ons use this event type to set global values to their default values.&lt;br /&gt;
&lt;br /&gt;
== Event 2: High-level initialisation ==&lt;br /&gt;
&lt;br /&gt;
Add-ons use this event to perform the next stage of initialisation, such as registering the path of their guide00.htm file to be displayed when the ガイド button is pressed.&lt;br /&gt;
&lt;br /&gt;
== Event 3: First-time run ==&lt;br /&gt;
&lt;br /&gt;
This is the first event where the add-on should fully display itself on the dictionary's screen. Before returning to the OS param[3] should be set to 0x803 and param[4] should be set to 0 if you want to wait for input events or 1 if you want to receive idle events twice a second in addition to input events.&lt;br /&gt;
&lt;br /&gt;
== Event 4: Repeated run ==&lt;br /&gt;
&lt;br /&gt;
This event is triggered either in response to an input event or in response to an idle event (twice per second) if previously requested by setting param[4] to 1.&lt;br /&gt;
&lt;br /&gt;
param[1] contains the source of the event, which may be a key number, indication that it was an idle event or indication of an event on the touch panel.&lt;br /&gt;
&lt;br /&gt;
param[2] contains flags that further describe the event source, such as a bit set if the shift key was pressed or another set if the event happened in response to the dictionary switching out of standby mode.&lt;br /&gt;
&lt;br /&gt;
Before returning to the OS param[3] should be set to 0x803 and param[4] should be set to 0 if you want to wait for input events or 1 if you want to receive idle events twice a second in addition to input events.&lt;br /&gt;
&lt;br /&gt;
== Event 11: Return from the settings dialog ==&lt;br /&gt;
&lt;br /&gt;
After the settings dialog has been closed event 11 will happen. This presumably allows your add-on to respond to any change in system settings, should they have an effect on how your add-on operates.&lt;br /&gt;
&lt;br /&gt;
Before returning to the OS param[3] should be set to 0x803 and param[4] should be set to 0 if you want to wait for input events or 1 if you want to receive idle events twice a second in addition to input events.&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=332</id>
		<title>Text input types</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=332"/>
		<updated>2024-05-15T09:27:40Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Type!!Description!!Symbols&lt;br /&gt;
!Extra Symbols&lt;br /&gt;
|-&lt;br /&gt;
|0||Alphabet||? ~&lt;br /&gt;
|ñ&lt;br /&gt;
|-&lt;br /&gt;
|1||Alphabet||&amp;amp;&lt;br /&gt;
|ñ&lt;br /&gt;
|-&lt;br /&gt;
|2||Alphabet||&lt;br /&gt;
|ñ&lt;br /&gt;
|-&lt;br /&gt;
|3||Numeric (Value)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4||Hiragana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5||Hiragana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6||Katakana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7||Katakana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8||Hangul||Hangul IME&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9||Alphabet||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10||Numeric (Text)||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11||Alphabet||&lt;br /&gt;
|&amp;amp;&lt;br /&gt;
|-&lt;br /&gt;
|12||Alphabet||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|13||Numeric (Value)||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|14||Handwritten kanji||&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=331</id>
		<title>Text input types</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=331"/>
		<updated>2024-05-15T07:56:54Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Type!!Description!!Symbols&lt;br /&gt;
!Extra Symbols&lt;br /&gt;
|-&lt;br /&gt;
|0||Alphabet||? ~&lt;br /&gt;
|ñ&lt;br /&gt;
|-&lt;br /&gt;
|1||Alphabet||&amp;amp;&lt;br /&gt;
|ñ&lt;br /&gt;
|-&lt;br /&gt;
|2||Alphabet||&lt;br /&gt;
|ñ&lt;br /&gt;
|-&lt;br /&gt;
|3||Numeric (Value)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4||Hiragana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5||Hiragana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6||Katakana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7||Katakana||ー&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8||Hangul||Hangul IME&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9||Alphabet||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10||Numeric (Text)||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11||Alphabet||&lt;br /&gt;
|&amp;amp;&lt;br /&gt;
|-&lt;br /&gt;
|12||Alphabet||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|13||Numeric (Value)||&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|14||||&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=330</id>
		<title>Text input types</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=330"/>
		<updated>2024-05-15T07:13:06Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Type!!Description!!Symbols&lt;br /&gt;
|-&lt;br /&gt;
|0||Alphabet||? ~&lt;br /&gt;
|-&lt;br /&gt;
|1||Alphabet||&amp;amp;&lt;br /&gt;
|-&lt;br /&gt;
|2||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|3||Numeric (Value)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4||Hiragana||&lt;br /&gt;
|-&lt;br /&gt;
|5||Hiragana||&lt;br /&gt;
|-&lt;br /&gt;
|6||Katakana||&lt;br /&gt;
|-&lt;br /&gt;
|7||Katakana||&lt;br /&gt;
|-&lt;br /&gt;
|8||Hangul||&lt;br /&gt;
|-&lt;br /&gt;
|9||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|10||Numeric (Text)||&lt;br /&gt;
|-&lt;br /&gt;
|11||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|12||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|13||Numeric (Value)||&lt;br /&gt;
|-&lt;br /&gt;
|14||||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=329</id>
		<title>Text input types</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Text_input_types&amp;diff=329"/>
		<updated>2024-05-15T05:42:21Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Created page with &amp;quot;{|class=&amp;quot;wikitable&amp;quot; !Type!!Description!!Symbols |- |0||Alphabet||? ~ |- |1||Alphabet||&amp;amp; |- |2||Alphabet|| |- |3|| |- |4||Hiragana|| |- |5||Hiragana|| |- |6||Katakana|| |- |7||Katakana|| |- |8||Hangul|| |- |9||Alphabet|| |- |10||Numeric|| |- |11||Alphabet|| |- |12||Alphabet|| |- |13|||| |- |14|||| |- |}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Type!!Description!!Symbols&lt;br /&gt;
|-&lt;br /&gt;
|0||Alphabet||? ~&lt;br /&gt;
|-&lt;br /&gt;
|1||Alphabet||&amp;amp;&lt;br /&gt;
|-&lt;br /&gt;
|2||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|3||&lt;br /&gt;
|-&lt;br /&gt;
|4||Hiragana||&lt;br /&gt;
|-&lt;br /&gt;
|5||Hiragana||&lt;br /&gt;
|-&lt;br /&gt;
|6||Katakana||&lt;br /&gt;
|-&lt;br /&gt;
|7||Katakana||&lt;br /&gt;
|-&lt;br /&gt;
|8||Hangul||&lt;br /&gt;
|-&lt;br /&gt;
|9||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|10||Numeric||&lt;br /&gt;
|-&lt;br /&gt;
|11||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|12||Alphabet||&lt;br /&gt;
|-&lt;br /&gt;
|13||||&lt;br /&gt;
|-&lt;br /&gt;
|14||||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Handwriting_scripts&amp;diff=328</id>
		<title>Handwriting scripts</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Handwriting_scripts&amp;diff=328"/>
		<updated>2024-05-15T05:17:21Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Created page with &amp;quot;{|class=&amp;quot;wikitable&amp;quot; !Script!!Description!!Icons |- |0||Handwriting disabled|| |- |1||Tone mark|| |- |2||Hiragana||alt=あ |- |3||Katana||alt=ア |- |4||Kanji||alt=漢 |- |5||Kanji||alt=漢 |- |6||Kanji||alt=漢 |- |7||Hiragana and kanji||alt=あ File:Handwriting Icon 2.png|alt=漢...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Script!!Description!!Icons&lt;br /&gt;
|-&lt;br /&gt;
|0||Handwriting disabled||&lt;br /&gt;
|-&lt;br /&gt;
|1||Tone mark||&lt;br /&gt;
|-&lt;br /&gt;
|2||Hiragana||[[File:Handwriting Icon 0.png|alt=あ]]&lt;br /&gt;
|-&lt;br /&gt;
|3||Katana||[[File:Handwriting Icon 1.png|alt=ア]]&lt;br /&gt;
|-&lt;br /&gt;
|4||Kanji||[[File:Handwriting Icon 2.png|alt=漢]]&lt;br /&gt;
|-&lt;br /&gt;
|5||Kanji||[[File:Handwriting Icon 2.png|alt=漢]]&lt;br /&gt;
|-&lt;br /&gt;
|6||Kanji||[[File:Handwriting Icon 2.png|alt=漢]]&lt;br /&gt;
|-&lt;br /&gt;
|7||Hiragana and kanji||[[File:Handwriting Icon 0.png|alt=あ]] [[File:Handwriting Icon 2.png|alt=漢]]&lt;br /&gt;
|-&lt;br /&gt;
|8||Hiragana and kanji||[[File:Handwriting Icon 0.png|alt=あ]] [[File:Handwriting Icon 2.png|alt=漢]]&lt;br /&gt;
|-&lt;br /&gt;
|9||Hiragana, katakana and kanji||[[File:Handwriting Icon 0.png|alt=あ]] [[File:Handwriting Icon 1.png|alt=ア]] [[File:Handwriting Icon 2.png|alt=漢]]&lt;br /&gt;
|-&lt;br /&gt;
|10||Alphabet||[[File:Handwriting Icon 3.png|alt=a]]&lt;br /&gt;
|-&lt;br /&gt;
|11||Alphabet||[[File:Handwriting Icon 3.png|alt=a]]&lt;br /&gt;
|-&lt;br /&gt;
|12||Alphabet||[[File:Handwriting Icon 3.png|alt=a]]&lt;br /&gt;
|-&lt;br /&gt;
|13||Accented alphabet||[[File:Handwriting Icon 4.png|alt=á]]&lt;br /&gt;
|-&lt;br /&gt;
|14||Accented alphabet||[[File:Handwriting Icon 4.png|alt=á]]&lt;br /&gt;
|-&lt;br /&gt;
|15||Accented alphabet||[[File:Handwriting Icon 4.png|alt=á]]&lt;br /&gt;
|-&lt;br /&gt;
|16||Numeric||[[File:Handwriting Icon 5.png|alt=1]]&lt;br /&gt;
|-&lt;br /&gt;
|17||Numeric and decimal point||[[File:Handwriting Icon 5.png|alt=1]]&lt;br /&gt;
|-&lt;br /&gt;
|18||Pinyin||[[File:Handwriting Icon 6.png|alt=汉]]&lt;br /&gt;
|-&lt;br /&gt;
|19||Hangul||[[File:Handwriting Icon 7.png|alt=가]]&lt;br /&gt;
|-&lt;br /&gt;
|20||Pinyin||[[File:Handwriting Icon 6.png|alt=汉]]&lt;br /&gt;
|-&lt;br /&gt;
|21||Pinyin||[[File:Handwriting Icon 6.png|alt=汉]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Category:Handwriting_icons&amp;diff=327</id>
		<title>Category:Handwriting icons</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Category:Handwriting_icons&amp;diff=327"/>
		<updated>2024-05-15T05:08:59Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The handwriting icons are displayed in the status area at the top of the screen to indicate which scripts are currently accepted when writing on the sub LCD.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Icon!!Character!!Meaning&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 0.png|alt=あ]]||あ||Hiragana&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 1.png|alt=ア]]||ア||Katakana&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 2.png|alt=漢]]||漢||Kanji&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 3.png|alt=a]]||a||Alphabet&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 4.png|alt=á]]||á||Accented alphabet&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 5.png|alt=1]]||1||Numeric&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 6.png|alt=汉]]||汉||Pinyin&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Handwriting Icon 7.png|alt=가]]||가||Hangul&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Category:Handwriting_icons&amp;diff=326</id>
		<title>Category:Handwriting icons</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Category:Handwriting_icons&amp;diff=326"/>
		<updated>2024-05-15T05:03:30Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Created page with &amp;quot;The handwriting icons are displayed in the status area at the top of the screen to indicate which scripts are currently accepted when writing on the sub LCD.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The handwriting icons are displayed in the status area at the top of the screen to indicate which scripts are currently accepted when writing on the sub LCD.&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_7.png&amp;diff=325</id>
		<title>File:Handwriting Icon 7.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_7.png&amp;diff=325"/>
		<updated>2024-05-15T04:59:48Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Hangul handwriting icon (가)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_6.png&amp;diff=324</id>
		<title>File:Handwriting Icon 6.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_6.png&amp;diff=324"/>
		<updated>2024-05-15T04:59:41Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Pinyin handwriting icon (汉)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_5.png&amp;diff=323</id>
		<title>File:Handwriting Icon 5.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_5.png&amp;diff=323"/>
		<updated>2024-05-15T04:59:32Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Numeric handwriting icon (1)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_4.png&amp;diff=322</id>
		<title>File:Handwriting Icon 4.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_4.png&amp;diff=322"/>
		<updated>2024-05-15T04:59:07Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Accented alphabetic handwriting icon (á)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_3.png&amp;diff=321</id>
		<title>File:Handwriting Icon 3.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_3.png&amp;diff=321"/>
		<updated>2024-05-15T04:58:42Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Alphabetic handwriting icon (a)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_2.png&amp;diff=320</id>
		<title>File:Handwriting Icon 2.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_2.png&amp;diff=320"/>
		<updated>2024-05-15T04:58:28Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Kanji handwriting icon (漢)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_1.png&amp;diff=319</id>
		<title>File:Handwriting Icon 1.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_1.png&amp;diff=319"/>
		<updated>2024-05-15T04:58:04Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Katakana handwriting icon (ア)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_0.png&amp;diff=318</id>
		<title>File:Handwriting Icon 0.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_0.png&amp;diff=318"/>
		<updated>2024-05-15T04:57:46Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Hiragana handwriting icon (あ)&lt;br /&gt;
&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_7.png&amp;diff=317</id>
		<title>File:Handwriting Icon 7.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_7.png&amp;diff=317"/>
		<updated>2024-05-15T04:57:26Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Hangul handwriting icon (가)
Category:Handwriting icons&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Hangul handwriting icon (가)&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_6.png&amp;diff=316</id>
		<title>File:Handwriting Icon 6.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_6.png&amp;diff=316"/>
		<updated>2024-05-15T04:56:46Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Pinyin handwriting icon (汉)&lt;br /&gt;
[[Category:Handwriting icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_6.png&amp;diff=315</id>
		<title>File:Handwriting Icon 6.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_6.png&amp;diff=315"/>
		<updated>2024-05-15T04:56:01Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Pinyin handwriting icon (汉)
[Category:Handwriting icons]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Pinyin handwriting icon (汉)&lt;br /&gt;
[Category:Handwriting icons]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_5.png&amp;diff=314</id>
		<title>File:Handwriting Icon 5.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_5.png&amp;diff=314"/>
		<updated>2024-05-15T04:54:39Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Numeric handwriting icon (1)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Numeric handwriting icon (1)&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_4.png&amp;diff=313</id>
		<title>File:Handwriting Icon 4.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_4.png&amp;diff=313"/>
		<updated>2024-05-15T04:54:15Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Accented alphabetic handwriting icon (á)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Accented alphabetic handwriting icon (á)&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_3.png&amp;diff=312</id>
		<title>File:Handwriting Icon 3.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_3.png&amp;diff=312"/>
		<updated>2024-05-15T04:53:49Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Alphabetic handwriting icon (a)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Alphabetic handwriting icon (a)&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_2.png&amp;diff=311</id>
		<title>File:Handwriting Icon 2.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_2.png&amp;diff=311"/>
		<updated>2024-05-15T04:53:16Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Kanji handwriting icon (漢)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Kanji handwriting icon (漢)&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_1.png&amp;diff=310</id>
		<title>File:Handwriting Icon 1.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_1.png&amp;diff=310"/>
		<updated>2024-05-15T04:52:48Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Katakana handwriting icon (ア)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Katakana handwriting icon (ア)&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_0.png&amp;diff=309</id>
		<title>File:Handwriting Icon 0.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Handwriting_Icon_0.png&amp;diff=309"/>
		<updated>2024-05-15T04:52:30Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Hiragana handwriting icon (あ)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Hiragana handwriting icon (あ)&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Main_Page&amp;diff=308</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Main_Page&amp;diff=308"/>
		<updated>2024-05-14T13:16:00Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is an attempt to document add-on development for CASIO EX-word electronic dictionaries (電子辞書). It's based on reverse-engineering an EX-word DATAPLUS XD-SW6500. As this information is based on reverse-engineering and not on any formal documentation it may well be completely wrong, so proceed with caution!&lt;br /&gt;
&lt;br /&gt;
== Information ==&lt;br /&gt;
&lt;br /&gt;
* [[Syscalls]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=307</id>
		<title>Syscalls</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=307"/>
		<updated>2024-05-14T05:21:54Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added sub LCD system calls to the list.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Syscall!!Parameters!!Returns!!Summary&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:0]]||||||Copies all of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1]]||int x, int y, int w, int h||||Copies a rectangular region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:2]]||int x, int y, int w, int h, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:3]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:5]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6]]||int x1, int y1, int x2, int y2, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:7]]||||||Clears VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8]]||int x, int y, int w, int h||||Inverts a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9]]||int x, int y, int w, int h||||Fades a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A]]||int x, int y, int w, int h||||Clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B]]||int x, int y, int w, int h, byte *dest||||Copies a region of VRAM to main memory.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C]]||int x, int y, int w, int h, byte border||||Inverts a rectangular region of the screen then clears an inner portion.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:D]]||int x, int y, image *img||||Draws an image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:E]]||int x, int y, image *img, int mode||||Draws an image at a specified (x, y) coordinate to VRAM with special operations.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:F]]||int x, int y, image *img||||Draws a faded image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:10]]||int x, int y, int w, int h||int success||Preserves then clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11]]||||||Restores the previously-preserved rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12]]||int delay||||Delays for a short while.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:13]]||void (*)() callback||||Registers a callback function to run when switching out of the add-on.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:14]]||char *path, char *?||||Gets the current application's path.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:15]]||char *id, char *?||||Gets the current application's ID.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1A]]||int x, int y, font *c||int w||Prints a single character to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1B]]||int x, int y, char *s, font *f||int w||Prints a string to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1C]]||int *w, int *h, font *c||int error||Measures a single character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1D]]||int x, int y, image *img, int mode, int background||||Draws an image at a specified (x, y) coordinate to VRAM with plotting mode and background options.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1E]]||int icon, int mode||||Draws a system icon to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1F]]||int icon||||Clears a system icon from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:20]]||int x, int y, int icon, int mode||||Draws a system icon at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:21]]||int icon||||Copies a system icon's region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:22]]||int icon, int x, int y||||Copies a system icon's region of VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:23]]||int x, int y, int w, int h, int amount||||Scrolls a rectangular region of VRAM vertically.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:24]]||int x, int y, int length||||Draws a dotted horizontal line to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:42]]||input *buf||||Resets a text input buffer and disables handwriting input.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:43]]||input *buf||||Draws a text input field to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:44]]||input *buf, int *main, int ?||int error||Processes incoming keyboard or handwriting input and updates the text input buffer.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:45]]||input *buf||||Requests text input.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4F]]||int x, int y, int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:50]]||int x, int y, int index, image_xy **imgs||||Clears an image in an image list from VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:51]]||int x, int y, int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:52]]||int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:53]]||int index, image_xy **imgs||||Clears an image in an image list from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:54]]||int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:55]]||int list||image_xy **imgs||Returns one of the system image lists.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:56]]||int alert, int mode||||Displays a system alert message.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:66]]||char *a, char *b||int index||Compares two strings and returns the index of the first different character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:67]]||char *str||int length||Returns the length of a string in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:68]]||char *a, char *b||int difference||Compares two strings and returns 0 if they are the same, -1 if a&amp;amp;lt;b or +1 if a&amp;amp;gt;b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:69]]||char *a, char *b||int difference||Compares string a and the reversed version of string b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6A]]||int file, int index, int bytes||int offset||Gets an offset from an offset file based on its index and number of bytes per offset.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:80]]||int show||||Shows or hides the ヒストリー (&amp;quot;history&amp;quot;) icon.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:82]]||char *path||||Sets the path for the グイド (&amp;quot;guide&amp;quot;) button's HTML file.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8A]]||wchar *str||||Simplifies a hiragana string by removing dakuten and handakuten, enlargement of sokuon or yoon, replacing chooonpu with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:98]]||wchar *chr||int changed||Converts a full-width hiragana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:99]]||wchar *chr||int changed||Converts a half-width hiragana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9A]]||wchar *chr||int changed||Converts a single-byte half-width katakana character to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9B]]||wchar *chr||int changed||Converts a full-width katakana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9C]]||wchar *chr||int changed||Converts a half-width katakana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9D]]||wchar *chr||int changed||Converts a full-width Greek character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9E]]||wchar *chr||int changed||Converts a half-width Greek character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9F]]||wchar *chr, int ?||int changed||Converts full width punctuation characters to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A0]]||wchar chr||int result||Checks if a character is Greek.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A1]]||wchar chr, int single||int result||Checks if a character is katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A2]]||wchar chr||int result||Checks if a character is hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A3]]||wchar chr, int fullwidth||int result||Checks if a character is alphabetic.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A4]]||wchar chr, int fullwidth||int result||Checks if a character is a digit.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A5]]||wchar *chr, int fullwidth||int changed||Converts a single-byte digit to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A6]]||wchar *chr, int fullwidth||int changed||Converts an alphabetic character to lowercase.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A9]]||char *str||||Converts a multibyte string from hiragana to katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:AA]]||char *str||||Converts a multibyte string from katakana to hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B4]]||byte value, int maximum||||Displays a progress dialog box.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:BC]]||wchar *str||||Replaces chooonpu in a hiragana string with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C1]]||||||Draws the split-screen search banner.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:114]]||char *src, char *dest, int ?||int length||Removes accents from a multibyte string.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:115]]||handwriting *buf||||Resets a handwriting buffer and selects it as the current one.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:116]]||handwriting *buf||||Selects a handwriting buffer, updates the current handwriting script and displays the appropriate icons on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:117]]||int script||int error||Sets the current handwriting script.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:118]]||||int script||Gets the current handwriting script.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:119]]||||||Draws the icons for the current handwriting script on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11A]]||||||Preserves the area of VRAM where the icons for the current handwriting script would be drawn.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11B]]||||||Restores the area of VRAM where the icons for the current handwriting script were drawn.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11C]]||handwriting *buf, int hiragana||||Switches the handwriting buffer to either hiragana or accented alphabetic input, selects it as the current buffer and displays the appropriate icons on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11E]]||handwriting *buf||||Resets a handwriting buffer but does not select it as the current one.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:124]]||int x, int y, font *c||int w||Prints a single character to sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:125]]||int x, int y, char *s, font *f||int w||Prints a string to sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:126]]||||||Clears the sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:127]]||||||Copies all of VRAM to the sub LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:128]]||int x1, int y1, int x2, int y2||||Draws a line on the sub LCD's VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:129]]||int x, int y, int w, int h||||Copies a rectangular region of VRAM to the sub LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12A]]||int x, int y, int w, int h||||Clears a rectangular region of sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12B]]||int x, int y, int w, int h||||Inverts a rectangular region of sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12C]]||int x, int y, int w, int h||||Fades a rectangular region of sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12D]]||int x, int y, image *img||||Draws an image at a specified (x, y) coordinate to sub LCD VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12E]]||int x, int y, int index, image_xy **imgs||||Copies an image in an image list from VRAM to the sub LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12F]]||void (*)(), ushort *||||Registers a callback to update the sub LCD and defines a list of touch regions on the sub LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:130]]||short *x, short *y, short held||int zone||Gets the last touch event from the sub LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:131]]||short zone, short x, short y||int inside||Determines if a particular (x, y) coordinate is still inside a particular sub LCD touch region.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:133]]||||||Enables the sub LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:134]]||||||Disables the sub LCD.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=306</id>
		<title>Syscalls</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=306"/>
		<updated>2024-05-14T04:14:17Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added text input syscalls.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Syscall!!Parameters!!Returns!!Summary&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:0]]||||||Copies all of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1]]||int x, int y, int w, int h||||Copies a rectangular region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:2]]||int x, int y, int w, int h, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:3]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:5]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6]]||int x1, int y1, int x2, int y2, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:7]]||||||Clears VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8]]||int x, int y, int w, int h||||Inverts a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9]]||int x, int y, int w, int h||||Fades a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A]]||int x, int y, int w, int h||||Clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B]]||int x, int y, int w, int h, byte *dest||||Copies a region of VRAM to main memory.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C]]||int x, int y, int w, int h, byte border||||Inverts a rectangular region of the screen then clears an inner portion.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:D]]||int x, int y, image *img||||Draws an image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:E]]||int x, int y, image *img, int mode||||Draws an image at a specified (x, y) coordinate to VRAM with special operations.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:F]]||int x, int y, image *img||||Draws a faded image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:10]]||int x, int y, int w, int h||int success||Preserves then clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11]]||||||Restores the previously-preserved rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12]]||int delay||||Delays for a short while.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:13]]||void (*)() callback||||Registers a callback function to run when switching out of the add-on.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:14]]||char *path, char *?||||Gets the current application's path.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:15]]||char *id, char *?||||Gets the current application's ID.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1A]]||int x, int y, font *c||int w||Prints a single character to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1B]]||int x, int y, char *s, font *f||int w||Prints a string to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1C]]||int *w, int *h, font *c||int error||Measures a single character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1D]]||int x, int y, image *img, int mode, int background||||Draws an image at a specified (x, y) coordinate to VRAM with plotting mode and background options.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1E]]||int icon, int mode||||Draws a system icon to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1F]]||int icon||||Clears a system icon from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:20]]||int x, int y, int icon, int mode||||Draws a system icon at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:21]]||int icon||||Copies a system icon's region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:22]]||int icon, int x, int y||||Copies a system icon's region of VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:23]]||int x, int y, int w, int h, int amount||||Scrolls a rectangular region of VRAM vertically.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:24]]||int x, int y, int length||||Draws a dotted horizontal line to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:42]]||input *buf||||Resets a text input buffer and disables handwriting input.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:43]]||input *buf||||Draws a text input field to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:44]]||input *buf, int *main, int ?||int error||Processes incoming keyboard or handwriting input and updates the text input buffer.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:45]]||input *buf||||Requests text input.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4F]]||int x, int y, int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:50]]||int x, int y, int index, image_xy **imgs||||Clears an image in an image list from VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:51]]||int x, int y, int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:52]]||int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:53]]||int index, image_xy **imgs||||Clears an image in an image list from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:54]]||int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:55]]||int list||image_xy **imgs||Returns one of the system image lists.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:56]]||int alert, int mode||||Displays a system alert message.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:66]]||char *a, char *b||int index||Compares two strings and returns the index of the first different character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:67]]||char *str||int length||Returns the length of a string in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:68]]||char *a, char *b||int difference||Compares two strings and returns 0 if they are the same, -1 if a&amp;amp;lt;b or +1 if a&amp;amp;gt;b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:69]]||char *a, char *b||int difference||Compares string a and the reversed version of string b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6A]]||int file, int index, int bytes||int offset||Gets an offset from an offset file based on its index and number of bytes per offset.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:80]]||int show||||Shows or hides the ヒストリー (&amp;quot;history&amp;quot;) icon.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:82]]||char *path||||Sets the path for the グイド (&amp;quot;guide&amp;quot;) button's HTML file.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8A]]||wchar *str||||Simplifies a hiragana string by removing dakuten and handakuten, enlargement of sokuon or yoon, replacing chooonpu with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:98]]||wchar *chr||int changed||Converts a full-width hiragana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:99]]||wchar *chr||int changed||Converts a half-width hiragana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9A]]||wchar *chr||int changed||Converts a single-byte half-width katakana character to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9B]]||wchar *chr||int changed||Converts a full-width katakana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9C]]||wchar *chr||int changed||Converts a half-width katakana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9D]]||wchar *chr||int changed||Converts a full-width Greek character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9E]]||wchar *chr||int changed||Converts a half-width Greek character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9F]]||wchar *chr, int ?||int changed||Converts full width punctuation characters to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A0]]||wchar chr||int result||Checks if a character is Greek.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A1]]||wchar chr, int single||int result||Checks if a character is katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A2]]||wchar chr||int result||Checks if a character is hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A3]]||wchar chr, int fullwidth||int result||Checks if a character is alphabetic.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A4]]||wchar chr, int fullwidth||int result||Checks if a character is a digit.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A5]]||wchar *chr, int fullwidth||int changed||Converts a single-byte digit to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A6]]||wchar *chr, int fullwidth||int changed||Converts an alphabetic character to lowercase.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A9]]||char *str||||Converts a multibyte string from hiragana to katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:AA]]||char *str||||Converts a multibyte string from katakana to hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B4]]||byte value, int maximum||||Displays a progress dialog box.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:BC]]||wchar *str||||Replaces chooonpu in a hiragana string with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C1]]||||||Draws the split-screen search banner.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:114]]||char *src, char *dest, int ?||int length||Removes accents from a multibyte string.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:115]]||handwriting *buf||||Resets a handwriting buffer and selects it as the current one.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:116]]||handwriting *buf||||Selects a handwriting buffer, updates the current handwriting script and displays the appropriate icons on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:117]]||int script||int error||Sets the current handwriting script.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:118]]||||int script||Gets the current handwriting script.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:119]]||||||Draws the icons for the current handwriting script on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11A]]||||||Preserves the area of VRAM where the icons for the current handwriting script would be drawn.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11B]]||||||Restores the area of VRAM where the icons for the current handwriting script were drawn.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11C]]||handwriting *buf, int hiragana||||Switches the handwriting buffer to either hiragana or accented alphabetic input, selects it as the current buffer and displays the appropriate icons on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11E]]||handwriting *buf||||Resets a handwriting buffer but does not select it as the current one.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=305</id>
		<title>Syscalls</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=305"/>
		<updated>2024-05-14T03:52:37Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added handwriting routines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Syscall!!Parameters!!Returns!!Summary&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:0]]||||||Copies all of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1]]||int x, int y, int w, int h||||Copies a rectangular region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:2]]||int x, int y, int w, int h, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:3]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:5]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6]]||int x1, int y1, int x2, int y2, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:7]]||||||Clears VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8]]||int x, int y, int w, int h||||Inverts a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9]]||int x, int y, int w, int h||||Fades a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A]]||int x, int y, int w, int h||||Clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B]]||int x, int y, int w, int h, byte *dest||||Copies a region of VRAM to main memory.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C]]||int x, int y, int w, int h, byte border||||Inverts a rectangular region of the screen then clears an inner portion.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:D]]||int x, int y, image *img||||Draws an image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:E]]||int x, int y, image *img, int mode||||Draws an image at a specified (x, y) coordinate to VRAM with special operations.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:F]]||int x, int y, image *img||||Draws a faded image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:10]]||int x, int y, int w, int h||int success||Preserves then clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11]]||||||Restores the previously-preserved rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12]]||int delay||||Delays for a short while.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:13]]||void (*)() callback||||Registers a callback function to run when switching out of the add-on.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:14]]||char *path, char *?||||Gets the current application's path.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:15]]||char *id, char *?||||Gets the current application's ID.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1A]]||int x, int y, font *c||int w||Prints a single character to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1B]]||int x, int y, char *s, font *f||int w||Prints a string to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1C]]||int *w, int *h, font *c||int error||Measures a single character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1D]]||int x, int y, image *img, int mode, int background||||Draws an image at a specified (x, y) coordinate to VRAM with plotting mode and background options.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1E]]||int icon, int mode||||Draws a system icon to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1F]]||int icon||||Clears a system icon from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:20]]||int x, int y, int icon, int mode||||Draws a system icon at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:21]]||int icon||||Copies a system icon's region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:22]]||int icon, int x, int y||||Copies a system icon's region of VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:23]]||int x, int y, int w, int h, int amount||||Scrolls a rectangular region of VRAM vertically.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:24]]||int x, int y, int length||||Draws a dotted horizontal line to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4F]]||int x, int y, int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:50]]||int x, int y, int index, image_xy **imgs||||Clears an image in an image list from VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:51]]||int x, int y, int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:52]]||int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:53]]||int index, image_xy **imgs||||Clears an image in an image list from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:54]]||int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:55]]||int list||image_xy **imgs||Returns one of the system image lists.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:56]]||int alert, int mode||||Displays a system alert message.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:66]]||char *a, char *b||int index||Compares two strings and returns the index of the first different character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:67]]||char *str||int length||Returns the length of a string in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:68]]||char *a, char *b||int difference||Compares two strings and returns 0 if they are the same, -1 if a&amp;amp;lt;b or +1 if a&amp;amp;gt;b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:69]]||char *a, char *b||int difference||Compares string a and the reversed version of string b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6A]]||int file, int index, int bytes||int offset||Gets an offset from an offset file based on its index and number of bytes per offset.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:80]]||int show||||Shows or hides the ヒストリー (&amp;quot;history&amp;quot;) icon.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:82]]||char *path||||Sets the path for the グイド (&amp;quot;guide&amp;quot;) button's HTML file.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8A]]||wchar *str||||Simplifies a hiragana string by removing dakuten and handakuten, enlargement of sokuon or yoon, replacing chooonpu with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:98]]||wchar *chr||int changed||Converts a full-width hiragana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:99]]||wchar *chr||int changed||Converts a half-width hiragana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9A]]||wchar *chr||int changed||Converts a single-byte half-width katakana character to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9B]]||wchar *chr||int changed||Converts a full-width katakana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9C]]||wchar *chr||int changed||Converts a half-width katakana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9D]]||wchar *chr||int changed||Converts a full-width Greek character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9E]]||wchar *chr||int changed||Converts a half-width Greek character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9F]]||wchar *chr, int ?||int changed||Converts full width punctuation characters to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A0]]||wchar chr||int result||Checks if a character is Greek.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A1]]||wchar chr, int single||int result||Checks if a character is katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A2]]||wchar chr||int result||Checks if a character is hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A3]]||wchar chr, int fullwidth||int result||Checks if a character is alphabetic.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A4]]||wchar chr, int fullwidth||int result||Checks if a character is a digit.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A5]]||wchar *chr, int fullwidth||int changed||Converts a single-byte digit to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A6]]||wchar *chr, int fullwidth||int changed||Converts an alphabetic character to lowercase.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A9]]||char *str||||Converts a multibyte string from hiragana to katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:AA]]||char *str||||Converts a multibyte string from katakana to hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B4]]||byte value, int maximum||||Displays a progress dialog box.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:BC]]||wchar *str||||Replaces chooonpu in a hiragana string with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C1]]||||||Draws the split-screen search banner.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:114]]||char *src, char *dest, int ?||int length||Removes accents from a multibyte string.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:115]]||handwriting *buf||||Resets a handwriting buffer and selects it as the current one.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:116]]||handwriting *buf||||Selects a handwriting buffer, updates the current handwriting script and displays the appropriate icons on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:117]]||int script||int error||Sets the current handwriting script.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:118]]||||int script||Gets the current handwriting script.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:119]]||||||Draws the icons for the current handwriting script on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11A]]||||||Preserves the area of VRAM where the icons for the current handwriting script would be drawn.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11B]]||||||Restores the area of VRAM where the icons for the current handwriting script were drawn.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11C]]||handwriting *buf, int hiragana||||Switches the handwriting buffer to either hiragana or accented alphabetic input, selects it as the current buffer and displays the appropriate icons on the screen.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11E]]||handwriting *buf||||Resets a handwriting buffer but does not select it as the current one.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=304</id>
		<title>Syscalls</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=304"/>
		<updated>2024-05-14T03:34:17Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Syscall!!Parameters!!Returns!!Summary&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:0]]||||||Copies all of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1]]||int x, int y, int w, int h||||Copies a rectangular region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:2]]||int x, int y, int w, int h, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:3]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:5]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6]]||int x1, int y1, int x2, int y2, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:7]]||||||Clears VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8]]||int x, int y, int w, int h||||Inverts a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9]]||int x, int y, int w, int h||||Fades a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A]]||int x, int y, int w, int h||||Clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B]]||int x, int y, int w, int h, byte *dest||||Copies a region of VRAM to main memory.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C]]||int x, int y, int w, int h, byte border||||Inverts a rectangular region of the screen then clears an inner portion.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:D]]||int x, int y, image *img||||Draws an image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:E]]||int x, int y, image *img, int mode||||Draws an image at a specified (x, y) coordinate to VRAM with special operations.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:F]]||int x, int y, image *img||||Draws a faded image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:10]]||int x, int y, int w, int h||int success||Preserves then clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11]]||||||Restores the previously-preserved rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12]]||int delay||||Delays for a short while.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:13]]||void (*)() callback||||Registers a callback function to run when switching out of the add-on.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:14]]||char *path, char *?||||Gets the current application's path.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:15]]||char *id, char *?||||Gets the current application's ID.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1A]]||int x, int y, font *c||int w||Prints a single character to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1B]]||int x, int y, char *s, font *f||int w||Prints a string to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1C]]||int *w, int *h, font *c||int error||Measures a single character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1D]]||int x, int y, image *img, int mode, int background||||Draws an image at a specified (x, y) coordinate to VRAM with plotting mode and background options.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1E]]||int icon, int mode||||Draws a system icon to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1F]]||int icon||||Clears a system icon from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:20]]||int x, int y, int icon, int mode||||Draws a system icon at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:21]]||int icon||||Copies a system icon's region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:22]]||int icon, int x, int y||||Copies a system icon's region of VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:23]]||int x, int y, int w, int h, int amount||||Scrolls a rectangular region of VRAM vertically.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:24]]||int x, int y, int length||||Draws a dotted horizontal line to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4F]]||int x, int y, int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:50]]||int x, int y, int index, image_xy **imgs||||Clears an image in an image list from VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:51]]||int x, int y, int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:52]]||int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:53]]||int index, image_xy **imgs||||Clears an image in an image list from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:54]]||int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:55]]||int list||image_xy **imgs||Returns one of the system image lists.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:56]]||int alert, int mode||||Displays a system alert message.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:66]]||char *a, char *b||int index||Compares two strings and returns the index of the first different character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:67]]||char *str||int length||Returns the length of a string in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:68]]||char *a, char *b||int difference||Compares two strings and returns 0 if they are the same, -1 if a&amp;amp;lt;b or +1 if a&amp;amp;gt;b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:69]]||char *a, char *b||int difference||Compares string a and the reversed version of string b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6A]]||int file, int index, int bytes||int offset||Gets an offset from an offset file based on its index and number of bytes per offset.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:80]]||int show||||Shows or hides the ヒストリー (&amp;quot;history&amp;quot;) icon.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:82]]||char *path||||Sets the path for the グイド (&amp;quot;guide&amp;quot;) button's HTML file.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8A]]||wchar *str||||Simplifies a hiragana string by removing dakuten and handakuten, enlargement of sokuon or yoon, replacing chooonpu with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:98]]||wchar *chr||int changed||Converts a full-width hiragana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:99]]||wchar *chr||int changed||Converts a half-width hiragana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9A]]||wchar *chr||int changed||Converts a single-byte half-width katakana character to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9B]]||wchar *chr||int changed||Converts a full-width katakana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9C]]||wchar *chr||int changed||Converts a half-width katakana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9D]]||wchar *chr||int changed||Converts a full-width Greek character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9E]]||wchar *chr||int changed||Converts a half-width Greek character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9F]]||wchar *chr, int ?||int changed||Converts full width punctuation characters to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A0]]||wchar chr||int result||Checks if a character is Greek.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A1]]||wchar chr, int single||int result||Checks if a character is katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A2]]||wchar chr||int result||Checks if a character is hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A3]]||wchar chr, int fullwidth||int result||Checks if a character is alphabetic.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A4]]||wchar chr, int fullwidth||int result||Checks if a character is a digit.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A5]]||wchar *chr, int fullwidth||int changed||Converts a single-byte digit to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A6]]||wchar *chr, int fullwidth||int changed||Converts an alphabetic character to lowercase.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A9]]||char *str||||Converts a multibyte string from hiragana to katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:AA]]||char *str||||Converts a multibyte string from katakana to hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B4]]||byte value, int maximum||||Displays a progress dialog box.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:BC]]||wchar *str||||Replaces chooonpu in a hiragana string with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C1]]||||||Draws the split-screen search banner.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=303</id>
		<title>Syscalls</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Syscalls&amp;diff=303"/>
		<updated>2024-05-14T03:33:36Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Syscall!!Parameters!!Returns!!Summary&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:0]]||||||Copies all of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1]]||int x, int y, int w, int h||||Copies a rectangular region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:2]]||int x, int y, int w, int h, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:3]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:5]]||int x, int y, int w, int h||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6]]||int x1, int y1, int x2, int y2, byte ?||||Draws a line.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:7]]||||||Clears VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8]]||int x, int y, int w, int h||||Inverts a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9]]||int x, int y, int w, int h||||Fades a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A]]||int x, int y, int w, int h||||Clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B]]||int x, int y, int w, int h, byte *dest||||Copies a region of VRAM to main memory.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C]]||int x, int y, int w, int h, byte border||||Inverts a rectangular region of the screen then clears an inner portion.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:D]]||int x, int y, image *img||||Draws an image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:E]]||int x, int y, image *img, int mode||||Draws an image at a specified (x, y) coordinate to VRAM with special operations.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:F]]||int x, int y, image *img||||Draws a faded image at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:10]]||int x, int y, int w, int h||int success||Preserves then clears a rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:11]]||||||Restores the previously-preserved rectangular region of VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:12]]||int delay||||Delays for a short while.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:13]]||void (*)() callback||||Registers a callback function to run when switching out of the add-on.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:14]]||char *path, char *?||||Gets the current application's path.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:15]]||char *id, char *?||||Gets the current application's ID.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1A]]||int x, int y, font *c||int w||Prints a single character to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1B]]||int x, int y, char *s, font *f||int w||Prints a string to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1C]]||int *w, int *h, font *c||int error||Measures a single character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1D]]||int x, int y, image *img, int mode, int background||||Draws an image at a specified (x, y) coordinate to VRAM with plotting mode and background options.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1E]]||int icon, int mode||||Draws a system icon to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:1F]]||int icon||||Clears a system icon from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:20]]||int x, int y, int icon, int mode||||Draws a system icon at a specified (x, y) coordinate to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:21]]||int icon||||Copies a system icon's region of VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:22]]||int icon, int x, int y||||Copies a system icon's region of VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:23]]||int x, int y, int w, int h, int amount||||Scrolls a rectangular region of VRAM vertically.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:24]]||int x, int y, int length||||Draws a dotted horizontal line to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:4F]]||int x, int y, int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:50]]||int x, int y, int index, image_xy **imgs||||Clears an image in an image list from VRAM at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:51]]||int x, int y, int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD at a specified (x, y) coordinate.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:52]]||int index, int mode, image_xy **imgs||||Draws an image from an image list to VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:53]]||int index, image_xy **imgs||||Clears an image in an image list from VRAM.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:54]]||int index, image_xy **imgs||||Copies an image in an image list from VRAM to the LCD.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:55]]||int list||image_xy **imgs||Returns one of the system image lists.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:56]]||int alert, int mode||||Displays a system alert message.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:66]]||char *a, char *b||int index||Compares two strings and returns the index of the first different character.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:67]]||char *str||int length||Returns the length of a string in bytes.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:68]]||char *a, char *b||int difference||Compares two strings and returns 0 if they are the same, -1 if a&amp;amp;lt;b or +1 if a&amp;amp;gt;b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:69]]||char *a, char *b||int difference||Compares string a and the reversed version of string b.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:6A]]||int file, int index, int bytes||int offset||Gets an offset from an offset file based on its index and number of bytes per offset.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:80]]||int show||||Shows or hides the ヒストリー (&amp;quot;history&amp;quot;) icon.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:82]]||char *path||||Sets the path for the グイド (&amp;quot;guide&amp;quot;) button's HTML file.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:8A]]||wchar *str||||Simplifies a hiragana string by removing dakuten and handakuten, enlargement of sokuon or yoon, replacing chooonpu with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:98]]||wchar *chr||int changed||Converts a full-width hiragana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:99]]||wchar *chr||int changed||Converts a half-width hiragana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9A]]||wchar *chr||int changed||Converts a single-byte half-width katakana character to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9B]]||wchar *chr||int changed||Converts a full-width katakana character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9C]]||wchar *chr||int changed||Converts a half-width katakana character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9D]]||wchar *chr||int changed||Converts a full-width Greek character to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9E]]||wchar *chr||int changed||Converts a half-width Greek character to full-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:9F]]||wchar *chr, int ?||int changed||Converts full width punctuation characters to half-width.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A0]]||wchar chr||int result||Checks if a character is Greek.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A1]]||wchar chr, int single||int result||Checks if a character is katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A2]]||wchar chr||int result||Checks if a character is hiragana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A3]]||wchar chr, int fullwidth||int result||Checks if a character is alphabetic.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A4]]||wchar chr, int fullwidth||int result||Checks if a character is a digit.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A5]]||wchar *chr, int fullwidth||int changed||Converts a single-byte digit to its double-byte equivalent.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A6]]||wchar *chr, int fullwidth||int changed||Converts an alphabetic character to lowercase.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:A9]]||char *str||||Converts a multibyte string from hiragana to katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:AA]]||char *str||||Converts a multibyte string from katakana to katakana.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:B4]]||byte value, int maximum||||Displays a progress dialog box.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:BC]]||wchar *str||||Replaces chooonpu in a hiragana string with repeated vowels.&lt;br /&gt;
|-&lt;br /&gt;
|[[Syscall:C1]]||||||Draws the split-screen search banner.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=302</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=302"/>
		<updated>2024-05-14T03:07:37Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Table 0: Footer instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||アルファベット&lt;br /&gt;
|Alphabet&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||キーワード検索&lt;br /&gt;
|Keyword search&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||コロケーション検索&lt;br /&gt;
|Collocation search&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||スペリング検索&lt;br /&gt;
|Spelling search&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||スペルチェック&lt;br /&gt;
|Spell check&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||ピンイン&lt;br /&gt;
|Pinyin&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||英語検索&lt;br /&gt;
|English search&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||音訓読み&lt;br /&gt;
|Onkun reading&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||解答&lt;br /&gt;
|Answer&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||慣用句検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||逆引き&lt;br /&gt;
|Reverse resolution&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||逆引き検索&lt;br /&gt;
|Reverse search&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||月別検索&lt;br /&gt;
|Monthly search&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||検索文字列&lt;br /&gt;
|Search string&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||見出し語検索&lt;br /&gt;
|Headword search&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||熟語検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||数字&lt;br /&gt;
|Numbers&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||成句検索&lt;br /&gt;
|Phrase search&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||総画数&lt;br /&gt;
|Total number of strokes&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||日本語検索&lt;br /&gt;
|Japanese search&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||日本語例文検索&lt;br /&gt;
|Japanese example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||部首画数&lt;br /&gt;
|Number of radical strokes&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||部品読み&lt;br /&gt;
|Parts reading&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||変化形検索&lt;br /&gt;
|Variant search&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||用語1&lt;br /&gt;
|Term 1&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||用語2&lt;br /&gt;
|Term 2&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||略語検索&lt;br /&gt;
|Abbreviation search&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||類語検索&lt;br /&gt;
|Synonym search&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||例文検索&lt;br /&gt;
|Example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||アルファベット検索&lt;br /&gt;
|Alphabet search&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||略語予測&lt;br /&gt;
|Abbreviation prediction&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||かな検索&lt;br /&gt;
|Kana search&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||日本語訳検索&lt;br /&gt;
|Japanese translation search&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||手書き検索&lt;br /&gt;
|Handwritten search&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||手書き漢字検索&lt;br /&gt;
|Handwritten kanji search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||該当する候補がありません&lt;br /&gt;
いずれかの操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
Please perform one of the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||該当する候補がありません&lt;br /&gt;
戻る/リストまたは削除を押して入力文字を削除して入力しなおして下さい&lt;br /&gt;
----There are no matching candidates&lt;br /&gt;
&lt;br /&gt;
Please press Back/List or Delete to delete the characters you entered and try again.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||Small loudspeaker&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||Medium loudspeaker&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||Large loudspeaker&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||ガイド&lt;br /&gt;
|Guide&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||ジャンプ&lt;br /&gt;
|Jump&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||ズーム&lt;br /&gt;
|Zoom&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||トゥルーボイス&lt;br /&gt;
|True voice&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||ヒストリー&lt;br /&gt;
|History&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||音声&lt;br /&gt;
|Audio&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||読み上げ&lt;br /&gt;
|Reading aloud&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||英語&lt;br /&gt;
|English&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||ドイツ語&lt;br /&gt;
|German&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||フランス語&lt;br /&gt;
|French&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||イタリア語&lt;br /&gt;
|Italian&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||スペイン語&lt;br /&gt;
|Spanish&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||中国語&lt;br /&gt;
|Chinese&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||韓国語&lt;br /&gt;
|Korean&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||全表示&lt;br /&gt;
|Show all&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||語順&lt;br /&gt;
|Word order&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||連続&lt;br /&gt;
|Continuous&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||タイ語&lt;br /&gt;
|Thai&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||音声サーチ&lt;br /&gt;
|Voice search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=301</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=301"/>
		<updated>2024-05-14T03:02:11Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Table 3: Status icons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||アルファベット&lt;br /&gt;
|Alphabet&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||キーワード検索&lt;br /&gt;
|Keyword search&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||コロケーション検索&lt;br /&gt;
|Collocation search&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||スペリング検索&lt;br /&gt;
|Spelling search&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||スペルチェック&lt;br /&gt;
|Spell check&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||ピンイン&lt;br /&gt;
|Pinyin&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||英語検索&lt;br /&gt;
|English search&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||音訓読み&lt;br /&gt;
|Onkun reading&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||解答&lt;br /&gt;
|Answer&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||慣用句検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||逆引き&lt;br /&gt;
|Reverse resolution&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||逆引き検索&lt;br /&gt;
|Reverse search&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||月別検索&lt;br /&gt;
|Monthly search&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||検索文字列&lt;br /&gt;
|Search string&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||見出し語検索&lt;br /&gt;
|Headword search&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||熟語検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||数字&lt;br /&gt;
|Numbers&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||成句検索&lt;br /&gt;
|Phrase search&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||総画数&lt;br /&gt;
|Total number of strokes&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||日本語検索&lt;br /&gt;
|Japanese search&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||日本語例文検索&lt;br /&gt;
|Japanese example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||部首画数&lt;br /&gt;
|Number of radical strokes&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||部品読み&lt;br /&gt;
|Parts reading&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||変化形検索&lt;br /&gt;
|Variant search&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||用語1&lt;br /&gt;
|Term 1&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||用語2&lt;br /&gt;
|Term 2&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||略語検索&lt;br /&gt;
|Abbreviation search&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||類語検索&lt;br /&gt;
|Synonym search&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||例文検索&lt;br /&gt;
|Example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||アルファベット検索&lt;br /&gt;
|Alphabet search&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||略語予測&lt;br /&gt;
|Abbreviation prediction&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||かな検索&lt;br /&gt;
|Kana search&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||日本語訳検索&lt;br /&gt;
|Japanese translation search&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||手書き検索&lt;br /&gt;
|Handwritten search&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||手書き漢字検索&lt;br /&gt;
|Handwritten kanji search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||該当する候補がありません&lt;br /&gt;
いずれかの操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
Please perform one of the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||該当する候補がありません&lt;br /&gt;
戻る/リストまたは削除を押して入力文字を削除して入力しなおして下さい&lt;br /&gt;
----There are no matching candidates&lt;br /&gt;
&lt;br /&gt;
Please press Back/List or Delete to delete the characters you entered and try again.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||Small loudspeaker&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||Medium loudspeaker&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||Large loudspeaker&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||ガイド&lt;br /&gt;
|Guide&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||ジャンプ&lt;br /&gt;
|Jump&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||ズーム&lt;br /&gt;
|Zoom&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||トゥルーボイス&lt;br /&gt;
|True voice&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||ヒストリー&lt;br /&gt;
|History&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||音声&lt;br /&gt;
|Audio&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||読み上げ&lt;br /&gt;
|Reading aloud&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||英語&lt;br /&gt;
|English&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||ドイツ語&lt;br /&gt;
|German&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||フランス語&lt;br /&gt;
|French&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||イタリア語&lt;br /&gt;
|Italian&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||スペイン語&lt;br /&gt;
|Spanish&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||中国語&lt;br /&gt;
|Chinese&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||韓国語&lt;br /&gt;
|Korean&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||全表示&lt;br /&gt;
|Show all&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||語順&lt;br /&gt;
|Word order&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||連続&lt;br /&gt;
|Continuous&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||タイ語&lt;br /&gt;
|Thai&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||音声サーチ&lt;br /&gt;
|Voice search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=300</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=300"/>
		<updated>2024-05-14T02:55:55Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Table 4: Menu options */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||アルファベット&lt;br /&gt;
|Alphabet&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||キーワード検索&lt;br /&gt;
|Keyword search&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||コロケーション検索&lt;br /&gt;
|Collocation search&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||スペリング検索&lt;br /&gt;
|Spelling search&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||スペルチェック&lt;br /&gt;
|Spell check&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||ピンイン&lt;br /&gt;
|Pinyin&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||英語検索&lt;br /&gt;
|English search&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||音訓読み&lt;br /&gt;
|Onkun reading&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||解答&lt;br /&gt;
|Answer&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||慣用句検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||逆引き&lt;br /&gt;
|Reverse resolution&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||逆引き検索&lt;br /&gt;
|Reverse search&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||月別検索&lt;br /&gt;
|Monthly search&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||検索文字列&lt;br /&gt;
|Search string&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||見出し語検索&lt;br /&gt;
|Headword search&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||熟語検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||数字&lt;br /&gt;
|Numbers&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||成句検索&lt;br /&gt;
|Phrase search&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||総画数&lt;br /&gt;
|Total number of strokes&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||日本語検索&lt;br /&gt;
|Japanese search&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||日本語例文検索&lt;br /&gt;
|Japanese example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||部首画数&lt;br /&gt;
|Number of radical strokes&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||部品読み&lt;br /&gt;
|Parts reading&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||変化形検索&lt;br /&gt;
|Variant search&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||用語1&lt;br /&gt;
|Term 1&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||用語2&lt;br /&gt;
|Term 2&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||略語検索&lt;br /&gt;
|Abbreviation search&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||類語検索&lt;br /&gt;
|Synonym search&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||例文検索&lt;br /&gt;
|Example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||アルファベット検索&lt;br /&gt;
|Alphabet search&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||略語予測&lt;br /&gt;
|Abbreviation prediction&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||かな検索&lt;br /&gt;
|Kana search&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||日本語訳検索&lt;br /&gt;
|Japanese translation search&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||手書き検索&lt;br /&gt;
|Handwritten search&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||手書き漢字検索&lt;br /&gt;
|Handwritten kanji search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||該当する候補がありません&lt;br /&gt;
いずれかの操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
Please perform one of the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||該当する候補がありません&lt;br /&gt;
戻る/リストまたは削除を押して入力文字を削除して入力しなおして下さい&lt;br /&gt;
----There are no matching candidates&lt;br /&gt;
&lt;br /&gt;
Please press Back/List or Delete to delete the characters you entered and try again.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=299</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=299"/>
		<updated>2024-05-14T02:55:15Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Table 2: Dialog boxes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||アルファベット&lt;br /&gt;
|Alphabet&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||キーワード検索&lt;br /&gt;
|Keyword search&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||コロケーション検索&lt;br /&gt;
|Collocation search&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||スペリング検索&lt;br /&gt;
|Spelling search&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||スペルチェック&lt;br /&gt;
|Spell check&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||ピンイン&lt;br /&gt;
|Pinyin&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||英語検索&lt;br /&gt;
|English search&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||音訓読み&lt;br /&gt;
|Onkun reading&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||解答&lt;br /&gt;
|Answer&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||慣用句検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||逆引き&lt;br /&gt;
|Reverse resolution&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||逆引き検索&lt;br /&gt;
|Reverse search&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||月別検索&lt;br /&gt;
|Monthly search&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||検索文字列&lt;br /&gt;
|Search string&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||見出し語検索&lt;br /&gt;
|Headword search&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||熟語検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||数字&lt;br /&gt;
|Numbers&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||成句検索&lt;br /&gt;
|Phrase search&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||総画数&lt;br /&gt;
|Total number of strokes&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||日本語検索&lt;br /&gt;
|Japanese search&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||日本語例文検索&lt;br /&gt;
|Japanese example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||部首画数&lt;br /&gt;
|Number of radical strokes&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||部品読み&lt;br /&gt;
|Parts reading&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||変化形検索&lt;br /&gt;
|Variant search&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||用語1&lt;br /&gt;
|Term 1&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||用語2&lt;br /&gt;
|Term 2&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||略語検索&lt;br /&gt;
|Abbreviation search&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||類語検索&lt;br /&gt;
|Synonym search&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||例文検索&lt;br /&gt;
|Example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||アルファベット検索&lt;br /&gt;
|Alphabet search&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||略語予測&lt;br /&gt;
|Abbreviation prediction&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||かな検索&lt;br /&gt;
|Kana search&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||日本語訳検索&lt;br /&gt;
|Japanese translation search&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||手書き検索&lt;br /&gt;
|Handwritten search&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||手書き漢字検索&lt;br /&gt;
|Handwritten kanji search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||該当する候補がありません&lt;br /&gt;
いずれかの操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
Please perform one of the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* さらに検索を押して検索画面を起動させて 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Search again to launch the search screen and re-enter or select.&lt;br /&gt;
* Please press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||該当する候補がありません&lt;br /&gt;
以下の操作をおこなって下さい&lt;br /&gt;
&lt;br /&gt;
* 戻る/リストを押して前の画面に戻り 入力または選択しなおして下さい&lt;br /&gt;
* ◀/▶を押して他の辞典を選択して下さい&lt;br /&gt;
&lt;br /&gt;
----There are no matching candidates.&lt;br /&gt;
&lt;br /&gt;
Please perform the following operations.&lt;br /&gt;
&lt;br /&gt;
* Press Back/List to return to the previous screen and re-enter or select.&lt;br /&gt;
* Press ◀/▶ to select another dictionary.&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||該当する候補がありません&lt;br /&gt;
戻る/リストまたは削除を押して入力文字を削除して入力しなおして下さい&lt;br /&gt;
----There are no matching candidates&lt;br /&gt;
&lt;br /&gt;
Please press Back/List or Delete to delete the characters you entered and try again.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=298</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=298"/>
		<updated>2024-05-14T02:41:59Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Table 1: Field labels */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||アルファベット&lt;br /&gt;
|Alphabet&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||キーワード検索&lt;br /&gt;
|Keyword search&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||コロケーション検索&lt;br /&gt;
|Collocation search&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||スペリング検索&lt;br /&gt;
|Spelling search&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||スペルチェック&lt;br /&gt;
|Spell check&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||ピンイン&lt;br /&gt;
|Pinyin&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||英語検索&lt;br /&gt;
|English search&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||音訓読み&lt;br /&gt;
|Onkun reading&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||解答&lt;br /&gt;
|Answer&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||慣用句検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||逆引き&lt;br /&gt;
|Reverse resolution&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||逆引き検索&lt;br /&gt;
|Reverse search&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||月別検索&lt;br /&gt;
|Monthly search&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||検索文字列&lt;br /&gt;
|Search string&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||見出し語検索&lt;br /&gt;
|Headword search&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||熟語検索&lt;br /&gt;
|Idiom search&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||数字&lt;br /&gt;
|Numbers&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||成句検索&lt;br /&gt;
|Phrase search&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||総画数&lt;br /&gt;
|Total number of strokes&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||日本語検索&lt;br /&gt;
|Japanese search&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||日本語&lt;br /&gt;
|Japanese&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||日本語例文検索&lt;br /&gt;
|Japanese example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||部首画数&lt;br /&gt;
|Number of radical strokes&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||部品読み&lt;br /&gt;
|Parts reading&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||変化形検索&lt;br /&gt;
|Variant search&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||用語1&lt;br /&gt;
|Term 1&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||用語2&lt;br /&gt;
|Term 2&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||略語検索&lt;br /&gt;
|Abbreviation search&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||類語検索&lt;br /&gt;
|Synonym search&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||例文検索&lt;br /&gt;
|Example sentence search&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||アルファベット検索&lt;br /&gt;
|Alphabet search&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||略語予測&lt;br /&gt;
|Abbreviation prediction&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||かな検索&lt;br /&gt;
|Kana search&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||日本語訳検索&lt;br /&gt;
|Japanese translation search&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||手書き検索&lt;br /&gt;
|Handwritten search&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||手書き漢字検索&lt;br /&gt;
|Handwritten kanji search&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_icons&amp;diff=297</id>
		<title>System icons</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_icons&amp;diff=297"/>
		<updated>2024-05-14T02:32:16Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain common icons are provided in as system icons. These can be drawn to VRAM with [[syscall 1E]] or [[syscall 20]] and copied to the screen with [[syscall 21]] or [[syscall 22]].&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Icon!!Thumbnail!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Icon 00.png|none|System icon 0]]||成・複 (&amp;quot;Composition/Duplication&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Icon 01.png|none|System icon 1]]||Shift&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Icon 02.png|none|System icon 2]]||Up arrow&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Icon 03.png|none|System icon 3]]||Down arrow&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Icon 04.png|none|System icon 4]]||熟語 (&amp;quot;Idioms&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Icon 05.png|none|System icon 5]]||発音 (&amp;quot;Pronunciation&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Icon 06.png|none|System icon 6]]||Unchecked radio button&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Icon 07.png|none|System icon 7]]||Checked radio button&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Icon 08.png|none|System icon 8]]||検索中･･･戻るキーを押すと検索を中止します&amp;lt;br&amp;gt;(&amp;quot;Searching... Press the back key to cancel the search&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Icon 09.png|none|System icon 9]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Icon 10.png|none|System icon 10]]||S1&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Icon 11.png|none|System icon 11]]||S2&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Icon 12.png|none|System icon 12]]||S3&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Icon 13.png|none|System icon 13]]||W1&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Icon 14.png|none|System icon 14]]||W2&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Icon 15.png|none|System icon 15]]||W3&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Icon 16.png|none|System icon 16]]||成句 (&amp;quot;Idiomatic phrase&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Icon 17.png|none|System icon 17]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Icon 18.png|none|System icon 18]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Icon 19.png|none|System icon 19]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Icon 20.png|none|System icon 20]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Icon 21.png|none|System icon 21]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Icon 22.png|none|System icon 22]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Icon 23.png|none|System icon 23]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Icon 24.png|none|System icon 24]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Icon 25.png|none|System icon 25]]||&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Icon 26.png|none|System icon 26]]||&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Icon 27.png|none|System icon 27]]||&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Icon 28.png|none|System icon 28]]||&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Icon 29.png|none|System icon 29]]||&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Icon 30.png|none|System icon 30]]||&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Icon 31.png|none|System icon 31]]||&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Icon 32.png|none|System icon 32]]||&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Icon 33.png|none|System icon 33]]||&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Icon 34.png|none|System icon 34]]||Unchecked checkbox&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Icon 35.png|none|System icon 35]]||Unchecked checkbox (selected)&lt;br /&gt;
|-&lt;br /&gt;
|36||[[File:Icon 36.png|none|System icon 36]]||Large button&lt;br /&gt;
|-&lt;br /&gt;
|37||[[File:Icon 37.png|none|System icon 37]]||Large button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|38||[[File:Icon 38.png|none|System icon 38]]||Small button&lt;br /&gt;
|-&lt;br /&gt;
|39||[[File:Icon 39.png|none|System icon 39]]||Small button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|40||[[File:Icon 40.png|none|System icon 40]]||Checked radio button&lt;br /&gt;
|-&lt;br /&gt;
|41||[[File:Icon 41.png|none|System icon 41]]||Checked radio button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|42||[[File:Icon 42.png|none|System icon 42]]||Unchecked radio button&lt;br /&gt;
|-&lt;br /&gt;
|43||[[File:Icon 43.png|none|System icon 43]]||Unchecked radio button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|44||[[File:Icon 44.png|none|System icon 44]]||Checked checkbox&lt;br /&gt;
|-&lt;br /&gt;
|45||[[File:Icon 45.png|none|System icon 45]]||Checked checkbox (selected)&lt;br /&gt;
|-&lt;br /&gt;
|46||[[File:Icon 46.png|none|System icon 46]]||&lt;br /&gt;
|-&lt;br /&gt;
|47||[[File:Icon 47.png|none|System icon 47]]||&lt;br /&gt;
|-&lt;br /&gt;
|48||[[File:Icon 48.png|none|System icon 48]]||成語 (&amp;quot;Set phrase&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|49||[[File:Icon 49.png|none|System icon 49]]||熟語 (&amp;quot;Idioms&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|50||[[File:Icon 50.png|none|System icon 50]]||ガイド (&amp;quot;Guide&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|51||[[File:Icon 51.png|none|System icon 51]]||ジャノプ (&amp;quot;Jump&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|52||[[File:Icon 52.png|none|System icon 52]]||音声 (&amp;quot;Voice&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|53||[[File:Icon 53.png|none|System icon 53]]||ズーム (&amp;quot;Zoom&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|54||[[File:Icon 54.png|none|System icon 54]]||Back&lt;br /&gt;
|-&lt;br /&gt;
|55||[[File:Icon 55.png|none|System icon 55]]||Next&lt;br /&gt;
|-&lt;br /&gt;
|56||[[File:Icon 56.png|none|System icon 56]]||トゥルーボイス (&amp;quot;True voice&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|57||[[File:Icon 57.png|none|System icon 57]]||成・派&lt;br /&gt;
|-&lt;br /&gt;
|58||[[File:Icon 58.png|none|System icon 58]]||Left arrow&lt;br /&gt;
|-&lt;br /&gt;
|59||[[File:Icon 59.png|none|System icon 59]]||Right arrow&lt;br /&gt;
|-&lt;br /&gt;
|60||[[File:Icon 60.png|none|System icon 60]]||成・関&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Category:System_icons&amp;diff=296</id>
		<title>Category:System icons</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Category:System_icons&amp;diff=296"/>
		<updated>2024-05-14T02:30:10Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Replaced content with &amp;quot;{{:System icons}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:System icons}}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_icons&amp;diff=295</id>
		<title>System icons</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_icons&amp;diff=295"/>
		<updated>2024-05-14T02:30:00Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Moved system icon descriptive text from category page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Icon!!Thumbnail!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Icon 00.png|none|System icon 0]]||成・複 (&amp;quot;Composition/Duplication&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Icon 01.png|none|System icon 1]]||Shift&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Icon 02.png|none|System icon 2]]||Up arrow&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Icon 03.png|none|System icon 3]]||Down arrow&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Icon 04.png|none|System icon 4]]||熟語 (&amp;quot;Idioms&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Icon 05.png|none|System icon 5]]||発音 (&amp;quot;Pronunciation&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Icon 06.png|none|System icon 6]]||Unchecked radio button&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Icon 07.png|none|System icon 7]]||Checked radio button&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Icon 08.png|none|System icon 8]]||検索中･･･戻るキーを押すと検索を中止します&amp;lt;br&amp;gt;(&amp;quot;Searching... Press the back key to cancel the search&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Icon 09.png|none|System icon 9]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Icon 10.png|none|System icon 10]]||S1&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Icon 11.png|none|System icon 11]]||S2&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Icon 12.png|none|System icon 12]]||S3&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Icon 13.png|none|System icon 13]]||W1&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Icon 14.png|none|System icon 14]]||W2&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Icon 15.png|none|System icon 15]]||W3&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Icon 16.png|none|System icon 16]]||成句 (&amp;quot;Idiomatic phrase&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Icon 17.png|none|System icon 17]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Icon 18.png|none|System icon 18]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Icon 19.png|none|System icon 19]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Icon 20.png|none|System icon 20]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Icon 21.png|none|System icon 21]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Icon 22.png|none|System icon 22]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Icon 23.png|none|System icon 23]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Icon 24.png|none|System icon 24]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Icon 25.png|none|System icon 25]]||&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Icon 26.png|none|System icon 26]]||&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Icon 27.png|none|System icon 27]]||&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Icon 28.png|none|System icon 28]]||&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Icon 29.png|none|System icon 29]]||&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Icon 30.png|none|System icon 30]]||&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Icon 31.png|none|System icon 31]]||&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Icon 32.png|none|System icon 32]]||&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Icon 33.png|none|System icon 33]]||&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Icon 34.png|none|System icon 34]]||Unchecked checkbox&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Icon 35.png|none|System icon 35]]||Unchecked checkbox (selected)&lt;br /&gt;
|-&lt;br /&gt;
|36||[[File:Icon 36.png|none|System icon 36]]||Large button&lt;br /&gt;
|-&lt;br /&gt;
|37||[[File:Icon 37.png|none|System icon 37]]||Large button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|38||[[File:Icon 38.png|none|System icon 38]]||Small button&lt;br /&gt;
|-&lt;br /&gt;
|39||[[File:Icon 39.png|none|System icon 39]]||Small button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|40||[[File:Icon 40.png|none|System icon 40]]||Checked radio button&lt;br /&gt;
|-&lt;br /&gt;
|41||[[File:Icon 41.png|none|System icon 41]]||Checked radio button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|42||[[File:Icon 42.png|none|System icon 42]]||Unchecked radio button&lt;br /&gt;
|-&lt;br /&gt;
|43||[[File:Icon 43.png|none|System icon 43]]||Unchecked radio button (selected)&lt;br /&gt;
|-&lt;br /&gt;
|44||[[File:Icon 44.png|none|System icon 44]]||Checked checkbox&lt;br /&gt;
|-&lt;br /&gt;
|45||[[File:Icon 45.png|none|System icon 45]]||Checked checkbox (selected)&lt;br /&gt;
|-&lt;br /&gt;
|46||[[File:Icon 46.png|none|System icon 46]]||&lt;br /&gt;
|-&lt;br /&gt;
|47||[[File:Icon 47.png|none|System icon 47]]||&lt;br /&gt;
|-&lt;br /&gt;
|48||[[File:Icon 48.png|none|System icon 48]]||成語 (&amp;quot;Set phrase&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|49||[[File:Icon 49.png|none|System icon 49]]||熟語 (&amp;quot;Idioms&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|50||[[File:Icon 50.png|none|System icon 50]]||ガイド (&amp;quot;Guide&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|51||[[File:Icon 51.png|none|System icon 51]]||ジャノプ (&amp;quot;Jump&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|52||[[File:Icon 52.png|none|System icon 52]]||音声 (&amp;quot;Voice&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|53||[[File:Icon 53.png|none|System icon 53]]||ズーム (&amp;quot;Zoom&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|54||[[File:Icon 54.png|none|System icon 54]]||Back&lt;br /&gt;
|-&lt;br /&gt;
|55||[[File:Icon 55.png|none|System icon 55]]||Next&lt;br /&gt;
|-&lt;br /&gt;
|56||[[File:Icon 56.png|none|System icon 56]]||トゥルーボイス (&amp;quot;True voice&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|57||[[File:Icon 57.png|none|System icon 57]]||成・派&lt;br /&gt;
|-&lt;br /&gt;
|58||[[File:Icon 58.png|none|System icon 58]]||Left arrow&lt;br /&gt;
|-&lt;br /&gt;
|59||[[File:Icon 59.png|none|System icon 59]]||Right arrow&lt;br /&gt;
|-&lt;br /&gt;
|60||[[File:Icon 60.png|none|System icon 60]]||成・関&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System icons]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=Category:System_images&amp;diff=294</id>
		<title>Category:System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=Category:System_images&amp;diff=294"/>
		<updated>2024-05-14T02:27:39Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Created page with &amp;quot;{{:System images}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:System images}}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=293</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=293"/>
		<updated>2024-05-14T02:27:15Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added category tag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=292</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=292"/>
		<updated>2024-05-14T02:24:57Z</updated>

		<summary type="html">&lt;p&gt;Benryves: /* Table 0: Footer instructions */ Added English translations&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a small encyclopedia&lt;br /&gt;
◀ Press / ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select an item&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a dictionary&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Choose a small dictionary&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Select a search method&lt;br /&gt;
Press ▲/▼/◀/ ▶ to move the reversal and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||Select an item&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
The answer will be displayed when you press Translate/Decide while the text is displayed&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the katakana reading of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword from the word behind it&lt;br /&gt;
Enter the reading behind the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the keyword of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a person's name headword&lt;br /&gt;
Enter the reading of the name of the person you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the kigo&lt;br /&gt;
Enter the reading of the word you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a place-name headword&lt;br /&gt;
Enter the reading of the place name you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for counting methods by the name of the object&lt;br /&gt;
Enter the reading of the name of the object you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Please enter the reading of the classifier or unit you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for classifiers and units&lt;br /&gt;
Enter the reading of the classifier or unit you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for abbreviations&lt;br /&gt;
Enter the spelling of the abbreviation you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords by month&lt;br /&gt;
Enter the month of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by genre&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for departmental headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for economic neologisms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for management term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for a stock term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords for financial terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a synonym for a distribution term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for insurance term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for accounting term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword for an advertising term&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for acronyms&lt;br /&gt;
Enter the spelling of the acronym you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by katakana name&lt;br /&gt;
Enter the katakana reading of the wine you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for wine by original name&lt;br /&gt;
Enter the spelling of the wine you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for synonyms&lt;br /&gt;
Enter the reading of the synonym you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||Search for headwords by keywords&lt;br /&gt;
Enter the keyword of the headword you want to look up and press Translate/Accept&lt;br /&gt;
You can enter multiple keywords to narrow down the suggestions&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for botanical term headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a gardening term headword&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for insect terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for antyms for wild bird terms&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the reading of the name of the drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by drug name&lt;br /&gt;
Enter the name of the drug you want to check and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from anti-cancer drugs&lt;br /&gt;
Enter the reading of the anticancer drug you want to check and press Translate/Select.&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||You can look up the drug by the code on the pack (packaging) / body&lt;br /&gt;
Enter the numbers and alphabets and press Translate/Accept&lt;br /&gt;
You can also search by numbers or alphabets only&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the reading of the name of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the reading of the title of the work you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Please enter the spelling of the title of the work you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the title of the work&lt;br /&gt;
Enter the spelling of the title of the work you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the director's name&lt;br /&gt;
Enter the reading of the name of the director you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Please enter the reading of the name of the performer you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords from the performer name&lt;br /&gt;
Enter the reading of the name of the performer you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading of the name of the disease you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading of the name of the disease you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese keywords&lt;br /&gt;
Enter a Japanese keyword and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading of the keyword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you wish to find out&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||Search for the clause above&lt;br /&gt;
Enter the reading of the above phrase you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the following clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below that you want to check&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||Search for the clause below&lt;br /&gt;
Enter the reading of the phrase below you want to check and press Translate/Accept&lt;br /&gt;
When you press Translate/Decide while the text is displayed, the above clause is displayed&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for small encyclopedia headwords&lt;br /&gt;
Enter the reading of the small encyclopedia you want to check and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for the headword of the chronicle&lt;br /&gt;
Enter the reading of the chronicle you want to check and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form from a word or inflection with ambiguous spelling&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for phrases&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for example sentences&lt;br /&gt;
Enter the word in the example sentence you want to look up and press Translate/Enter.&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for word connections (collocations)&lt;br /&gt;
Enter the word you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for words categorized by part-of-speech/semantic&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||Search for a headword in Hangul&lt;br /&gt;
Enter the hangul of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
When entering Hangul from the selection candidates, please press the symbol&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the Japanese reading of one kanji character you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords in the kanji of the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Reverse search for headwords by kanji in the search string&lt;br /&gt;
Enter the total number of strokes and press Translate/Decide to perform a combined search.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for the original form of the variant&lt;br /&gt;
Enter the spelling of the variant you want to check and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a wording in pinyin&lt;br /&gt;
Enter the pinyin of the headword you want to look up and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for prototype candidates from the spelling you enter&lt;br /&gt;
Enter the spelling of the word you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to learn&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the items you want to review&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the search function&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||Search for idioms&lt;br /&gt;
Enter the spelling of the idiom you want to look up and press Translate/Accept&lt;br /&gt;
Enter &amp;amp; between words&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for Japanese headwords&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for English headwords&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||Search for example sentences from Japanese keywords&lt;br /&gt;
Enter the Japanese keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
After selecting a keyword, search for example sentences by translation/decision&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Please enter the Japanese translation of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for English word headwords from the Japanese translation of the Genius English-Japanese Dictionary&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the readings of the parts that make up the kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from radicals&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from the total number of strokes&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for kanji from reading aloud or reading aloud&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the radical of the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Select the kanji you want to look up with ▲/▼/◀/ ▶ and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the search function&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select your favorite dictionary or text and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Use ▲/▼ to select your favorite dictionary and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the part reading of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the number of radical strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the total number of strokes of the kanji you want to check and press Translate/Enter.&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
Enter the phonetic reading of the kanji you want to check and press Translate/Confirm&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||Search for headwords from kanji&lt;br /&gt;
You can perform a combined search by entering parts/drawings/sounds, and pressing Translate/Decide&lt;br /&gt;
Please select the search method with ▲/▼/◀/ ▶&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the spelling of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword while leaving the screen you last displayed&lt;br /&gt;
Enter the reading of the headword you want to look up and press Translate/Accept&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored in the main unit and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the dictionary stored on the card and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Select the text stored in the main unit with ▲/▼&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||◀ Select a category with / ▶&lt;br /&gt;
Use ▲/▼ to select the text stored in the card.&lt;br /&gt;
Press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select a scene&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Enter the keyword of the example sentence you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||Search for example sentences by keyword&lt;br /&gt;
Please enter the keyword of the example sentence you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||Select the item you want to test&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||Select the item for dictation&lt;br /&gt;
Press ▲/▼ to move the reversal and press Translate/Accept&lt;br /&gt;
◀ You can change the category by pressing / ▶&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for headwords from Japanese translations&lt;br /&gt;
Enter the Japanese translation of the headword you want to look up and press Translate/Enter.&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
To change to another search mode, press ▲/▼&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by disease name&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword from the name of the disease&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Please enter the reading and kanji of the headword you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for a headword by food name ingredient&lt;br /&gt;
Enter the reading and kanji of the headword you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Please enter the reading and kanji of the keyword you want to look up.&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for headwords by keywords&lt;br /&gt;
Enter the reading and kanji of the keyword you want to look up and press Translate/Enter.&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Please enter the kanji you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for Chinese characters&lt;br /&gt;
Enter the kanji you want to look up and press Translate/Confirm&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||Search for idioms&lt;br /&gt;
Enter the reading of the idiom you want to look up and press Translate/Confirm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=291</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=291"/>
		<updated>2024-05-14T02:06:14Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added system image table 0 text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 0: Footer instructions ==&lt;br /&gt;
&lt;br /&gt;
These are technically stored as strings, not images, however the system calls for drawing from image lists are programmed to handle system image table 0 as a special case and will draw them as if they were an image as three lines of text with a horizontal line above.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Text!!Translation&lt;br /&gt;
|-&lt;br /&gt;
|0||小辞典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|1||小事典を選んで下さい&amp;lt;br&amp;gt;◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|2||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|3||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|4||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|5||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|6||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|7||辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|8||小辞典を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|9||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||&lt;br /&gt;
|-&lt;br /&gt;
|10||検索方法を選んで下さい&amp;lt;br&amp;gt;▲/▼/◀/▶を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||&lt;br /&gt;
|-&lt;br /&gt;
|11||項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと答えを表示します||&lt;br /&gt;
|-&lt;br /&gt;
|12||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|13||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|14||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|15||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|16||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|17||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|18||見出し語を後ろの言葉から検索します&amp;lt;br&amp;gt;調べたい言葉の後ろの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|19||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|20||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|21||慣用句を検索します&amp;lt;br&amp;gt;調べたい慣用句のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|22||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|23||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|24||人名の見出し語を検索します&amp;lt;br&amp;gt;調べたい人名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|25||季語の見出し語を検索します&amp;lt;br&amp;gt;調べたい季語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|26||地名の見出し語を検索します&amp;lt;br&amp;gt;調べたい地名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|27||作品名の見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|28||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|29||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|30||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|31||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|32||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|33||ものの名称から数え方を検索します&amp;lt;br&amp;gt;調べたいものの名称の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|34||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|35||助数詞･単位を検索します&amp;lt;br&amp;gt;調べたい助数詞･単位の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|36||略語を検索します&amp;lt;br&amp;gt;調べたい略語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|37||見出し語を月別で検索します&amp;lt;br&amp;gt;調べたい見出し語の月を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|38||ジャンル別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|39||部門別の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|40||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|41||経済新語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|42||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|43||経営用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|44||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45||株式用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|46||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|47||金融用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|48||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49||流通用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|50||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|51||保険用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|52||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|53||会計用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|54||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|55||広告用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|56||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|57||頭字語を検索します&amp;lt;br&amp;gt;調べたい頭字語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|58||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|59||カタカナ名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのカタカナ読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|60||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|61||原名からワインを検索します&amp;lt;br&amp;gt;調べたいワインのスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|62||類語を検索します&amp;lt;br&amp;gt;調べたい類語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|63||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;複数のキーワードを入力し候補を絞り込むことができます||&lt;br /&gt;
|-&lt;br /&gt;
|64||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|65||植物用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|66||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|67||園芸用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|68||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|69||昆虫用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|70||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|71||野鳥用語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|72||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|73||薬剤名から見出し語を検索します&amp;lt;br&amp;gt;調べたい薬剤名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|74||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力してください&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|75||抗がん薬から見出し語を検索します&amp;lt;br&amp;gt;調べたい抗がん薬の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|76||パック(包装)/本体のコードで薬を調べることができます&amp;lt;br&amp;gt;数字とアルファベットを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;数字かアルファベットのみで検索することもできます||&lt;br /&gt;
|-&lt;br /&gt;
|77||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|78||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|79||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|80||作品名から見出し語を検索します&amp;lt;br&amp;gt;調べたい作品名のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|81||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|82||監督名から見出し語を検索します&amp;lt;br&amp;gt;調べたい監督名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|83||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|84||出演者名から見出し語を検索します&amp;lt;br&amp;gt;調べたい出演者名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|85||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|86||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい病名の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|87||日本語キーワードから見出し語を検索します&amp;lt;br&amp;gt;日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|88||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|89||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|90||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|91||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|92||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|93||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|94||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||&lt;br /&gt;
|-&lt;br /&gt;
|95||上の句を検索します&amp;lt;br&amp;gt;調べたい上の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと下の句を表示します||&lt;br /&gt;
|-&lt;br /&gt;
|96||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||&lt;br /&gt;
|-&lt;br /&gt;
|97||下の句を検索します&amp;lt;br&amp;gt;調べたい下の句の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;本文表示中に訳/決定を押すと上の句を表示します||&lt;br /&gt;
|-&lt;br /&gt;
|98||小百科の見出し語を検索します&amp;lt;br&amp;gt;調べたい小百科の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|99||歳時記の見出し語を検索します&amp;lt;br&amp;gt;調べたい歳時記の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|100||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|101||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|102||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|103||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|104||スペリングがあいまいな語または変化形から原形を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|105||成句を検索します&amp;lt;br&amp;gt;調べたい成句の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|106||例文を検索します&amp;lt;br&amp;gt;調べたい例文の単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|107||単語の結びつき(コロケーション)を検索します&amp;lt;br&amp;gt;調べたい単語を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|108||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|109||品詞/語義で分類された単語を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|110||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|111||ハングルで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のハングルを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;ハングルを選択候補から入力する時は記号を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|112||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|113||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|114||ピンインで見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|115||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|116||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字一文字の日本語読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|117||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|118||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|119||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|120||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|121||検索文字列の漢字で見出し語を検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|122||検索文字列の漢字で見出し語を逆引き検索します&amp;lt;br&amp;gt;総画数を入力し訳/決定を押すと複合サーチが出来ます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|123||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|124||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|125||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|126||変化形の原形を検索します&amp;lt;br&amp;gt;調べたい変化形のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|127||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|128||ピンインで見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のピンインを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|129||入力したスペリングから原形候補を検索します&amp;lt;br&amp;gt;調べたい単語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|130||学習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||&lt;br /&gt;
|-&lt;br /&gt;
|131||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||&lt;br /&gt;
|-&lt;br /&gt;
|132||復習する項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||&lt;br /&gt;
|-&lt;br /&gt;
|133||検索機能を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|134||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;単語と単語の間には&amp;amp;を入力して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|135||日本語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|136||英語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|137||日本語キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文の日本語キーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;キーワードを選択した後に訳/決定で例文を検索します||&lt;br /&gt;
|-&lt;br /&gt;
|138||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|139||ジーニアス英和大辞典の和訳から英単語の見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の和訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|140||漢字を構成する部品の読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|141||部首から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|142||総画数から漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|143||音読みや訓読みから漢字を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|144||部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|145||▲/▼/◀/▶で調べたい漢字の部首を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|146||▲/▼/◀/▶で調べたい漢字を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|147||テストをする項目を選んで下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|148||検索機能を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||&lt;br /&gt;
|-&lt;br /&gt;
|149||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でお気に入りの辞書･テキストを選び訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|150||▲/▼でお気に入りの辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|151||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部品読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|152||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の部首画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|153||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の総画数を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|154||漢字から見出し語を検索します&amp;lt;br&amp;gt;調べたい漢字の音訓読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|155||漢字から見出し語を検索します&amp;lt;br&amp;gt;部品/総画/音訓を入力し訳/決定を押すと複合サーチができます&amp;lt;br&amp;gt;▲/▼/◀/▶で検索方法を選んで下さい||&lt;br /&gt;
|-&lt;br /&gt;
|156||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語のスペリングを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|157||前回表示した画面を残しながら見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|158||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|159||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されている辞書を選び訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|160||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼で本体に保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|161||◀/▶でカテゴリーを選んで下さい&amp;lt;br&amp;gt;▲/▼でカードに保存されているテキストを選び&amp;lt;br&amp;gt;訳/決定を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|162||場面を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|163||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|164||キーワードから例文を検索します&amp;lt;br&amp;gt;調べたい例文のキーワードを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|165||テストをする項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|166||ディクテーションの項目を選んで下さい&amp;lt;br&amp;gt;▲/▼を押して反転を移動させて訳/決定を押して下さい&amp;lt;br&amp;gt;◀/▶を押すとカテゴリーが変更できます||&lt;br /&gt;
|-&lt;br /&gt;
|167||日本語訳から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の日本語訳を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|168||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|169||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;他の検索モードに変更する時は▲/▼を押して下さい||&lt;br /&gt;
|-&lt;br /&gt;
|170||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|171||見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|172||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|173||病名から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|174||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|175||食品名成分から見出し語を検索します&amp;lt;br&amp;gt;調べたい見出し語の読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|176||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|177||キーワードから見出し語を検索します&amp;lt;br&amp;gt;調べたいキーワードの読み･漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|178||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|179||漢字を検索します&amp;lt;br&amp;gt;調べたい漢字を入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|180||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|181||熟語を検索します&amp;lt;br&amp;gt;調べたい熟語の読みを入力し訳/決定を押して下さい&amp;lt;br&amp;gt;||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=290</id>
		<title>System images</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=System_images&amp;diff=290"/>
		<updated>2024-05-14T01:48:38Z</updated>

		<summary type="html">&lt;p&gt;Benryves: Added stub system images content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Certain stock system images are made available for use in user add-ons and are listed in five tables; the address of the image table can be retrieved from its index with [[syscall 55]], and an image can then be drawn to the VRAM using [[syscall 4F]] or [[syscall 52]] and then copied to the screen with LCD with [[syscall 51]] or [[syscall 54]].&lt;br /&gt;
&lt;br /&gt;
== Table 1: Field labels ==&lt;br /&gt;
&lt;br /&gt;
These images are shown to the left of text input fields.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 1 00.png|none|System image 0 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 1 01.png|none|System image 1 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 1 02.png|none|System image 2 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 1 03.png|none|System image 3 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 1 04.png|none|System image 4 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 1 05.png|none|System image 5 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 1 06.png|none|System image 6 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 1 07.png|none|System image 7 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 1 08.png|none|System image 8 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 1 09.png|none|System image 9 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 1 10.png|none|System image 10 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 1 11.png|none|System image 11 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 1 12.png|none|System image 12 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 1 13.png|none|System image 13 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 1 14.png|none|System image 14 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 1 15.png|none|System image 15 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 1 16.png|none|System image 16 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 1 17.png|none|System image 17 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 1 18.png|none|System image 18 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 1 19.png|none|System image 19 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 1 20.png|none|System image 20 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 1 21.png|none|System image 21 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 1 22.png|none|System image 22 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 1 23.png|none|System image 23 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 1 24.png|none|System image 24 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 1 25.png|none|System image 25 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|26||[[File:Image 1 26.png|none|System image 26 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|27||[[File:Image 1 27.png|none|System image 27 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|28||[[File:Image 1 28.png|none|System image 28 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|29||[[File:Image 1 29.png|none|System image 29 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|30||[[File:Image 1 30.png|none|System image 30 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|31||[[File:Image 1 31.png|none|System image 31 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|32||[[File:Image 1 32.png|none|System image 32 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|33||[[File:Image 1 33.png|none|System image 33 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|34||[[File:Image 1 34.png|none|System image 34 in table 1]]||&lt;br /&gt;
|-&lt;br /&gt;
|35||[[File:Image 1 35.png|none|System image 35 in table 1]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 2: Dialog boxes ==&lt;br /&gt;
&lt;br /&gt;
These images are used to provide the background and border of dialog boxes.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 2 00.png|none|System image 0 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 2 01.png|none|System image 1 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 2 02.png|none|System image 2 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 2 03.png|none|System image 3 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 2 04.png|none|System image 4 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 2 05.png|none|System image 5 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 2 06.png|none|System image 6 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 2 07.png|none|System image 7 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 2 08.png|none|System image 8 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 2 09.png|none|System image 9 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 2 10.png|none|System image 10 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 2 11.png|none|System image 11 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 2 12.png|none|System image 12 in table 2]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 2 13.png|none|System image 13 in table 2]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 3: Status icons ==&lt;br /&gt;
&lt;br /&gt;
These images are usually used in the status bar at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 3 00.png|none|System image 0 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 3 01.png|none|System image 1 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 3 02.png|none|System image 2 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 3 03.png|none|System image 3 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 3 04.png|none|System image 4 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 3 05.png|none|System image 5 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 3 06.png|none|System image 6 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 3 07.png|none|System image 7 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 3 08.png|none|System image 8 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 3 09.png|none|System image 9 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 3 10.png|none|System image 10 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 3 11.png|none|System image 11 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 3 12.png|none|System image 12 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 3 13.png|none|System image 13 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 3 14.png|none|System image 14 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 3 15.png|none|System image 15 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 3 16.png|none|System image 16 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 3 17.png|none|System image 17 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 3 18.png|none|System image 18 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 3 19.png|none|System image 19 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 3 20.png|none|System image 20 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 3 21.png|none|System image 21 in table 3]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 3 22.png|none|System image 22 in table 3]]||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Table 4: Menu options ==&lt;br /&gt;
&lt;br /&gt;
The letters A-Z are used to label menu options.&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Image!!Image!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||[[File:Image 4 00.png|none|System image 0 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|1||[[File:Image 4 01.png|none|System image 1 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|2||[[File:Image 4 02.png|none|System image 2 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|3||[[File:Image 4 03.png|none|System image 3 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|4||[[File:Image 4 04.png|none|System image 4 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|5||[[File:Image 4 05.png|none|System image 5 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|6||[[File:Image 4 06.png|none|System image 6 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|7||[[File:Image 4 07.png|none|System image 7 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|8||[[File:Image 4 08.png|none|System image 8 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|9||[[File:Image 4 09.png|none|System image 9 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|10||[[File:Image 4 10.png|none|System image 10 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|11||[[File:Image 4 11.png|none|System image 11 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|12||[[File:Image 4 12.png|none|System image 12 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|13||[[File:Image 4 13.png|none|System image 13 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|14||[[File:Image 4 14.png|none|System image 14 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|15||[[File:Image 4 15.png|none|System image 15 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|16||[[File:Image 4 16.png|none|System image 16 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|17||[[File:Image 4 17.png|none|System image 17 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|18||[[File:Image 4 18.png|none|System image 18 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|19||[[File:Image 4 19.png|none|System image 19 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|20||[[File:Image 4 20.png|none|System image 20 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|21||[[File:Image 4 21.png|none|System image 21 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|22||[[File:Image 4 22.png|none|System image 22 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|23||[[File:Image 4 23.png|none|System image 23 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|24||[[File:Image 4 24.png|none|System image 24 in table 4]]||&lt;br /&gt;
|-&lt;br /&gt;
|25||[[File:Image 4 25.png|none|System image 25 in table 4]]||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
	<entry>
		<id>https://exword.benryves.com/mediawiki/index.php?title=File:Image_3_04.png&amp;diff=289</id>
		<title>File:Image 3 04.png</title>
		<link rel="alternate" type="text/html" href="https://exword.benryves.com/mediawiki/index.php?title=File:Image_3_04.png&amp;diff=289"/>
		<updated>2024-05-14T01:25:33Z</updated>

		<summary type="html">&lt;p&gt;Benryves: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:System images]]&lt;/div&gt;</summary>
		<author><name>Benryves</name></author>
	</entry>
</feed>