view nsis/lang/english.nsi @ 34623:65e7eaf68f19 v9.1.0200

patch 9.1.0200: `gj`/`gk` not skipping over outer virtual text lines Commit: https://github.com/vim/vim/commit/b2d124c6258ff41e1f951bf39a4afc386d79ddc4 Author: Dylan Thacker-Smith <dylan.ah.smith@gmail.com> Date: Sun Mar 24 09:43:25 2024 +0100 patch 9.1.0200: `gj`/`gk` not skipping over outer virtual text lines Problem: `gj`/`gk` was updating the desired cursor virtual column to the outer virtual text, even though the actual cursor position was moved to not be on the virtual text, leading the need to do an extra `gj`/`gk` to move past each virtual text line. (rickhowe) Solution: Exclude the outer virtual text when getting the line length for moving the cursor with `gj`/`gk`, so that no extra movement is needed to skip over virtual text lines. (Dylan Thacker-Smith) fixes: #12028 related: #14262 Signed-off-by: Dylan Thacker-Smith <dylan.ah.smith@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 24 Mar 2024 10:00:05 +0100
parents 645722244c3f
children 879a61a9aa07
line wrap: on
line source

# vi:set ts=8 sts=4 sw=4 et fdm=marker:
#
# english.nsi: English language strings for gvim NSIS installer.
#
# Locale ID    : 1033
# 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"

##############################################################################
# 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)"