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