blob: 218c70a47c9d7908fc8198c142d46bd95e428074 [file] [log] [blame]
Bram Moolenaaraf610b82018-12-21 16:22:50 +01001# 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.
Bram Moolenaard09091d2019-01-17 16:07:22 +010013# These strings should be always English. Otherwise dosinst.c fails.
Bram Moolenaaraf610b82018-12-21 16:22:50 +010014LangString ^SetupCaption ${LANG_ENGLISH} \
15 "$(^Name) Setup"
16LangString ^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
26LangString str_show_readme ${LANG_ENGLISH} \
Bram Moolenaar4c295022021-05-02 17:19:11 +020027 "Show README after installation finished"
Bram Moolenaaraf610b82018-12-21 16:22:50 +010028
29# Install types:
30LangString str_type_typical ${LANG_ENGLISH} \
31 "Typical"
32
33LangString str_type_minimal ${LANG_ENGLISH} \
34 "Minimal"
35
36LangString str_type_full ${LANG_ENGLISH} \
37 "Full"
38
39
40##############################################################################
41# Section Titles & Description {{{1
42##############################################################################
43
44LangString str_section_old_ver ${LANG_ENGLISH} \
45 "Uninstall Existing Version(s)"
46LangString str_desc_old_ver ${LANG_ENGLISH} \
47 "Uninstall existing Vim version(s) from your system."
48
49LangString str_section_exe ${LANG_ENGLISH} \
50 "Vim GUI and runtime files"
51LangString str_desc_exe ${LANG_ENGLISH} \
52 "Vim GUI executables and runtime files. This component is required."
53
54LangString str_section_console ${LANG_ENGLISH} \
55 "Vim console program"
56LangString str_desc_console ${LANG_ENGLISH} \
57 "Console version of Vim (vim.exe)."
58
59LangString str_section_batch ${LANG_ENGLISH} \
60 "Create .bat files"
61LangString str_desc_batch ${LANG_ENGLISH} \
62 "Create .bat files for Vim variants in the Windows directory for \
63 command line use."
64
65LangString str_group_icons ${LANG_ENGLISH} \
66 "Create icons for Vim"
67LangString str_desc_icons ${LANG_ENGLISH} \
68 "Create icons for Vim at various locations to facilitate easy access."
69
70LangString str_section_desktop ${LANG_ENGLISH} \
71 "On the Desktop"
72LangString str_desc_desktop ${LANG_ENGLISH} \
73 "Create icons for gVim executables on the desktop."
74
75LangString str_section_start_menu ${LANG_ENGLISH} \
76 "In the Start Menu Programs Folder"
77LangString 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
85LangString str_section_edit_with ${LANG_ENGLISH} \
86 "Add Vim Context Menu"
87LangString 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
102LangString str_section_vim_rc ${LANG_ENGLISH} \
103 "Create Default Config"
104LangString str_desc_vim_rc ${LANG_ENGLISH} \
105 "Create a default config file (_vimrc) if one does not already exist."
106
107LangString str_group_plugin ${LANG_ENGLISH} \
108 "Create Plugin Directories"
109LangString str_desc_plugin ${LANG_ENGLISH} \
110 "Create plugin directories. Plugin directories allow extending Vim \
111 by dropping a file into a directory."
112
113LangString str_section_plugin_home ${LANG_ENGLISH} \
114 "Private"
115LangString str_desc_plugin_home ${LANG_ENGLISH} \
116 "Create plugin directories in HOME directory."
117
118LangString str_section_plugin_vim ${LANG_ENGLISH} \
119 "Shared"
120LangString str_desc_plugin_vim ${LANG_ENGLISH} \
121 "Create plugin directories in Vim install directory, it is used for \
122 everybody on the system."
123
124LangString str_section_vis_vim ${LANG_ENGLISH} \
125 "VisVim Extension"
126LangString str_desc_vis_vim ${LANG_ENGLISH} \
127 "VisVim Extension for Microsoft Visual Studio integration."
128
129LangString str_section_nls ${LANG_ENGLISH} \
130 "Native Language Support"
131LangString str_desc_nls ${LANG_ENGLISH} \
132 "Install files for native language support."
133
134LangString str_unsection_register ${LANG_ENGLISH} \
135 "Unregister Vim"
136LangString str_desc_unregister ${LANG_ENGLISH} \
137 "Unregister Vim from the system."
138
139LangString str_unsection_exe ${LANG_ENGLISH} \
140 "Remove Vim Executables/Runtime Files"
141LangString str_desc_rm_exe ${LANG_ENGLISH} \
142 "Remove all Vim executables and runtime files."
143
144LangString str_ungroup_plugin ${LANG_ENGLISH} \
145 "Remove plugin directories"
146LangString str_desc_rm_plugin ${LANG_ENGLISH} \
147 "Remove the plugin directories if they are empty."
148
149LangString str_unsection_plugin_home ${LANG_ENGLISH} \
150 "Private"
151LangString str_desc_rm_plugin_home ${LANG_ENGLISH} \
152 "Remove the plugin directories from HOME directory."
153
154LangString str_unsection_plugin_vim ${LANG_ENGLISH} \
155 "Shared"
156LangString str_desc_rm_plugin_vim ${LANG_ENGLISH} \
157 "Remove the plugin directories from Vim install directory."
158
159LangString str_unsection_rootdir ${LANG_ENGLISH} \
160 "Remove the Vim root directory"
161LangString 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
220LangString str_msg_install_fail ${LANG_ENGLISH} \
221 "Installation failed. Better luck next time."
222
223LangString 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
230LangString str_msg_uninstalling ${LANG_ENGLISH} \
231 "Uninstalling the old version..."
232
233LangString str_msg_registering ${LANG_ENGLISH} \
234 "Registering..."
235
236LangString str_msg_unregistering ${LANG_ENGLISH} \
237 "Unregistering..."
238
239
240##############################################################################
241# Dialog Box {{{1
242##############################################################################
243
244LangString str_vimrc_page_title ${LANG_ENGLISH} \
245 "Choose _vimrc settings"
246LangString str_vimrc_page_subtitle ${LANG_ENGLISH} \
247 "Choose the settings for enhancement, keyboard and mouse."
248
249LangString str_msg_compat_title ${LANG_ENGLISH} \
250 " Vi / Vim behavior "
251LangString str_msg_compat_desc ${LANG_ENGLISH} \
252 "&Compatibility and enhancements"
253LangString str_msg_compat_vi ${LANG_ENGLISH} \
254 "Vi compatible"
255LangString str_msg_compat_vim ${LANG_ENGLISH} \
256 "Vim original"
257LangString str_msg_compat_defaults ${LANG_ENGLISH} \
258 "Vim with some enhancements (load defaults.vim)"
259LangString str_msg_compat_all ${LANG_ENGLISH} \
260 "Vim with all enhancements (load vimrc_example.vim) (Default)"
261
262LangString str_msg_keymap_title ${LANG_ENGLISH} \
263 " Mappings "
264LangString str_msg_keymap_desc ${LANG_ENGLISH} \
265 "&Remap a few keys for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc)"
266LangString str_msg_keymap_default ${LANG_ENGLISH} \
267 "Do not remap keys (Default)"
268LangString str_msg_keymap_windows ${LANG_ENGLISH} \
269 "Remap a few keys"
270
271LangString str_msg_mouse_title ${LANG_ENGLISH} \
272 " Mouse "
273LangString str_msg_mouse_desc ${LANG_ENGLISH} \
274 "&Behavior of right and left buttons"
275LangString str_msg_mouse_default ${LANG_ENGLISH} \
276 "Right: popup menu, Left: visual mode (Default)"
277LangString str_msg_mouse_windows ${LANG_ENGLISH} \
278 "Right: popup menu, Left: select mode (Windows)"
279LangString str_msg_mouse_unix ${LANG_ENGLISH} \
280 "Right: extends selection, Left: visual mode (Unix)"