xref: /reactos/dll/win32/hhctrl.ocx/lang/Ja.rc (revision d82185f1)
1/*
2 * HTML Help resources
3 * Japanese Language Support
4 *
5 * Copyright 2005 James Hawkins
6 * Copyright 2010 Akihiro Sagawa
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 */
22
23/* UTF-8 */
24#pragma code_page(65001)
25
26LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
27
28STRINGTABLE
29BEGIN
30#ifdef __REACTOS__
31    IDS_DEFTITLE     "HTML Help"
32#endif
33    IDS_CONTENTS     "目次(&C)"
34    IDS_INDEX        "索引(&N)"
35    IDS_SEARCH       "検索(&S)"
36    IDS_FAVORITES    "お気に入り(&I)"
37
38    IDS_HIDETABS     "Hide &Tabs"
39    IDS_SHOWTABS     "Show &Tabs"
40END
41
42STRINGTABLE
43BEGIN
44    IDTB_EXPAND      "表示"
45    IDTB_CONTRACT    "非表示"
46    IDTB_STOP        "中止"
47    IDTB_REFRESH     "更新"
48    IDTB_BACK        "戻る"
49    IDTB_HOME        "ホーム"
50    IDTB_SYNC        "同期"
51    IDTB_PRINT       "印刷"
52    IDTB_OPTIONS     "オプション"
53    IDTB_FORWARD     "進む"
54END
55
56MENU_POPUP MENU
57{
58    POPUP "" /* Options */
59    {
60        MENUITEM "", IDTB_EXPAND
61        MENUITEM "S&ync", IDTB_SYNC
62        MENUITEM "&Back", IDTB_BACK
63        MENUITEM "&Forward", IDTB_FORWARD
64        MENUITEM "&Home", IDTB_HOME
65        MENUITEM "&Stop", IDTB_STOP
66        MENUITEM "&Refresh", IDTB_REFRESH
67        MENUITEM "&Print...", IDTB_PRINT
68    }
69}
70
71MENU_WEBBROWSER MENU
72{
73    POPUP ""
74    {
75        MENUITEM "&Back", IDTB_BACK
76        MENUITEM "&Forward", IDTB_FORWARD
77        MENUITEM SEPARATOR
78        MENUITEM "Select &All", MIID_SELECTALL
79        MENUITEM SEPARATOR
80        MENUITEM "&View Source", MIID_VIEWSOURCE
81        MENUITEM SEPARATOR
82        MENUITEM "&Print...", IDTB_PRINT
83        MENUITEM "&Refresh", IDTB_REFRESH
84        MENUITEM SEPARATOR
85        MENUITEM "Proper&ties", MIID_PROPERTIES
86    }
87    POPUP ""
88    {
89        MENUITEM "Cu&t", MIID_CUT
90        MENUITEM "&Copy", MIID_COPY
91        MENUITEM "Paste", MIID_PASTE
92        MENUITEM "Select &All", MIID_SELECTALL
93        MENUITEM "&Print", IDTB_PRINT
94    }
95}
96