Skip to content

Commit 2c3974e

Browse files
authored
Merge pull request #114 from vim-jp/import-nsis
Import NSIS message files
2 parents 941574f + 77f1e9e commit 2c3974e

File tree

3 files changed

+568
-0
lines changed

3 files changed

+568
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ runtime/doc/\*-ja.UTF-8.1 |日本語manファイル(UTF-8)
1616
runtime/doc/\*.1 |原文manファイル
1717
runtime/tutor/tutor.ja.utf-8 |日本語チュートリアルファイル(UTF-8)
1818
runtime/tutor/tutor |原文チュートリアルファイル
19+
nsis/lang |Windows用インストーラーの翻訳ファイル
1920

2021
## ja.po 更新手順
2122

nsis/lang/english.nsi

Lines changed: 280 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,280 @@
1+
# vi:set ts=8 sts=4 sw=4 et fdm=marker:
2+
#
3+
# english.nsi: English language strings for gvim NSIS installer.
4+
#
5+
# Locale ID : 1033
6+
# fileencoding : UTF-8
7+
# Author : Guopeng Wen, Ken Takata
8+
9+
!insertmacro MUI_LANGUAGE "English"
10+
11+
12+
# Overwrite the default translation.
13+
# These strings should be always English. Otherwise dosinst.c fails.
14+
LangString ^SetupCaption ${LANG_ENGLISH} \
15+
"$(^Name) Setup"
16+
LangString ^UninstallCaption ${LANG_ENGLISH} \
17+
"$(^Name) Uninstall"
18+
19+
##############################################################################
20+
# MUI Configuration Strings {{{1
21+
##############################################################################
22+
23+
#LangString str_dest_folder ${LANG_ENGLISH} \
24+
# "Destination Folder (Must end with $\"vim$\")"
25+
26+
LangString str_show_readme ${LANG_ENGLISH} \
27+
"Show README after installation finish"
28+
29+
# Install types:
30+
LangString str_type_typical ${LANG_ENGLISH} \
31+
"Typical"
32+
33+
LangString str_type_minimal ${LANG_ENGLISH} \
34+
"Minimal"
35+
36+
LangString str_type_full ${LANG_ENGLISH} \
37+
"Full"
38+
39+
40+
##############################################################################
41+
# Section Titles & Description {{{1
42+
##############################################################################
43+
44+
LangString str_section_old_ver ${LANG_ENGLISH} \
45+
"Uninstall Existing Version(s)"
46+
LangString str_desc_old_ver ${LANG_ENGLISH} \
47+
"Uninstall existing Vim version(s) from your system."
48+
49+
LangString str_section_exe ${LANG_ENGLISH} \
50+
"Vim GUI and runtime files"
51+
LangString str_desc_exe ${LANG_ENGLISH} \
52+
"Vim GUI executables and runtime files. This component is required."
53+
54+
LangString str_section_console ${LANG_ENGLISH} \
55+
"Vim console program"
56+
LangString str_desc_console ${LANG_ENGLISH} \
57+
"Console version of Vim (vim.exe)."
58+
59+
LangString str_section_batch ${LANG_ENGLISH} \
60+
"Create .bat files"
61+
LangString str_desc_batch ${LANG_ENGLISH} \
62+
"Create .bat files for Vim variants in the Windows directory for \
63+
command line use."
64+
65+
LangString str_group_icons ${LANG_ENGLISH} \
66+
"Create icons for Vim"
67+
LangString str_desc_icons ${LANG_ENGLISH} \
68+
"Create icons for Vim at various locations to facilitate easy access."
69+
70+
LangString str_section_desktop ${LANG_ENGLISH} \
71+
"On the Desktop"
72+
LangString str_desc_desktop ${LANG_ENGLISH} \
73+
"Create icons for gVim executables on the desktop."
74+
75+
LangString str_section_start_menu ${LANG_ENGLISH} \
76+
"In the Start Menu Programs Folder"
77+
LangString str_desc_start_menu ${LANG_ENGLISH} \
78+
"Add Vim in the programs folder of the start menu."
79+
80+
#LangString str_section_quick_launch ${LANG_ENGLISH} \
81+
# "In the Quick Launch Bar"
82+
#LangString str_desc_quick_launch ${LANG_ENGLISH} \
83+
# "Add Vim shortcut in the quick launch bar."
84+
85+
LangString str_section_edit_with ${LANG_ENGLISH} \
86+
"Add Vim Context Menu"
87+
LangString str_desc_edit_with ${LANG_ENGLISH} \
88+
"Add Vim to the $\"Open With...$\" context menu list."
89+
90+
#LangString str_section_edit_with32 ${LANG_ENGLISH} \
91+
# "32-bit Version"
92+
#LangString str_desc_edit_with32 ${LANG_ENGLISH} \
93+
# "Add Vim to the $\"Open With...$\" context menu list \
94+
# for 32-bit applications."
95+
96+
#LangString str_section_edit_with64 ${LANG_ENGLISH} \
97+
# "64-bit Version"
98+
#LangString str_desc_edit_with64 ${LANG_ENGLISH} \
99+
# "Add Vim to the $\"Open With...$\" context menu list \
100+
# for 64-bit applications."
101+
102+
LangString str_section_vim_rc ${LANG_ENGLISH} \
103+
"Create Default Config"
104+
LangString str_desc_vim_rc ${LANG_ENGLISH} \
105+
"Create a default config file (_vimrc) if one does not already exist."
106+
107+
LangString str_group_plugin ${LANG_ENGLISH} \
108+
"Create Plugin Directories"
109+
LangString str_desc_plugin ${LANG_ENGLISH} \
110+
"Create plugin directories. Plugin directories allow extending Vim \
111+
by dropping a file into a directory."
112+
113+
LangString str_section_plugin_home ${LANG_ENGLISH} \
114+
"Private"
115+
LangString str_desc_plugin_home ${LANG_ENGLISH} \
116+
"Create plugin directories in HOME directory."
117+
118+
LangString str_section_plugin_vim ${LANG_ENGLISH} \
119+
"Shared"
120+
LangString str_desc_plugin_vim ${LANG_ENGLISH} \
121+
"Create plugin directories in Vim install directory, it is used for \
122+
everybody on the system."
123+
124+
LangString str_section_vis_vim ${LANG_ENGLISH} \
125+
"VisVim Extension"
126+
LangString str_desc_vis_vim ${LANG_ENGLISH} \
127+
"VisVim Extension for Microsoft Visual Studio integration."
128+
129+
LangString str_section_nls ${LANG_ENGLISH} \
130+
"Native Language Support"
131+
LangString str_desc_nls ${LANG_ENGLISH} \
132+
"Install files for native language support."
133+
134+
LangString str_unsection_register ${LANG_ENGLISH} \
135+
"Unregister Vim"
136+
LangString str_desc_unregister ${LANG_ENGLISH} \
137+
"Unregister Vim from the system."
138+
139+
LangString str_unsection_exe ${LANG_ENGLISH} \
140+
"Remove Vim Executables/Runtime Files"
141+
LangString str_desc_rm_exe ${LANG_ENGLISH} \
142+
"Remove all Vim executables and runtime files."
143+
144+
LangString str_ungroup_plugin ${LANG_ENGLISH} \
145+
"Remove plugin directories"
146+
LangString str_desc_rm_plugin ${LANG_ENGLISH} \
147+
"Remove the plugin directories if they are empty."
148+
149+
LangString str_unsection_plugin_home ${LANG_ENGLISH} \
150+
"Private"
151+
LangString str_desc_rm_plugin_home ${LANG_ENGLISH} \
152+
"Remove the plugin directories from HOME directory."
153+
154+
LangString str_unsection_plugin_vim ${LANG_ENGLISH} \
155+
"Shared"
156+
LangString str_desc_rm_plugin_vim ${LANG_ENGLISH} \
157+
"Remove the plugin directories from Vim install directory."
158+
159+
LangString str_unsection_rootdir ${LANG_ENGLISH} \
160+
"Remove the Vim root directory"
161+
LangString str_desc_rm_rootdir ${LANG_ENGLISH} \
162+
"Remove the Vim root directory. It contains your Vim configuration files!"
163+
164+
165+
##############################################################################
166+
# Messages {{{1
167+
##############################################################################
168+
169+
#LangString str_msg_too_many_ver ${LANG_ENGLISH} \
170+
# "Found $vim_old_ver_count Vim versions on your system.$\r$\n\
171+
# This installer can only handle ${VIM_MAX_OLD_VER} versions \
172+
# at most.$\r$\n\
173+
# Please remove some versions and start again."
174+
175+
#LangString str_msg_invalid_root ${LANG_ENGLISH} \
176+
# "Invalid install path: $vim_install_root!$\r$\n\
177+
# It should end with $\"vim$\"."
178+
179+
#LangString str_msg_bin_mismatch ${LANG_ENGLISH} \
180+
# "Binary path mismatch!$\r$\n$\r$\n\
181+
# Expect the binary path to be $\"$vim_bin_path$\",$\r$\n\
182+
# but system indicates the binary path is $\"$INSTDIR$\"."
183+
184+
#LangString str_msg_vim_running ${LANG_ENGLISH} \
185+
# "Vim is still running on your system.$\r$\n\
186+
# Please close all instances of Vim before you continue."
187+
188+
#LangString str_msg_register_ole ${LANG_ENGLISH} \
189+
# "Attempting to register Vim with OLE. \
190+
# There is no message indicates whether this works or not."
191+
192+
#LangString str_msg_unreg_ole ${LANG_ENGLISH} \
193+
# "Attempting to unregister Vim with OLE. \
194+
# There is no message indicates whether this works or not."
195+
196+
#LangString str_msg_rm_start ${LANG_ENGLISH} \
197+
# "Uninstalling the following version:"
198+
199+
#LangString str_msg_rm_fail ${LANG_ENGLISH} \
200+
# "Fail to uninstall the following version:"
201+
202+
#LangString str_msg_no_rm_key ${LANG_ENGLISH} \
203+
# "Cannot find uninstaller registry key."
204+
205+
#LangString str_msg_no_rm_reg ${LANG_ENGLISH} \
206+
# "Cannot find uninstaller from registry."
207+
208+
#LangString str_msg_no_rm_exe ${LANG_ENGLISH} \
209+
# "Cannot access uninstaller."
210+
211+
#LangString str_msg_rm_copy_fail ${LANG_ENGLISH} \
212+
# "Fail to copy uninstaller to temporary directory."
213+
214+
#LangString str_msg_rm_run_fail ${LANG_ENGLISH} \
215+
# "Fail to run uninstaller."
216+
217+
#LangString str_msg_abort_install ${LANG_ENGLISH} \
218+
# "Installer will abort."
219+
220+
LangString str_msg_install_fail ${LANG_ENGLISH} \
221+
"Installation failed. Better luck next time."
222+
223+
LangString str_msg_rm_exe_fail ${LANG_ENGLISH} \
224+
"Some files in $0 have not been deleted!$\r$\n\
225+
You must do it manually."
226+
227+
#LangString str_msg_rm_root_fail ${LANG_ENGLISH} \
228+
# "WARNING: Cannot remove $\"$vim_install_root$\", it is not empty!"
229+
230+
LangString str_msg_uninstalling ${LANG_ENGLISH} \
231+
"Uninstalling the old version..."
232+
233+
LangString str_msg_registering ${LANG_ENGLISH} \
234+
"Registering..."
235+
236+
LangString str_msg_unregistering ${LANG_ENGLISH} \
237+
"Unregistering..."
238+
239+
240+
##############################################################################
241+
# Dialog Box {{{1
242+
##############################################################################
243+
244+
LangString str_vimrc_page_title ${LANG_ENGLISH} \
245+
"Choose _vimrc settings"
246+
LangString str_vimrc_page_subtitle ${LANG_ENGLISH} \
247+
"Choose the settings for enhancement, keyboard and mouse."
248+
249+
LangString str_msg_compat_title ${LANG_ENGLISH} \
250+
" Vi / Vim behavior "
251+
LangString str_msg_compat_desc ${LANG_ENGLISH} \
252+
"&Compatibility and enhancements"
253+
LangString str_msg_compat_vi ${LANG_ENGLISH} \
254+
"Vi compatible"
255+
LangString str_msg_compat_vim ${LANG_ENGLISH} \
256+
"Vim original"
257+
LangString str_msg_compat_defaults ${LANG_ENGLISH} \
258+
"Vim with some enhancements (load defaults.vim)"
259+
LangString str_msg_compat_all ${LANG_ENGLISH} \
260+
"Vim with all enhancements (load vimrc_example.vim) (Default)"
261+
262+
LangString str_msg_keymap_title ${LANG_ENGLISH} \
263+
" Mappings "
264+
LangString str_msg_keymap_desc ${LANG_ENGLISH} \
265+
"&Remap a few keys for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc)"
266+
LangString str_msg_keymap_default ${LANG_ENGLISH} \
267+
"Do not remap keys (Default)"
268+
LangString str_msg_keymap_windows ${LANG_ENGLISH} \
269+
"Remap a few keys"
270+
271+
LangString str_msg_mouse_title ${LANG_ENGLISH} \
272+
" Mouse "
273+
LangString str_msg_mouse_desc ${LANG_ENGLISH} \
274+
"&Behavior of right and left buttons"
275+
LangString str_msg_mouse_default ${LANG_ENGLISH} \
276+
"Right: popup menu, Left: visual mode (Default)"
277+
LangString str_msg_mouse_windows ${LANG_ENGLISH} \
278+
"Right: popup menu, Left: select mode (Windows)"
279+
LangString str_msg_mouse_unix ${LANG_ENGLISH} \
280+
"Right: extends selection, Left: visual mode (Unix)"

0 commit comments

Comments
 (0)