diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-29 09:32:54 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-10-29 09:37:13 +0100 |
commit | 884ac811355fc4e16bb73798bc5329f41499e3cd (patch) | |
tree | 8377004ecd027eed631f3977c8f7750a8e4ec361 | |
parent | 93a85bdd8a9f5086eb205a3235ec17acc0bf498c (diff) | |
download | rneovim-884ac811355fc4e16bb73798bc5329f41499e3cd.tar.gz rneovim-884ac811355fc4e16bb73798bc5329f41499e3cd.tar.bz2 rneovim-884ac811355fc4e16bb73798bc5329f41499e3cd.zip |
vim-patch:675e8d6adb88
Update runtime files.
https://github.com/vim/vim/commit/675e8d6adb88d5b38087870dfda51c0205070741
---
NA:
vim-patch:ffd112edc6a8
Fix missing patch number.
https://github.com/vim/vim/commit/ffd112edc6a8f72b66c06207bff4431f6aec7b6f
32 files changed, 139 insertions, 128 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index bacd0e7cf1..045dd9a32a 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -4,7 +4,7 @@ VIM REFERENCE MANUAL by Bram Moolenaar -Automatic commands *autocmd* *autocommand* +Automatic commands *autocmd* *autocommand* *autocommand* For a basic explanation, see section |40.3| in the user manual. diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 7a5b90c88d..a3d43dab11 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6612,6 +6612,8 @@ searchpair({start}, {middle}, {end} [, {flags} [, {skip} When {skip} is omitted or empty, every match is accepted. When evaluating {skip} causes an error the search is aborted and -1 returned. + {skip} can be a string, a lambda, a funcref or a partial. + Anything else makes the function fail. For {stopline} and {timeout} see |search()|. diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt index fa770b4a61..2de667ef1c 100644 --- a/runtime/doc/quickref.txt +++ b/runtime/doc/quickref.txt @@ -908,6 +908,8 @@ Short explanation of each option: *option-list* 'undoreload' 'ur' max nr of lines to save for undo on a buffer reload 'updatecount' 'uc' after this many characters flush swap file 'updatetime' 'ut' after this many milliseconds flush swap file +'varsofttabstop' 'vsts' a list of number of spaces when typing <Tab> +'vartabstop' 'vts' a list of number of spaces for <Tab>s 'verbose' 'vbs' give informative messages 'verbosefile' 'vfile' file to write messages in 'viewdir' 'vdir' directory where to store files with :mkview diff --git a/runtime/syntax/php.vim b/runtime/syntax/php.vim index 6a81b8c631..5a7a2c3794 100644 --- a/runtime/syntax/php.vim +++ b/runtime/syntax/php.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: php PHP 3/4/5/7 " Maintainer: Jason Woofenden <jason@jasonwoof.com> -" Last Change: Jul 14, 2017 +" Last Change: Jun 20, 2018 " URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD " Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com> " Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> @@ -446,7 +446,7 @@ if exists("php_folding") && php_folding==1 syn match phpException "\(\s\|^\)catch\(\s\+.*}\)\@=" contained syn match phpException "\(\s\|^\)finally\(\s\+.*}\)\@=" contained - set foldmethod=syntax + setlocal foldmethod=syntax syn region phpFoldHtmlInside matchgroup=Delimiter start="?>" end="<?\(php\)\=" contained transparent contains=@htmlTop syn region phpFoldFunction matchgroup=Storageclass start="^\z(\s*\)\(abstract\s\+\|final\s\+\|private\s\+\|protected\s\+\|public\s\+\|static\s\+\)*function\s\([^};]*$\)\@="rs=e-9 matchgroup=Delimiter end="^\z1}" contains=@phpClFunction,phpFoldHtmlInside,phpFCKeyword contained transparent fold extend syn region phpFoldFunction matchgroup=Define start="^function\s\([^};]*$\)\@=" matchgroup=Delimiter end="^}" contains=@phpClFunction,phpFoldHtmlInside contained transparent fold extend @@ -460,7 +460,7 @@ else syn keyword phpException catch throw try finally contained syn keyword phpStorageClass final global private protected public static contained if exists("php_folding") && php_folding==2 - set foldmethod=syntax + setlocal foldmethod=syntax syn region phpFoldHtmlInside matchgroup=Delimiter start="?>" end="<?\(php\)\=" contained transparent contains=@htmlTop syn region phpParent matchgroup=Delimiter start="{" end="}" contained contains=@phpClFunction,phpFoldHtmlInside transparent fold endif diff --git a/runtime/syntax/sqloracle.vim b/runtime/syntax/sqloracle.vim index 3989b1f997..0907b48f0e 100644 --- a/runtime/syntax/sqloracle.vim +++ b/runtime/syntax/sqloracle.vim @@ -4,13 +4,15 @@ " Repository: https://github.com/chrisbra/vim-sqloracle-syntax " License: Vim " Previous Maintainer: Paul Moore -" Last Change: 2018 May 13 +" Last Change: 2018 June 24 " Changes: " 02.04.2016: Support for when keyword " 03.04.2016: Support for join related keywords " 22.07.2016: Support Oracle Q-Quote-Syntax " 25.07.2016: Support for Oracle N'-Quote syntax +" 22.06.2018: Remove skip part for sqlString (do not escape strings) +" (https://web.archive.org/web/20150922065035/https://mariadb.com/kb/en/sql-99/character-string-literals/) if exists("b:current_syntax") finish @@ -50,12 +52,14 @@ syn keyword sqlStatement truncate " next ones are contained, so folding works. syn keyword sqlStatement create update alter select insert contained -syn keyword sqlType boolean char character date float integer long -syn keyword sqlType mlslabel number raw rowid varchar varchar2 varray +syn keyword sqlType bfile blob boolean char character clob date datetime +syn keyword sqlType dec decimal float int integer long mlslabel nchar +syn keyword sqlType nclob number numeric nvarchar2 precision raw rowid +syn keyword sqlType smallint real timestamp urowid varchar varchar2 varray " Strings: -syn region sqlString matchgroup=Quote start=+n\?"+ skip=+\\\\\|\\"+ end=+"+ -syn region sqlString matchgroup=Quote start=+n\?'+ skip=+\\\\\|\\'+ end=+'+ +syn region sqlString matchgroup=Quote start=+n\?"+ end=+"+ +syn region sqlString matchgroup=Quote start=+n\?'+ end=+'+ syn region sqlString matchgroup=Quote start=+n\?q'\z([^[(<{]\)+ end=+\z1'+ syn region sqlString matchgroup=Quote start=+n\?q'<+ end=+>'+ syn region sqlString matchgroup=Quote start=+n\?q'{+ end=+}'+ @@ -68,6 +72,7 @@ syn match sqlNumber "-\=\<\d*\.\=[0-9_]\>" " Comments: syn region sqlComment start="/\*" end="\*/" contains=sqlTodo,@Spell fold syn match sqlComment "--.*$" contains=sqlTodo,@Spell +syn match sqlComment "^rem.*$" contains=sqlTodo,@Spell " Setup Folding: " this is a hack, to get certain statements folded. @@ -129,15 +134,15 @@ syn keyword sqlFunction xmlparse xmlpatch xmlpi xmlquery xmlroot xmlsequence xml syn keyword sqlTodo TODO FIXME XXX DEBUG NOTE contained " Define the default highlighting. -hi def link Quote Special -hi def link sqlComment Comment -hi def link sqlFunction Function -hi def link sqlKeyword sqlSpecial -hi def link sqlNumber Number -hi def link sqlOperator sqlStatement -hi def link sqlSpecial Special +hi def link Quote Special +hi def link sqlComment Comment +hi def link sqlFunction Function +hi def link sqlKeyword sqlSpecial +hi def link sqlNumber Number +hi def link sqlOperator sqlStatement +hi def link sqlSpecial Special hi def link sqlStatement Statement -hi def link sqlString String +hi def link sqlString String hi def link sqlType Type hi def link sqlTodo Todo diff --git a/src/nvim/po/af.po b/src/nvim/po/af.po index f42ad04409..61ad72d7e0 100644 --- a/src/nvim/po/af.po +++ b/src/nvim/po/af.po @@ -2362,7 +2362,7 @@ msgstr "E216: Geen sodanige groep of gebeurtenis nie: %s" #. Highlight title msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Outobevele ---" @@ -2381,7 +2381,7 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: outobevele te diep genes" #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s outobevele vir \"%s\"" #, c-format @@ -4353,7 +4353,7 @@ msgstr "E55: Onpaar %s)" msgid "E66: \\z( not allowed here" msgstr "E66: \\z( nie hier toegelaat nie" -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 e.a. nie hier toegelaat nie" #, c-format diff --git a/src/nvim/po/ca.po b/src/nvim/po/ca.po index 43798400f6..7e83cb08ed 100644 --- a/src/nvim/po/ca.po +++ b/src/nvim/po/ca.po @@ -3409,7 +3409,7 @@ msgstr "-q [ftxerrors] edita el fitxer on hi ha el primer error" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/cs.cp1250.po b/src/nvim/po/cs.cp1250.po index 112e949815..26bdbe8c45 100644 --- a/src/nvim/po/cs.cp1250.po +++ b/src/nvim/po/cs.cp1250.po @@ -2535,7 +2535,7 @@ msgstr "E216: Udlost %s neexistuje" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Automatick pkazy ---" @@ -2559,7 +2559,7 @@ msgstr "E218: vnoen automatickho pkazu pli hlubok" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s automatick pkazy pro \"%s\"" #: ../fileio.c:7149 @@ -3486,7 +3486,7 @@ msgstr "-q [chybov soubor] editovat soubor na mst vskytu prvn chyby" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/cs.po b/src/nvim/po/cs.po index 3839230df2..986d6753a8 100644 --- a/src/nvim/po/cs.po +++ b/src/nvim/po/cs.po @@ -2535,7 +2535,7 @@ msgstr "E216: Udlost %s neexistuje" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Automatick pkazy ---" @@ -2559,7 +2559,7 @@ msgstr "E218: vnoen automatickho pkazu pli hlubok" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s automatick pkazy pro \"%s\"" #: ../fileio.c:7149 @@ -3486,7 +3486,7 @@ msgstr "-q [chybov soubor] editovat soubor na mst vskytu prvn chyby" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/de.po b/src/nvim/po/de.po index 4ef47f9fd2..a6ba8476d8 100644 --- a/src/nvim/po/de.po +++ b/src/nvim/po/de.po @@ -1918,7 +1918,7 @@ msgstr "E216: Keine solche Gruppe oder Ereignis: %s" #: ../fileio.c:5993 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autokommandos ---" @@ -1942,7 +1942,7 @@ msgstr "E218: Autokommandos zu tief verschachtelt" #: ../fileio.c:7042 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Autokommandos fr \"%s\"" #: ../fileio.c:7048 @@ -2835,7 +2835,7 @@ msgstr "-q [Fehler-Datei] ffne Datei mit erstem Fehler" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/eo.po b/src/nvim/po/eo.po index 3283e167a2..52592d0767 100644 --- a/src/nvim/po/eo.po +++ b/src/nvim/po/eo.po @@ -2002,7 +2002,7 @@ msgstr "E216: Ne ekzistas tia grupo aŭ evento: %s" msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Aŭto-Komandoj ---" @@ -2021,7 +2021,7 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: aŭtokomando tro ingita" #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Aŭtokomandoj por \"%s\"" #, c-format @@ -2922,7 +2922,7 @@ msgstr "-q [erardosiero] redakti dosieron kun unua eraro" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" @@ -4733,7 +4733,7 @@ msgid "E66: \\z( not allowed here" msgstr "E66: \\z( estas nepermesebla tie" # DP: vidu http://www.thefreedictionary.com/et+al. -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 kaj aliaj estas nepermeseblaj tie" #, c-format @@ -4844,10 +4844,10 @@ msgstr "E869: (NFA) Nekonata operatoro '\\@%c'" msgid "E870: (NFA regexp) Error reading repetition limits" msgstr "E870: (NFS-regulesprimo) Eraro dum legado de limoj de ripeto" -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" +msgid "E871: (NFA regexp) Can't have a multi follow a multi" msgstr "" "E871: (NFA-regulesprimo) Ne povas havi mult-selekton tuj post alia mult-" -"selekto!" +"selekto" msgid "E872: (NFA regexp) Too many '('" msgstr "E872: (NFA-regulesprimo) tro da '('" @@ -4858,7 +4858,7 @@ msgstr "E879: (NFA-regulesprimo) tro da \\z(" msgid "E873: (NFA regexp) proper termination error" msgstr "E873: (NFA-regulesprimo) propra end-eraro" -msgid "E874: (NFA) Could not pop the stack !" +msgid "E874: (NFA) Could not pop the stack!" msgstr "E874: (NFA) Ne povis elpreni de la staplo!" msgid "" diff --git a/src/nvim/po/es.po b/src/nvim/po/es.po index 27edb1600d..f30e8780f9 100644 --- a/src/nvim/po/es.po +++ b/src/nvim/po/es.po @@ -2525,7 +2525,7 @@ msgstr "E216: No existe tal grupo o evento: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Auto-órdenes ---" @@ -2549,7 +2549,7 @@ msgstr "E218: La auto-orden se anida en exceso" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Auto-órdenes para \"%s\"" #: ../fileio.c:7149 @@ -3464,7 +3464,7 @@ msgstr "-q [fich. err.] Editar el archivo con el primer error" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/fi.po b/src/nvim/po/fi.po index a131548c82..4612988c95 100644 --- a/src/nvim/po/fi.po +++ b/src/nvim/po/fi.po @@ -2473,7 +2473,7 @@ msgstr "E216: Ryhmää tai eventtiä ei ole: %s" msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autocommandit ---" @@ -2492,7 +2492,7 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: liian monta tasoa autocommandissa" #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Autocommands kohteelle %s" #, c-format @@ -4420,7 +4420,7 @@ msgstr "E55: Pariton %s)" msgid "E66: \\z( not allowed here" msgstr "E66: \\z( ei ole sallittu tässä" -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 jne. ei ole sallittu tässä" #, c-format diff --git a/src/nvim/po/fr.po b/src/nvim/po/fr.po index 2dc5bca7b1..31b30d0454 100644 --- a/src/nvim/po/fr.po +++ b/src/nvim/po/fr.po @@ -2216,7 +2216,7 @@ msgstr "E216: Aucun vnement ou groupe %s" msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Auto-commandes ---" @@ -2236,7 +2236,7 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: autocommandes trop imbriques" #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "Autocommandes %s pour \"%s\"" #, c-format @@ -3163,11 +3163,11 @@ msgstr "-q [fichErr] ouvrir l'endroit de la premire erreur" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" -"utilisation :" +"Utilisation :" msgid " vim [arguments] " msgstr " vim [args] " @@ -5003,7 +5003,7 @@ msgstr "E55: %s) fermante non ouverte" msgid "E66: \\z( not allowed here" msgstr "E66: \\z( n'est pas autoris ici" -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 et co. ne sont pas autoriss ici" #, c-format @@ -5117,8 +5117,8 @@ msgstr "E869: (NFA) Oprateur inconnu '\\@%c'" msgid "E870: (NFA regexp) Error reading repetition limits" msgstr "E870: (regexp NFA) Erreur la lecture des limites de rptition" -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (regexp NFA) Un multi ne peut pas suivre un multi !" +msgid "E871: (NFA regexp) Can't have a multi follow a multi" +msgstr "E871: (regexp NFA) Un multi ne peut pas suivre un multi" msgid "E872: (NFA regexp) Too many '('" msgstr "E872: (regexp NFA) Trop de '('" @@ -5129,7 +5129,7 @@ msgstr "E879: (regexp NFA) Trop de \\z(" msgid "E873: (NFA regexp) proper termination error" msgstr "E873: (NFA regexp) erreur de terminaison" -msgid "E874: (NFA) Could not pop the stack !" +msgid "E874: (NFA) Could not pop the stack!" msgstr "E874: (NFA) Impossible de dpiler !" msgid "" diff --git a/src/nvim/po/ga.po b/src/nvim/po/ga.po index 6c66d3d71a..617b805eb8 100644 --- a/src/nvim/po/ga.po +++ b/src/nvim/po/ga.po @@ -2021,7 +2021,7 @@ msgstr "E216: Nl a leithid de ghrpa n theagmhas: %s" #. Highlight title msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Uathorduithe ---" @@ -2040,7 +2040,7 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: uathord neadaithe rdhomhain" #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Uathorduithe do \"%s\"" #, c-format @@ -2953,7 +2953,7 @@ msgstr "-q [comhadearr] cuir comhad leis an chad earrid in eagar" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" @@ -4797,8 +4797,8 @@ msgstr "E55: %s) corr" msgid "E66: \\z( not allowed here" msgstr "E66: n cheadatear \\z( anseo" -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: n cheadatear \\z1 et al. anseo" +msgid "E67: \\z1 - \\z9 not allowed here" +msgstr "E67: n cheadatear \\z1 - \\z9 anseo" #, c-format msgid "E69: Missing ] after %s%%[" @@ -4911,8 +4911,8 @@ msgid "E870: (NFA regexp) Error reading repetition limits" msgstr "E870: (slonn NFA) Earrid agus teorainneacha athdhanta lamh" #. Can't have a multi follow a multi. -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (slonn NFA) N cheadatear ilchodach tar is ilchodach!" +msgid "E871: (NFA regexp) Can't have a multi follow a multi" +msgstr "E871: (slonn NFA) N cheadatear ilchodach tar is ilchodach" #. Too many `(' msgid "E872: (NFA regexp) Too many '('" @@ -4924,7 +4924,7 @@ msgstr "E879: (slonn NFA) An iomarca \\z(" msgid "E873: (NFA regexp) proper termination error" msgstr "E873: (slonn NFA) crochn neamhoirinach" -msgid "E874: (NFA) Could not pop the stack !" +msgid "E874: (NFA) Could not pop the stack!" msgstr "E874: (NFA) Norbh fhidir an chruach a phlobadh!" msgid "" diff --git a/src/nvim/po/it.po b/src/nvim/po/it.po index 652f0c7676..4eafa8ca2a 100644 --- a/src/nvim/po/it.po +++ b/src/nvim/po/it.po @@ -1,6 +1,8 @@ -# Italian Translation for Vim +# Italian translation for Vim # # FIRST AUTHOR Antonio Colombo <azc100@gmail.com>, 2000 +# Vlad Sandrini <vlad.gently@gmail.com> +# Luciano Montanaro <mikelima@cirulla.net> # # Ogni commento benvenuto... # Every remark is very welcome... @@ -3449,7 +3451,7 @@ msgstr "-q [errorfile] apri file col primo errore" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/ja.euc-jp.po b/src/nvim/po/ja.euc-jp.po index a260fc98d8..1595eab926 100644 --- a/src/nvim/po/ja.euc-jp.po +++ b/src/nvim/po/ja.euc-jp.po @@ -2021,10 +2021,10 @@ msgstr "E216: Τ褦ʥ롼פ⤷ϥ٥ȤϤޤ: %s" msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" #, c-format msgid "E680: <buffer=%d>: invalid buffer number " @@ -2040,8 +2040,8 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: autocommandҤޤ" #, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" +msgstr "%s Autocommands for \"%s\"" #, c-format msgid "Executing %s" @@ -2938,7 +2938,7 @@ msgstr "-q [errorfile] ǽΥ顼Խ" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" @@ -4732,7 +4732,7 @@ msgid "E66: \\z( not allowed here" msgstr "E66: \\z( ϥǤϵĤƤޤ" # -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 ¾ϥǤϵĤƤޤ" # @@ -4853,8 +4853,8 @@ msgstr "E869: (NFA) ̤ΤΥڥ졼Ǥ: '\\@%c'" msgid "E870: (NFA regexp) Error reading repetition limits" msgstr "E870: (NFA ɽ) ֤²ɹ˥顼" -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (NFA ɽ) ֤ θ ֤ ϤǤޤ!" +msgid "E871: (NFA regexp) Can't have a multi follow a multi" +msgstr "E871: (NFA ɽ) ֤ θ ֤ ϤǤޤ" msgid "E872: (NFA regexp) Too many '('" msgstr "E872: (NFA ɽ) '(' ¿ޤ" @@ -4865,7 +4865,7 @@ msgstr "E879: (NFA ɽ) \\z( ¿ޤ" msgid "E873: (NFA regexp) proper termination error" msgstr "E873: (NFA ɽ) ü椬ޤ" -msgid "E874: (NFA) Could not pop the stack !" +msgid "E874: (NFA) Could not pop the stack!" msgstr "E874: (NFA) åݥåפǤޤ!" msgid "" diff --git a/src/nvim/po/ja.po b/src/nvim/po/ja.po index 9db7db9886..969e71b8f0 100644 --- a/src/nvim/po/ja.po +++ b/src/nvim/po/ja.po @@ -2021,10 +2021,10 @@ msgstr "E216: そのようなグループもしくはイベントはありませ msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" #, c-format msgid "E680: <buffer=%d>: invalid buffer number " @@ -2040,8 +2040,8 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: autocommandの入れ子が深過ぎます" #, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" +msgstr "%s Autocommands for \"%s\"" #, c-format msgid "Executing %s" @@ -2938,7 +2938,7 @@ msgstr "-q [errorfile] 最初のエラーで編集する" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" @@ -4732,7 +4732,7 @@ msgid "E66: \\z( not allowed here" msgstr "E66: \\z( はココでは許可されていません" # -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 その他はココでは許可されていません" # @@ -4853,8 +4853,8 @@ msgstr "E869: (NFA) 未知のオペレータです: '\\@%c'" msgid "E870: (NFA regexp) Error reading repetition limits" msgstr "E870: (NFA 正規表現) 繰り返しの制限回数を読込中にエラー" -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (NFA 正規表現) 繰り返し の後に 繰り返し はできません!" +msgid "E871: (NFA regexp) Can't have a multi follow a multi" +msgstr "E871: (NFA 正規表現) 繰り返し の後に 繰り返し はできません" msgid "E872: (NFA regexp) Too many '('" msgstr "E872: (NFA 正規表現) '(' が多過ぎます" @@ -4865,7 +4865,7 @@ msgstr "E879: (NFA 正規表現) \\z( が多過ぎます" msgid "E873: (NFA regexp) proper termination error" msgstr "E873: (NFA 正規表現) 終端記号がありません" -msgid "E874: (NFA) Could not pop the stack !" +msgid "E874: (NFA) Could not pop the stack!" msgstr "E874: (NFA) スタックをポップできません!" msgid "" diff --git a/src/nvim/po/ko.UTF-8.po b/src/nvim/po/ko.UTF-8.po index 192d850c00..e048cb99b2 100644 --- a/src/nvim/po/ko.UTF-8.po +++ b/src/nvim/po/ko.UTF-8.po @@ -2460,7 +2460,7 @@ msgstr "E216: 그런 그룹이나 이벤트 없음: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- 자동-명령 ---" @@ -3378,7 +3378,7 @@ msgstr "-q [에러파일] 첫 번째 에러가 난 파일 고치기" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/nb.po b/src/nvim/po/nb.po index e0cacc4a6b..b99e8ce465 100644 --- a/src/nvim/po/nb.po +++ b/src/nvim/po/nb.po @@ -2483,7 +2483,7 @@ msgstr "E216: Gruppen eller handlingen finnes ikke: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autokommandoer ---" @@ -2507,7 +2507,7 @@ msgstr "E218: Nsting av autokommandoer for dyp" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Autokommandoer for \"%s\"" #: ../fileio.c:7149 @@ -3392,7 +3392,7 @@ msgstr "-q [feilfil] rediger fil med frste feil" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/nl.po b/src/nvim/po/nl.po index f2877903f2..56bcd94e79 100644 --- a/src/nvim/po/nl.po +++ b/src/nvim/po/nl.po @@ -2471,10 +2471,10 @@ msgstr "E216: onbekende groep of 'event': %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" #: ../fileio.c:6293 #, c-format @@ -2495,8 +2495,8 @@ msgstr "E218: hierarchie van aanroepen autocommands te diep" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s 'Auto commands' voor \"%s\"" +msgid "%s Autocommands for \"%s\"" +msgstr "%s 'Autocommands' voor \"%s\"" #: ../fileio.c:7149 #, c-format @@ -3389,7 +3389,7 @@ msgstr "-q [foutbestand] bewerk bestand dat eerste fout bevat" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/no.po b/src/nvim/po/no.po index e0cacc4a6b..b99e8ce465 100644 --- a/src/nvim/po/no.po +++ b/src/nvim/po/no.po @@ -2483,7 +2483,7 @@ msgstr "E216: Gruppen eller handlingen finnes ikke: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autokommandoer ---" @@ -2507,7 +2507,7 @@ msgstr "E218: Nsting av autokommandoer for dyp" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Autokommandoer for \"%s\"" #: ../fileio.c:7149 @@ -3392,7 +3392,7 @@ msgstr "-q [feilfil] rediger fil med frste feil" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/pl.UTF-8.po b/src/nvim/po/pl.UTF-8.po index 33ac034b1f..28e486df18 100644 --- a/src/nvim/po/pl.UTF-8.po +++ b/src/nvim/po/pl.UTF-8.po @@ -14,7 +14,7 @@ msgstr "" "Last-Translator: Mikolaj Machowski <mikmach@wp.pl>\n" "Language: pl\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " @@ -2441,7 +2441,7 @@ msgstr "E216: Nie ma takiej grupy lub wydarzenia: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autokomendy ---" @@ -2465,7 +2465,7 @@ msgstr "E218: zbyt głębokie zagnieżdżenie autokomend" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Autokomend dla \"%s\"" #: ../fileio.c:7149 @@ -3358,7 +3358,7 @@ msgstr "-q [errorfile] edytuj plik, zawierający pierwszy błąd" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/pt_BR.po b/src/nvim/po/pt_BR.po index e14ac7068e..543f0bce27 100644 --- a/src/nvim/po/pt_BR.po +++ b/src/nvim/po/pt_BR.po @@ -3212,7 +3212,7 @@ msgstr "E216: Grupo ou evento inexistente: %s" #: ../fileio.c:6002 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autocomandos ---" @@ -6169,7 +6169,7 @@ msgstr "-q [arq.erro] editar arquivo e abrir no primeiro erro" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/ru.po b/src/nvim/po/ru.po index 832b256754..e5be489d72 100644 --- a/src/nvim/po/ru.po +++ b/src/nvim/po/ru.po @@ -2458,7 +2458,7 @@ msgstr "E216: Несуществующая группа или событие: % #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Автокоманды ---" @@ -2482,7 +2482,7 @@ msgstr "E218: слишком глубоко вложенные автокома #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Автокоманды для \"%s\"" #: ../fileio.c:7149 @@ -3382,7 +3382,7 @@ msgstr "" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/sk.cp1250.po b/src/nvim/po/sk.cp1250.po index 6f459415ee..74b8e1039c 100644 --- a/src/nvim/po/sk.cp1250.po +++ b/src/nvim/po/sk.cp1250.po @@ -2472,7 +2472,7 @@ msgstr "E216: Udalos alebo skupina %s neexistuje" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Automatick prkazy ---" @@ -2496,7 +2496,7 @@ msgstr "E218: vnorenia automatickho prkazu s prli hlbok" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Automatick prkazy pre \"%s\"" #: ../fileio.c:7149 @@ -3390,7 +3390,7 @@ msgstr "-q [chybov sbor] upravi sbor na mieste vskytu prvej chyby" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/sk.po b/src/nvim/po/sk.po index d2e682de74..d3f954f6d8 100644 --- a/src/nvim/po/sk.po +++ b/src/nvim/po/sk.po @@ -2472,7 +2472,7 @@ msgstr "E216: Udalos alebo skupina %s neexistuje" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Automatick prkazy ---" @@ -2496,7 +2496,7 @@ msgstr "E218: vnorenia automatickho prkazu s prli hlbok" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Automatick prkazy pre \"%s\"" #: ../fileio.c:7149 @@ -3390,7 +3390,7 @@ msgstr "-q [chybov sbor] upravi sbor na mieste vskytu prvej chyby" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/sr.po b/src/nvim/po/sr.po index 4f9aeaa847..b4433efe36 100644 --- a/src/nvim/po/sr.po +++ b/src/nvim/po/sr.po @@ -2024,7 +2024,7 @@ msgstr "E216: Нема такве групе или догађаја: %s" msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Ауто-Команде ---" @@ -2043,7 +2043,7 @@ msgid "E218: autocommand nesting too deep" msgstr "E218: Угњшждавање аутокоманде је сувише дубоко" #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Ауто команде за \"%s\"" #, c-format @@ -2958,7 +2958,7 @@ msgstr "-q [дат.грешке] уређуј датотеку са прво msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" @@ -4764,7 +4764,7 @@ msgstr "E55: Неупарена %s)" msgid "E66: \\z( not allowed here" msgstr "E66: \\z( овде није дозвољено" -msgid "E67: \\z1 et al. not allowed here" +msgid "E67: \\z1 - \\z9 not allowed here" msgstr "E67: \\z1 и остали онвде нису дозвољени" #, c-format @@ -4878,8 +4878,8 @@ msgstr "E869: (NFA) Непознати оператор '\\@%c'" msgid "E870: (NFA regexp) Error reading repetition limits" msgstr "E870: (NFA regexp) Грешка при читању граница понављања" -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (NFA regexp) Мулти не може следи иза мулти !" +msgid "E871: (NFA regexp) Can't have a multi follow a multi" +msgstr "E871: (NFA regexp) Мулти не може следи иза мулти" msgid "E872: (NFA regexp) Too many '('" msgstr "E872: (NFA regexp) Превише '('" @@ -4890,7 +4890,7 @@ msgstr "E879: (NFA regexp) Превише \\z(" msgid "E873: (NFA regexp) proper termination error" msgstr "E873: (NFA regexp) грешка правилне терминације" -msgid "E874: (NFA) Could not pop the stack !" +msgid "E874: (NFA) Could not pop the stack!" msgstr "E874: (NFA) Скидање са стека није успело !" msgid "" diff --git a/src/nvim/po/sv.po b/src/nvim/po/sv.po index fe87629a0e..4770db15de 100644 --- a/src/nvim/po/sv.po +++ b/src/nvim/po/sv.po @@ -818,7 +818,7 @@ msgstr "E216: Ingen sdan grupp eller hndelse: %s" #: ../fileio.c:5994 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Autokommandon ---" @@ -842,7 +842,7 @@ msgstr "E218: autokommando nstlad fr djupt" #: ../fileio.c:7043 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s Autokommandon fr \"%s\"" #: ../fileio.c:7049 @@ -5675,7 +5675,7 @@ msgstr "-q [felfil] redigera fil med frsta fel" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/vi.po b/src/nvim/po/vi.po index 456e640a80..7dbf19c263 100644 --- a/src/nvim/po/vi.po +++ b/src/nvim/po/vi.po @@ -2500,7 +2500,7 @@ msgstr "E216: Nhóm hoặc sự kiện không có thật: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- Câu lệnh tự động ---" @@ -2524,7 +2524,7 @@ msgstr "E218: câu lệnh tự động xếp lồng vào nhau quá xâu" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s câu lệnh tự động cho \"%s\"" #: ../fileio.c:7149 @@ -3419,7 +3419,7 @@ msgstr "-q [tập tin lỗi] soạn thảo tập tin với lỗi đầu tiên" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/zh_CN.UTF-8.po b/src/nvim/po/zh_CN.UTF-8.po index b88d611557..76204a43a8 100644 --- a/src/nvim/po/zh_CN.UTF-8.po +++ b/src/nvim/po/zh_CN.UTF-8.po @@ -2461,7 +2461,7 @@ msgstr "E216: 无此组或事件: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" "--- 自动命令 ---" @@ -2485,7 +2485,7 @@ msgstr "E218: 自动命令嵌套层数过深" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" +msgid "%s Autocommands for \"%s\"" msgstr "%s 自动命令 \"%s\"" #: ../fileio.c:7149 @@ -3367,7 +3367,7 @@ msgstr "-q [errorfile] 编辑第一个出错处的文件" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" diff --git a/src/nvim/po/zh_TW.UTF-8.po b/src/nvim/po/zh_TW.UTF-8.po index af8c3fff48..3c1dd463b7 100644 --- a/src/nvim/po/zh_TW.UTF-8.po +++ b/src/nvim/po/zh_TW.UTF-8.po @@ -2509,10 +2509,10 @@ msgstr "E216: 無此群組或事件: %s" #: ../fileio.c:6090 msgid "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" msgstr "" "\n" -"--- Auto-Commands ---" +"--- Autocommands ---" #: ../fileio.c:6293 #, fuzzy, c-format @@ -2533,8 +2533,8 @@ msgstr "E218: autocommand 層數過深" #: ../fileio.c:7143 #, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Auto commands: \"%s\"" +msgid "%s Autocommands for \"%s\"" +msgstr "%s Autocommands: \"%s\"" #: ../fileio.c:7149 #, c-format @@ -3422,7 +3422,7 @@ msgstr "-q [errorfile] 編輯時載入第一個錯誤" msgid "" "\n" "\n" -"usage:" +"Usage:" msgstr "" "\n" "\n" |