blob: e1be985e156844485085e6544a95e7ddcf9ea275 [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
Bram Moolenaaraf610b82018-12-21 16:22:50 +0100124LangString str_section_nls ${LANG_ENGLISH} \
125 "Native Language Support"
126LangString str_desc_nls ${LANG_ENGLISH} \
127 "Install files for native language support."
128
129LangString str_unsection_register ${LANG_ENGLISH} \
130 "Unregister Vim"
131LangString str_desc_unregister ${LANG_ENGLISH} \
132 "Unregister Vim from the system."
133
134LangString str_unsection_exe ${LANG_ENGLISH} \
135 "Remove Vim Executables/Runtime Files"
136LangString str_desc_rm_exe ${LANG_ENGLISH} \
137 "Remove all Vim executables and runtime files."
138
139LangString str_ungroup_plugin ${LANG_ENGLISH} \
140 "Remove plugin directories"
141LangString str_desc_rm_plugin ${LANG_ENGLISH} \
142 "Remove the plugin directories if they are empty."
143
144LangString str_unsection_plugin_home ${LANG_ENGLISH} \
145 "Private"
146LangString str_desc_rm_plugin_home ${LANG_ENGLISH} \
147 "Remove the plugin directories from HOME directory."
148
149LangString str_unsection_plugin_vim ${LANG_ENGLISH} \
150 "Shared"
151LangString str_desc_rm_plugin_vim ${LANG_ENGLISH} \
152 "Remove the plugin directories from Vim install directory."
153
154LangString str_unsection_rootdir ${LANG_ENGLISH} \
155 "Remove the Vim root directory"
156LangString str_desc_rm_rootdir ${LANG_ENGLISH} \
157 "Remove the Vim root directory. It contains your Vim configuration files!"
158
159
160##############################################################################
161# Messages {{{1
162##############################################################################
163
164#LangString str_msg_too_many_ver ${LANG_ENGLISH} \
165# "Found $vim_old_ver_count Vim versions on your system.$\r$\n\
166# This installer can only handle ${VIM_MAX_OLD_VER} versions \
167# at most.$\r$\n\
168# Please remove some versions and start again."
169
170#LangString str_msg_invalid_root ${LANG_ENGLISH} \
171# "Invalid install path: $vim_install_root!$\r$\n\
172# It should end with $\"vim$\"."
173
174#LangString str_msg_bin_mismatch ${LANG_ENGLISH} \
175# "Binary path mismatch!$\r$\n$\r$\n\
176# Expect the binary path to be $\"$vim_bin_path$\",$\r$\n\
177# but system indicates the binary path is $\"$INSTDIR$\"."
178
179#LangString str_msg_vim_running ${LANG_ENGLISH} \
180# "Vim is still running on your system.$\r$\n\
181# Please close all instances of Vim before you continue."
182
183#LangString str_msg_register_ole ${LANG_ENGLISH} \
184# "Attempting to register Vim with OLE. \
185# There is no message indicates whether this works or not."
186
187#LangString str_msg_unreg_ole ${LANG_ENGLISH} \
188# "Attempting to unregister Vim with OLE. \
189# There is no message indicates whether this works or not."
190
191#LangString str_msg_rm_start ${LANG_ENGLISH} \
192# "Uninstalling the following version:"
193
194#LangString str_msg_rm_fail ${LANG_ENGLISH} \
195# "Fail to uninstall the following version:"
196
197#LangString str_msg_no_rm_key ${LANG_ENGLISH} \
198# "Cannot find uninstaller registry key."
199
200#LangString str_msg_no_rm_reg ${LANG_ENGLISH} \
201# "Cannot find uninstaller from registry."
202
203#LangString str_msg_no_rm_exe ${LANG_ENGLISH} \
204# "Cannot access uninstaller."
205
206#LangString str_msg_rm_copy_fail ${LANG_ENGLISH} \
207# "Fail to copy uninstaller to temporary directory."
208
209#LangString str_msg_rm_run_fail ${LANG_ENGLISH} \
210# "Fail to run uninstaller."
211
212#LangString str_msg_abort_install ${LANG_ENGLISH} \
213# "Installer will abort."
214
215LangString str_msg_install_fail ${LANG_ENGLISH} \
216 "Installation failed. Better luck next time."
217
218LangString str_msg_rm_exe_fail ${LANG_ENGLISH} \
219 "Some files in $0 have not been deleted!$\r$\n\
220 You must do it manually."
221
222#LangString str_msg_rm_root_fail ${LANG_ENGLISH} \
223# "WARNING: Cannot remove $\"$vim_install_root$\", it is not empty!"
224
225LangString str_msg_uninstalling ${LANG_ENGLISH} \
226 "Uninstalling the old version..."
227
228LangString str_msg_registering ${LANG_ENGLISH} \
229 "Registering..."
230
231LangString str_msg_unregistering ${LANG_ENGLISH} \
232 "Unregistering..."
233
234
235##############################################################################
236# Dialog Box {{{1
237##############################################################################
238
239LangString str_vimrc_page_title ${LANG_ENGLISH} \
240 "Choose _vimrc settings"
241LangString str_vimrc_page_subtitle ${LANG_ENGLISH} \
242 "Choose the settings for enhancement, keyboard and mouse."
243
244LangString str_msg_compat_title ${LANG_ENGLISH} \
245 " Vi / Vim behavior "
246LangString str_msg_compat_desc ${LANG_ENGLISH} \
247 "&Compatibility and enhancements"
248LangString str_msg_compat_vi ${LANG_ENGLISH} \
249 "Vi compatible"
250LangString str_msg_compat_vim ${LANG_ENGLISH} \
251 "Vim original"
252LangString str_msg_compat_defaults ${LANG_ENGLISH} \
253 "Vim with some enhancements (load defaults.vim)"
254LangString str_msg_compat_all ${LANG_ENGLISH} \
255 "Vim with all enhancements (load vimrc_example.vim) (Default)"
256
257LangString str_msg_keymap_title ${LANG_ENGLISH} \
258 " Mappings "
259LangString str_msg_keymap_desc ${LANG_ENGLISH} \
260 "&Remap a few keys for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc)"
261LangString str_msg_keymap_default ${LANG_ENGLISH} \
262 "Do not remap keys (Default)"
263LangString str_msg_keymap_windows ${LANG_ENGLISH} \
264 "Remap a few keys"
265
266LangString str_msg_mouse_title ${LANG_ENGLISH} \
267 " Mouse "
268LangString str_msg_mouse_desc ${LANG_ENGLISH} \
269 "&Behavior of right and left buttons"
270LangString str_msg_mouse_default ${LANG_ENGLISH} \
271 "Right: popup menu, Left: visual mode (Default)"
272LangString str_msg_mouse_windows ${LANG_ENGLISH} \
273 "Right: popup menu, Left: select mode (Windows)"
274LangString str_msg_mouse_unix ${LANG_ENGLISH} \
275 "Right: extends selection, Left: visual mode (Unix)"