Mercurial > vim
comparison nsis/lang/japanese.nsi @ 15213:c0eb9a74f73d v8.1.0616
patch 8.1.0616: NSIS installer is outdated
commit https://github.com/vim/vim/commit/af610b8e66a7fefcb8db07ee65686f51e1cb288a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 21 16:22:50 2018 +0100
patch 8.1.0616: NSIS installer is outdated
Problem: NSIS installer is outdated.
Solution: Use modern syntax, MUI2 and make it work better. Add translations.
(Ken Takata, closes #3501)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 21 Dec 2018 16:30:05 +0100 |
parents | |
children | f0f06837a699 |
comparison
equal
deleted
inserted
replaced
15212:5be035cf3d97 | 15213:c0eb9a74f73d |
---|---|
1 # vi:set ts=8 sts=4 sw=4 et fdm=marker: | |
2 # | |
3 # japanese.nsi: Japanese language strings for gvim NSIS installer. | |
4 # | |
5 # Locale ID : 1041 | |
6 # fileencoding : UTF-8 | |
7 # Author : Ken Takata | |
8 | |
9 !insertmacro MUI_LANGUAGE "Japanese" | |
10 | |
11 | |
12 # Overwrite the default translation. | |
13 # These string should be always English. Otherwise dosinst.c fails. | |
14 LangString ^SetupCaption ${LANG_JAPANESE} \ | |
15 "$(^Name) Setup" | |
16 LangString ^UninstallCaption ${LANG_JAPANESE} \ | |
17 "$(^Name) Uninstall" | |
18 | |
19 # Workarounds for NSIS Japanese translation. The messages are too long. | |
20 # These should be better to be fixed by the NSIS upstream. | |
21 LangString ^SpaceAvailable ${LANG_JAPANESE} \ | |
22 "利用可能なディスク容量:" | |
23 LangString ^SpaceRequired ${LANG_JAPANESE} \ | |
24 "必要なディスク容量:" | |
25 # Fix another NSIS Japanese translation. The access key was missing. | |
26 LangString ^InstallBtn ${LANG_JAPANESE} \ | |
27 "インストール(&I)" | |
28 | |
29 ############################################################################## | |
30 # MUI Configuration Strings {{{1 | |
31 ############################################################################## | |
32 | |
33 #LangString str_dest_folder ${LANG_JAPANESE} \ | |
34 # "Destination Folder (Must end with $\"vim$\")" | |
35 | |
36 LangString str_show_readme ${LANG_JAPANESE} \ | |
37 "インストール完了後に README を表示する" | |
38 | |
39 # Install types: | |
40 LangString str_type_typical ${LANG_JAPANESE} \ | |
41 "通常" | |
42 | |
43 LangString str_type_minimal ${LANG_JAPANESE} \ | |
44 "最小" | |
45 | |
46 LangString str_type_full ${LANG_JAPANESE} \ | |
47 "全て" | |
48 | |
49 | |
50 ############################################################################## | |
51 # Section Titles & Description {{{1 | |
52 ############################################################################## | |
53 | |
54 LangString str_section_old_ver ${LANG_JAPANESE} \ | |
55 "既存のバージョンをアンインストール" | |
56 LangString str_desc_old_ver ${LANG_JAPANESE} \ | |
57 "すでにインストールされている Vim をシステムから削除します。" | |
58 | |
59 LangString str_section_exe ${LANG_JAPANESE} \ | |
60 "Vim GUI とランタイムファイル" | |
61 LangString str_desc_exe ${LANG_JAPANESE} \ | |
62 "Vim GUI 実行ファイルとラインタイムファイル。このコンポーネントは必須です。" | |
63 | |
64 LangString str_section_console ${LANG_JAPANESE} \ | |
65 "Vim コンソールプログラム" | |
66 LangString str_desc_console ${LANG_JAPANESE} \ | |
67 "コンソール版の Vim (vim.exe)。" | |
68 | |
69 LangString str_section_batch ${LANG_JAPANESE} \ | |
70 ".bat ファイルを作成" | |
71 LangString str_desc_batch ${LANG_JAPANESE} \ | |
72 "コマンドラインから Vim と関連コマンドを実行できるように、.bat ファイルを Windows ディレクトリに作成します。" | |
73 | |
74 LangString str_group_icons ${LANG_JAPANESE} \ | |
75 "Vim のアイコンを作成" | |
76 LangString str_desc_icons ${LANG_JAPANESE} \ | |
77 "Vim を簡単に実行できるように、いくつかの場所にアイコンを作成します。" | |
78 | |
79 LangString str_section_desktop ${LANG_JAPANESE} \ | |
80 "デスクトップ上" | |
81 LangString str_desc_desktop ${LANG_JAPANESE} \ | |
82 "gVim 実行ファイルのアイコンをデスクトップ上に作成します。" | |
83 | |
84 LangString str_section_start_menu ${LANG_JAPANESE} \ | |
85 "スタートメニューのプログラムフォルダー上" | |
86 LangString str_desc_start_menu ${LANG_JAPANESE} \ | |
87 "Vim のアイコンをスタートメニューのプログラムフォルダー上に作成します。" | |
88 | |
89 #LangString str_section_quick_launch ${LANG_JAPANESE} \ | |
90 # "In the Quick Launch Bar" | |
91 #LangString str_desc_quick_launch ${LANG_JAPANESE} \ | |
92 # "Add Vim shortcut in the quick launch bar." | |
93 | |
94 LangString str_section_edit_with ${LANG_JAPANESE} \ | |
95 "Vim のコンテキストメニューを追加" | |
96 LangString str_desc_edit_with ${LANG_JAPANESE} \ | |
97 "$\"Vimで編集する$\" をコンテキストメニューに追加します。" | |
98 | |
99 #LangString str_section_edit_with32 ${LANG_JAPANESE} \ | |
100 # "32-bit Version" | |
101 #LangString str_desc_edit_with32 ${LANG_JAPANESE} \ | |
102 # "Add Vim to the $\"Open With...$\" context menu list \ | |
103 # for 32-bit applications." | |
104 | |
105 #LangString str_section_edit_with64 ${LANG_JAPANESE} \ | |
106 # "64-bit Version" | |
107 #LangString str_desc_edit_with64 ${LANG_JAPANESE} \ | |
108 # "Add Vim to the $\"Open With...$\" context menu list \ | |
109 # for 64-bit applications." | |
110 | |
111 LangString str_section_vim_rc ${LANG_JAPANESE} \ | |
112 "既定のコンフィグを作成" | |
113 LangString str_desc_vim_rc ${LANG_JAPANESE} \ | |
114 "もし無ければ、既定のコンフィグファイル (_vimrc) を作成します。" | |
115 | |
116 LangString str_group_plugin ${LANG_JAPANESE} \ | |
117 "プラグインディレクトリを作成" | |
118 LangString str_desc_plugin ${LANG_JAPANESE} \ | |
119 "プラグインディレクトリを作成します。そこにプラグインファイルを置くことで Vim を拡張することができます。" | |
120 | |
121 LangString str_section_plugin_home ${LANG_JAPANESE} \ | |
122 "個人用" | |
123 LangString str_desc_plugin_home ${LANG_JAPANESE} \ | |
124 "プラグインディレクトリをホームディレクトリに作成します。" | |
125 | |
126 LangString str_section_plugin_vim ${LANG_JAPANESE} \ | |
127 "共用" | |
128 LangString str_desc_plugin_vim ${LANG_JAPANESE} \ | |
129 "プラグインディレクトリを Vim のインストールディレクトリに作成します。システムの全員で共有されます。" | |
130 | |
131 LangString str_section_vis_vim ${LANG_JAPANESE} \ | |
132 "VisVim 拡張" | |
133 LangString str_desc_vis_vim ${LANG_JAPANESE} \ | |
134 "Microsoft Visual Studio 統合用の VisVim 拡張。" | |
135 | |
136 LangString str_section_nls ${LANG_JAPANESE} \ | |
137 "多言語サポート" | |
138 LangString str_desc_nls ${LANG_JAPANESE} \ | |
139 "多言語サポート用のファイルをインストールします。" | |
140 | |
141 LangString str_unsection_register ${LANG_JAPANESE} \ | |
142 "Vim を登録解除" | |
143 LangString str_desc_unregister ${LANG_JAPANESE} \ | |
144 "Vim をシステムから登録解除します。" | |
145 | |
146 LangString str_unsection_exe ${LANG_JAPANESE} \ | |
147 "Vim の実行ファイル/ランタイムファイルを削除" | |
148 LangString str_desc_rm_exe ${LANG_JAPANESE} \ | |
149 "全ての Vim の実行ファイルとランタイムファイルを削除します。" | |
150 | |
151 LangString str_ungroup_plugin ${LANG_JAPANESE} \ | |
152 "プラグインディレクトリを削除" | |
153 LangString str_desc_rm_plugin ${LANG_JAPANESE} \ | |
154 "プラグインディレクトリが空であればそれを削除します。" | |
155 | |
156 LangString str_unsection_plugin_home ${LANG_JAPANESE} \ | |
157 "個人用" | |
158 LangString str_desc_rm_plugin_home ${LANG_JAPANESE} \ | |
159 "プラグインディレクトリをホームディレクトリから削除します。" | |
160 | |
161 LangString str_unsection_plugin_vim ${LANG_JAPANESE} \ | |
162 "共用" | |
163 LangString str_desc_rm_plugin_vim ${LANG_JAPANESE} \ | |
164 "プラグインディレクトリを Vim のインストールディレクトリから削除します。" | |
165 | |
166 LangString str_unsection_rootdir ${LANG_JAPANESE} \ | |
167 "Vim のトップディレクトリを削除" | |
168 LangString str_desc_rm_rootdir ${LANG_JAPANESE} \ | |
169 "Vim のトップディレクトリを削除します。あなたの Vim の設定ファイルも含まれていることに注意してください!" | |
170 | |
171 | |
172 ############################################################################## | |
173 # Messages {{{1 | |
174 ############################################################################## | |
175 | |
176 #LangString str_msg_too_many_ver ${LANG_JAPANESE} \ | |
177 # "Found $vim_old_ver_count Vim versions on your system.$\r$\n\ | |
178 # This installer can only handle ${VIM_MAX_OLD_VER} versions \ | |
179 # at most.$\r$\n\ | |
180 # Please remove some versions and start again." | |
181 | |
182 #LangString str_msg_invalid_root ${LANG_JAPANESE} \ | |
183 # "Invalid install path: $vim_install_root!$\r$\n\ | |
184 # It should end with $\"vim$\"." | |
185 | |
186 #LangString str_msg_bin_mismatch ${LANG_JAPANESE} \ | |
187 # "Binary path mismatch!$\r$\n$\r$\n\ | |
188 # Expect the binary path to be $\"$vim_bin_path$\",$\r$\n\ | |
189 # but system indicates the binary path is $\"$INSTDIR$\"." | |
190 | |
191 #LangString str_msg_vim_running ${LANG_JAPANESE} \ | |
192 # "Vim is still running on your system.$\r$\n\ | |
193 # Please close all instances of Vim before you continue." | |
194 | |
195 #LangString str_msg_register_ole ${LANG_JAPANESE} \ | |
196 # "Attempting to register Vim with OLE. \ | |
197 # There is no message indicates whether this works or not." | |
198 | |
199 #LangString str_msg_unreg_ole ${LANG_JAPANESE} \ | |
200 # "Attempting to unregister Vim with OLE. \ | |
201 # There is no message indicates whether this works or not." | |
202 | |
203 #LangString str_msg_rm_start ${LANG_JAPANESE} \ | |
204 # "Uninstalling the following version:" | |
205 | |
206 #LangString str_msg_rm_fail ${LANG_JAPANESE} \ | |
207 # "Fail to uninstall the following version:" | |
208 | |
209 #LangString str_msg_no_rm_key ${LANG_JAPANESE} \ | |
210 # "Cannot find uninstaller registry key." | |
211 | |
212 #LangString str_msg_no_rm_reg ${LANG_JAPANESE} \ | |
213 # "Cannot find uninstaller from registry." | |
214 | |
215 #LangString str_msg_no_rm_exe ${LANG_JAPANESE} \ | |
216 # "Cannot access uninstaller." | |
217 | |
218 #LangString str_msg_rm_copy_fail ${LANG_JAPANESE} \ | |
219 # "Fail to copy uninstaller to temporary directory." | |
220 | |
221 #LangString str_msg_rm_run_fail ${LANG_JAPANESE} \ | |
222 # "Fail to run uninstaller." | |
223 | |
224 #LangString str_msg_abort_install ${LANG_JAPANESE} \ | |
225 # "Installer will abort." | |
226 | |
227 LangString str_msg_install_fail ${LANG_JAPANESE} \ | |
228 "インストールに失敗しました。次はうまくいくことを祈ります。" | |
229 | |
230 LangString str_msg_rm_exe_fail ${LANG_JAPANESE} \ | |
231 "$0 内の一部のファイルは削除できませんでした!$\r$\n\ | |
232 手動で削除する必要があります。" | |
233 | |
234 #LangString str_msg_rm_root_fail ${LANG_JAPANESE} \ | |
235 # "WARNING: Cannot remove $\"$vim_install_root$\", it is not empty!" | |
236 | |
237 LangString str_msg_uninstalling ${LANG_JAPANESE} \ | |
238 "古いバージョンをアンインストールしています..." | |
239 | |
240 LangString str_msg_registering ${LANG_JAPANESE} \ | |
241 "登録中..." | |
242 | |
243 LangString str_msg_unregistering ${LANG_JAPANESE} \ | |
244 "登録解除中..." | |
245 | |
246 | |
247 ############################################################################## | |
248 # Dialog Box {{{1 | |
249 ############################################################################## | |
250 | |
251 LangString str_vimrc_page_title ${LANG_JAPANESE} \ | |
252 "_vimrc の設定を選んでください" | |
253 LangString str_vimrc_page_subtitle ${LANG_JAPANESE} \ | |
254 "拡張やキーボード、マウスの設定を選んでください。" | |
255 | |
256 LangString str_msg_compat_title ${LANG_JAPANESE} \ | |
257 " Vi / Vim の動作 " | |
258 LangString str_msg_compat_desc ${LANG_JAPANESE} \ | |
259 "互換性と拡張(&C)" | |
260 LangString str_msg_compat_vi ${LANG_JAPANESE} \ | |
261 "Vi 互換" | |
262 LangString str_msg_compat_vim ${LANG_JAPANESE} \ | |
263 "Vim 独自" | |
264 LangString str_msg_compat_defaults ${LANG_JAPANESE} \ | |
265 "Vim 独自と多少の拡張 (defaults.vim を読み込み)" | |
266 LangString str_msg_compat_all ${LANG_JAPANESE} \ | |
267 "Vim 独自と全ての拡張 (vimrc_example.vim を読み込み) (既定)" | |
268 | |
269 LangString str_msg_keymap_title ${LANG_JAPANESE} \ | |
270 " マッピング " | |
271 LangString str_msg_keymap_desc ${LANG_JAPANESE} \ | |
272 "Windows用に一部のキーをリマップする(&R) (例: Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F など)" | |
273 LangString str_msg_keymap_default ${LANG_JAPANESE} \ | |
274 "リマップしない (既定)" | |
275 LangString str_msg_keymap_windows ${LANG_JAPANESE} \ | |
276 "リマップする" | |
277 | |
278 LangString str_msg_mouse_title ${LANG_JAPANESE} \ | |
279 " マウス " | |
280 LangString str_msg_mouse_desc ${LANG_JAPANESE} \ | |
281 "右ボタンと左ボタンの動作(&B)" | |
282 LangString str_msg_mouse_default ${LANG_JAPANESE} \ | |
283 "右:ポップアップメニュー、左:ビジュアルモード (既定)" | |
284 LangString str_msg_mouse_windows ${LANG_JAPANESE} \ | |
285 "右:ポップアップメニュー、左:選択モード (Windows)" | |
286 LangString str_msg_mouse_unix ${LANG_JAPANESE} \ | |
287 "右:選択を拡張、左:ビジュアルモード (Unix)" |