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 |
| 6 | # fileencoding : UTF-8 |
| 7 | # Author : Guopeng Wen, Ken Takata |
| 8 | |
| 9 | !insertmacro MUI_LANGUAGE "English" |
| 10 | |
| 11 | |
| 12 | # Overwrite the default translation. |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 13 | # These strings should be always English. Otherwise dosinst.c fails. |
Bram Moolenaar | af610b8 | 2018-12-21 16:22:50 +0100 | [diff] [blame] | 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} \ |
Bram Moolenaar | 4c29502 | 2021-05-02 17:19:11 +0200 | [diff] [blame] | 27 | "Show README after installation finished" |
Bram Moolenaar | af610b8 | 2018-12-21 16:22:50 +0100 | [diff] [blame] | 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 | |
Bram Moolenaar | af610b8 | 2018-12-21 16:22:50 +0100 | [diff] [blame] | 124 | LangString str_section_nls ${LANG_ENGLISH} \ |
| 125 | "Native Language Support" |
| 126 | LangString str_desc_nls ${LANG_ENGLISH} \ |
| 127 | "Install files for native language support." |
| 128 | |
| 129 | LangString str_unsection_register ${LANG_ENGLISH} \ |
| 130 | "Unregister Vim" |
| 131 | LangString str_desc_unregister ${LANG_ENGLISH} \ |
| 132 | "Unregister Vim from the system." |
| 133 | |
| 134 | LangString str_unsection_exe ${LANG_ENGLISH} \ |
| 135 | "Remove Vim Executables/Runtime Files" |
| 136 | LangString str_desc_rm_exe ${LANG_ENGLISH} \ |
| 137 | "Remove all Vim executables and runtime files." |
| 138 | |
| 139 | LangString str_ungroup_plugin ${LANG_ENGLISH} \ |
| 140 | "Remove plugin directories" |
| 141 | LangString str_desc_rm_plugin ${LANG_ENGLISH} \ |
| 142 | "Remove the plugin directories if they are empty." |
| 143 | |
| 144 | LangString str_unsection_plugin_home ${LANG_ENGLISH} \ |
| 145 | "Private" |
| 146 | LangString str_desc_rm_plugin_home ${LANG_ENGLISH} \ |
| 147 | "Remove the plugin directories from HOME directory." |
| 148 | |
| 149 | LangString str_unsection_plugin_vim ${LANG_ENGLISH} \ |
| 150 | "Shared" |
| 151 | LangString str_desc_rm_plugin_vim ${LANG_ENGLISH} \ |
| 152 | "Remove the plugin directories from Vim install directory." |
| 153 | |
| 154 | LangString str_unsection_rootdir ${LANG_ENGLISH} \ |
| 155 | "Remove the Vim root directory" |
| 156 | LangString 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 | |
| 215 | LangString str_msg_install_fail ${LANG_ENGLISH} \ |
| 216 | "Installation failed. Better luck next time." |
| 217 | |
| 218 | LangString 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 | |
| 225 | LangString str_msg_uninstalling ${LANG_ENGLISH} \ |
| 226 | "Uninstalling the old version..." |
| 227 | |
| 228 | LangString str_msg_registering ${LANG_ENGLISH} \ |
| 229 | "Registering..." |
| 230 | |
| 231 | LangString str_msg_unregistering ${LANG_ENGLISH} \ |
| 232 | "Unregistering..." |
| 233 | |
| 234 | |
| 235 | ############################################################################## |
| 236 | # Dialog Box {{{1 |
| 237 | ############################################################################## |
| 238 | |
| 239 | LangString str_vimrc_page_title ${LANG_ENGLISH} \ |
| 240 | "Choose _vimrc settings" |
| 241 | LangString str_vimrc_page_subtitle ${LANG_ENGLISH} \ |
| 242 | "Choose the settings for enhancement, keyboard and mouse." |
| 243 | |
| 244 | LangString str_msg_compat_title ${LANG_ENGLISH} \ |
| 245 | " Vi / Vim behavior " |
| 246 | LangString str_msg_compat_desc ${LANG_ENGLISH} \ |
| 247 | "&Compatibility and enhancements" |
| 248 | LangString str_msg_compat_vi ${LANG_ENGLISH} \ |
| 249 | "Vi compatible" |
| 250 | LangString str_msg_compat_vim ${LANG_ENGLISH} \ |
| 251 | "Vim original" |
| 252 | LangString str_msg_compat_defaults ${LANG_ENGLISH} \ |
| 253 | "Vim with some enhancements (load defaults.vim)" |
| 254 | LangString str_msg_compat_all ${LANG_ENGLISH} \ |
| 255 | "Vim with all enhancements (load vimrc_example.vim) (Default)" |
| 256 | |
| 257 | LangString str_msg_keymap_title ${LANG_ENGLISH} \ |
| 258 | " Mappings " |
| 259 | LangString str_msg_keymap_desc ${LANG_ENGLISH} \ |
| 260 | "&Remap a few keys for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc)" |
| 261 | LangString str_msg_keymap_default ${LANG_ENGLISH} \ |
| 262 | "Do not remap keys (Default)" |
| 263 | LangString str_msg_keymap_windows ${LANG_ENGLISH} \ |
| 264 | "Remap a few keys" |
| 265 | |
| 266 | LangString str_msg_mouse_title ${LANG_ENGLISH} \ |
| 267 | " Mouse " |
| 268 | LangString str_msg_mouse_desc ${LANG_ENGLISH} \ |
| 269 | "&Behavior of right and left buttons" |
| 270 | LangString str_msg_mouse_default ${LANG_ENGLISH} \ |
| 271 | "Right: popup menu, Left: visual mode (Default)" |
| 272 | LangString str_msg_mouse_windows ${LANG_ENGLISH} \ |
| 273 | "Right: popup menu, Left: select mode (Windows)" |
| 274 | LangString str_msg_mouse_unix ${LANG_ENGLISH} \ |
| 275 | "Right: extends selection, Left: visual mode (Unix)" |