mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
Problem: the installer can be improved Solution: update the installer with the correct README and LICENSE files, improve the documentation, add a Makefile for the installer, update the Makefiles (RestorerZ) fixes: #16378 closes: #16378 Signed-off-by: RestorerZ <restorer@mail2k.ru> Signed-off-by: Christian Brabandt <cb@256bit.org>
288 lines
11 KiB
NSIS
288 lines
11 KiB
NSIS
# vi:set ts=8 sts=4 sw=4 et fdm=marker:
|
|
#
|
|
# english.nsi: English language strings for gvim NSIS installer.
|
|
#
|
|
# Locale ID : 1033
|
|
# Locale Name : en
|
|
# fileencoding : UTF-8
|
|
# Author : Guopeng Wen, Ken Takata
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
|
# Overwrite the default translation.
|
|
# These strings should be always English. Otherwise dosinst.c fails.
|
|
LangString ^SetupCaption ${LANG_ENGLISH} \
|
|
"$(^Name) Setup"
|
|
LangString ^UninstallCaption ${LANG_ENGLISH} \
|
|
"$(^Name) Uninstall"
|
|
|
|
##############################################################################
|
|
# License file for the license page {{{1
|
|
##############################################################################
|
|
|
|
LicenseLangString page_lic_file ${LANG_ENGLISH} "..\lang\LICENSE.nsis.txt"
|
|
|
|
##############################################################################
|
|
# README.txt file, which is opened after installation {{{1
|
|
##############################################################################
|
|
|
|
LangString vim_readme_file ${LANG_ENGLISH} "README.txt"
|
|
|
|
##############################################################################
|
|
# MUI Configuration Strings {{{1
|
|
##############################################################################
|
|
|
|
#LangString str_dest_folder ${LANG_ENGLISH} \
|
|
# "Destination Folder (Must end with $\"vim$\")"
|
|
|
|
LangString str_show_readme ${LANG_ENGLISH} \
|
|
"Show README after installation finished"
|
|
|
|
# Install types:
|
|
LangString str_type_typical ${LANG_ENGLISH} \
|
|
"Typical"
|
|
|
|
LangString str_type_minimal ${LANG_ENGLISH} \
|
|
"Minimal"
|
|
|
|
LangString str_type_full ${LANG_ENGLISH} \
|
|
"Full"
|
|
|
|
|
|
##############################################################################
|
|
# Section Titles & Description {{{1
|
|
##############################################################################
|
|
|
|
LangString str_section_old_ver ${LANG_ENGLISH} \
|
|
"Uninstall Existing Version(s)"
|
|
LangString str_desc_old_ver ${LANG_ENGLISH} \
|
|
"Uninstall existing Vim version(s) from your system."
|
|
|
|
LangString str_section_exe ${LANG_ENGLISH} \
|
|
"Vim GUI and runtime files"
|
|
LangString str_desc_exe ${LANG_ENGLISH} \
|
|
"Vim GUI executables and runtime files. This component is required."
|
|
|
|
LangString str_section_console ${LANG_ENGLISH} \
|
|
"Vim console program"
|
|
LangString str_desc_console ${LANG_ENGLISH} \
|
|
"Console version of Vim (vim.exe)."
|
|
|
|
LangString str_section_batch ${LANG_ENGLISH} \
|
|
"Create .bat files"
|
|
LangString str_desc_batch ${LANG_ENGLISH} \
|
|
"Create .bat files for Vim variants in the Windows directory for \
|
|
command line use."
|
|
|
|
LangString str_group_icons ${LANG_ENGLISH} \
|
|
"Create icons for Vim"
|
|
LangString str_desc_icons ${LANG_ENGLISH} \
|
|
"Create icons for Vim at various locations to facilitate easy access."
|
|
|
|
LangString str_section_desktop ${LANG_ENGLISH} \
|
|
"On the Desktop"
|
|
LangString str_desc_desktop ${LANG_ENGLISH} \
|
|
"Create icons for gVim executables on the desktop."
|
|
|
|
LangString str_section_start_menu ${LANG_ENGLISH} \
|
|
"In the Start Menu Programs Folder"
|
|
LangString str_desc_start_menu ${LANG_ENGLISH} \
|
|
"Add Vim in the programs folder of the start menu."
|
|
|
|
#LangString str_section_quick_launch ${LANG_ENGLISH} \
|
|
# "In the Quick Launch Bar"
|
|
#LangString str_desc_quick_launch ${LANG_ENGLISH} \
|
|
# "Add Vim shortcut in the quick launch bar."
|
|
|
|
LangString str_section_edit_with ${LANG_ENGLISH} \
|
|
"Add Vim Context Menu"
|
|
LangString str_desc_edit_with ${LANG_ENGLISH} \
|
|
"Add Vim to the $\"Open With...$\" context menu list."
|
|
|
|
#LangString str_section_edit_with32 ${LANG_ENGLISH} \
|
|
# "32-bit Version"
|
|
#LangString str_desc_edit_with32 ${LANG_ENGLISH} \
|
|
# "Add Vim to the $\"Open With...$\" context menu list \
|
|
# for 32-bit applications."
|
|
|
|
#LangString str_section_edit_with64 ${LANG_ENGLISH} \
|
|
# "64-bit Version"
|
|
#LangString str_desc_edit_with64 ${LANG_ENGLISH} \
|
|
# "Add Vim to the $\"Open With...$\" context menu list \
|
|
# for 64-bit applications."
|
|
|
|
LangString str_section_vim_rc ${LANG_ENGLISH} \
|
|
"Create Default Config"
|
|
LangString str_desc_vim_rc ${LANG_ENGLISH} \
|
|
"Create a default config file (_vimrc) if one does not already exist."
|
|
|
|
LangString str_group_plugin ${LANG_ENGLISH} \
|
|
"Create Plugin Directories"
|
|
LangString str_desc_plugin ${LANG_ENGLISH} \
|
|
"Create plugin directories. Plugin directories allow extending Vim \
|
|
by dropping a file into a directory."
|
|
|
|
LangString str_section_plugin_home ${LANG_ENGLISH} \
|
|
"Private"
|
|
LangString str_desc_plugin_home ${LANG_ENGLISH} \
|
|
"Create plugin directories in HOME directory."
|
|
|
|
LangString str_section_plugin_vim ${LANG_ENGLISH} \
|
|
"Shared"
|
|
LangString str_desc_plugin_vim ${LANG_ENGLISH} \
|
|
"Create plugin directories in Vim install directory, it is used for \
|
|
everybody on the system."
|
|
|
|
LangString str_section_nls ${LANG_ENGLISH} \
|
|
"Native Language Support"
|
|
LangString str_desc_nls ${LANG_ENGLISH} \
|
|
"Install files for native language support."
|
|
|
|
LangString str_unsection_register ${LANG_ENGLISH} \
|
|
"Unregister Vim"
|
|
LangString str_desc_unregister ${LANG_ENGLISH} \
|
|
"Unregister Vim from the system."
|
|
|
|
LangString str_unsection_exe ${LANG_ENGLISH} \
|
|
"Remove Vim Executables/Runtime Files"
|
|
LangString str_desc_rm_exe ${LANG_ENGLISH} \
|
|
"Remove all Vim executables and runtime files."
|
|
|
|
LangString str_ungroup_plugin ${LANG_ENGLISH} \
|
|
"Remove plugin directories"
|
|
LangString str_desc_rm_plugin ${LANG_ENGLISH} \
|
|
"Remove the plugin directories if they are empty."
|
|
|
|
LangString str_unsection_plugin_home ${LANG_ENGLISH} \
|
|
"Private"
|
|
LangString str_desc_rm_plugin_home ${LANG_ENGLISH} \
|
|
"Remove the plugin directories from HOME directory."
|
|
|
|
LangString str_unsection_plugin_vim ${LANG_ENGLISH} \
|
|
"Shared"
|
|
LangString str_desc_rm_plugin_vim ${LANG_ENGLISH} \
|
|
"Remove the plugin directories from Vim install directory."
|
|
|
|
LangString str_unsection_rootdir ${LANG_ENGLISH} \
|
|
"Remove the Vim root directory"
|
|
LangString str_desc_rm_rootdir ${LANG_ENGLISH} \
|
|
"Remove the Vim root directory. It contains your Vim configuration files!"
|
|
|
|
|
|
##############################################################################
|
|
# Messages {{{1
|
|
##############################################################################
|
|
|
|
#LangString str_msg_too_many_ver ${LANG_ENGLISH} \
|
|
# "Found $vim_old_ver_count Vim versions on your system.$\r$\n\
|
|
# This installer can only handle ${VIM_MAX_OLD_VER} versions \
|
|
# at most.$\r$\n\
|
|
# Please remove some versions and start again."
|
|
|
|
#LangString str_msg_invalid_root ${LANG_ENGLISH} \
|
|
# "Invalid install path: $vim_install_root!$\r$\n\
|
|
# It should end with $\"vim$\"."
|
|
|
|
#LangString str_msg_bin_mismatch ${LANG_ENGLISH} \
|
|
# "Binary path mismatch!$\r$\n$\r$\n\
|
|
# Expect the binary path to be $\"$vim_bin_path$\",$\r$\n\
|
|
# but system indicates the binary path is $\"$INSTDIR$\"."
|
|
|
|
#LangString str_msg_vim_running ${LANG_ENGLISH} \
|
|
# "Vim is still running on your system.$\r$\n\
|
|
# Please close all instances of Vim before you continue."
|
|
|
|
#LangString str_msg_register_ole ${LANG_ENGLISH} \
|
|
# "Attempting to register Vim with OLE. \
|
|
# There is no message indicates whether this works or not."
|
|
|
|
#LangString str_msg_unreg_ole ${LANG_ENGLISH} \
|
|
# "Attempting to unregister Vim with OLE. \
|
|
# There is no message indicates whether this works or not."
|
|
|
|
#LangString str_msg_rm_start ${LANG_ENGLISH} \
|
|
# "Uninstalling the following version:"
|
|
|
|
#LangString str_msg_rm_fail ${LANG_ENGLISH} \
|
|
# "Fail to uninstall the following version:"
|
|
|
|
#LangString str_msg_no_rm_key ${LANG_ENGLISH} \
|
|
# "Cannot find uninstaller registry key."
|
|
|
|
#LangString str_msg_no_rm_reg ${LANG_ENGLISH} \
|
|
# "Cannot find uninstaller from registry."
|
|
|
|
#LangString str_msg_no_rm_exe ${LANG_ENGLISH} \
|
|
# "Cannot access uninstaller."
|
|
|
|
#LangString str_msg_rm_copy_fail ${LANG_ENGLISH} \
|
|
# "Fail to copy uninstaller to temporary directory."
|
|
|
|
#LangString str_msg_rm_run_fail ${LANG_ENGLISH} \
|
|
# "Fail to run uninstaller."
|
|
|
|
#LangString str_msg_abort_install ${LANG_ENGLISH} \
|
|
# "Installer will abort."
|
|
|
|
LangString str_msg_install_fail ${LANG_ENGLISH} \
|
|
"Installation failed. Better luck next time."
|
|
|
|
LangString str_msg_rm_exe_fail ${LANG_ENGLISH} \
|
|
"Some files in $0 have not been deleted!$\r$\n\
|
|
You must do it manually."
|
|
|
|
#LangString str_msg_rm_root_fail ${LANG_ENGLISH} \
|
|
# "WARNING: Cannot remove $\"$vim_install_root$\", it is not empty!"
|
|
|
|
LangString str_msg_uninstalling ${LANG_ENGLISH} \
|
|
"Uninstalling the old version..."
|
|
|
|
LangString str_msg_registering ${LANG_ENGLISH} \
|
|
"Registering..."
|
|
|
|
LangString str_msg_unregistering ${LANG_ENGLISH} \
|
|
"Unregistering..."
|
|
|
|
|
|
##############################################################################
|
|
# Dialog Box {{{1
|
|
##############################################################################
|
|
|
|
LangString str_vimrc_page_title ${LANG_ENGLISH} \
|
|
"Choose _vimrc settings"
|
|
LangString str_vimrc_page_subtitle ${LANG_ENGLISH} \
|
|
"Choose the settings for enhancement, keyboard and mouse."
|
|
|
|
LangString str_msg_compat_title ${LANG_ENGLISH} \
|
|
" Vi / Vim behavior "
|
|
LangString str_msg_compat_desc ${LANG_ENGLISH} \
|
|
"&Compatibility and enhancements"
|
|
LangString str_msg_compat_vi ${LANG_ENGLISH} \
|
|
"Vi compatible"
|
|
LangString str_msg_compat_vim ${LANG_ENGLISH} \
|
|
"Vim original"
|
|
LangString str_msg_compat_defaults ${LANG_ENGLISH} \
|
|
"Vim with some enhancements (load defaults.vim)"
|
|
LangString str_msg_compat_all ${LANG_ENGLISH} \
|
|
"Vim with all enhancements (load vimrc_example.vim) (Default)"
|
|
|
|
LangString str_msg_keymap_title ${LANG_ENGLISH} \
|
|
" Mappings "
|
|
LangString str_msg_keymap_desc ${LANG_ENGLISH} \
|
|
"&Remap a few keys for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc)"
|
|
LangString str_msg_keymap_default ${LANG_ENGLISH} \
|
|
"Do not remap keys (Default)"
|
|
LangString str_msg_keymap_windows ${LANG_ENGLISH} \
|
|
"Remap a few keys"
|
|
|
|
LangString str_msg_mouse_title ${LANG_ENGLISH} \
|
|
" Mouse "
|
|
LangString str_msg_mouse_desc ${LANG_ENGLISH} \
|
|
"&Behavior of right and left buttons"
|
|
LangString str_msg_mouse_default ${LANG_ENGLISH} \
|
|
"Right: popup menu, Left: visual mode (Default)"
|
|
LangString str_msg_mouse_windows ${LANG_ENGLISH} \
|
|
"Right: popup menu, Left: select mode (Windows)"
|
|
LangString str_msg_mouse_unix ${LANG_ENGLISH} \
|
|
"Right: extends selection, Left: visual mode (Unix)"
|