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