1
0
forked from aniani/vim

Update runtime files

This commit is contained in:
Bram Moolenaar 2020-05-12 22:49:12 +02:00
parent 9e6ba8cbef
commit 47e13953ff
55 changed files with 577 additions and 2380 deletions

View File

@ -1,4 +1,4 @@
*editing.txt* For Vim version 8.2. Last change: 2019 Dec 22
*editing.txt* For Vim version 8.2. Last change: 2020 May 12
VIM REFERENCE MANUAL by Bram Moolenaar
@ -475,6 +475,9 @@ This edits the same file again with 'fileformat' set to "unix". >
:w ++enc=latin1 newfile
This writes the current buffer to "newfile" in latin1 format.
The message given when writing a file will show "[converted]" when
'fileencoding' or the value specified with ++enc differs from 'encoding'.
There may be several ++opt arguments, separated by white space. They must all
appear before any |+cmd| argument.
@ -1079,9 +1082,9 @@ The names can be in upper- or lowercase.
*:q* *:quit*
:q[uit] Quit the current window. Quit Vim if this is the last
window. This fails when changes have been made and
Vim refuses to |abandon| the current buffer, and when
the last file in the argument list has not been
|edit-window|. This fails when changes have been made
and Vim refuses to |abandon| the current buffer, and
when the last file in the argument list has not been
edited.
If there are other tab pages and quitting the last
window in the current tab page the current tab page is
@ -1107,18 +1110,22 @@ The names can be in upper- or lowercase.
|quickfix|).
*:wq*
:wq [++opt] Write the current file and quit. Writing fails when
the file is read-only or the buffer does not have a
name. Quitting fails when the last file in the
argument list has not been edited.
:wq [++opt] Write the current file and close the window. If this
was the last |edit-window| Vim quits.
Writing fails when the file is read-only or the buffer
does not have a name. Quitting fails when the last
file in the argument list has not been edited.
:wq! [++opt] Write the current file and quit. Writing fails when
the current buffer does not have a name.
:wq! [++opt] Write the current file and close the window. If this
was the last |edit-window| Vim quits. Writing fails
when the current buffer does not have a name.
:wq [++opt] {file} Write to {file} and quit. Quitting fails when the
:wq [++opt] {file} Write to {file} and close the window. If this was the
last |edit-window| Vim quits. Quitting fails when the
last file in the argument list has not been edited.
:wq! [++opt] {file} Write to {file} and quit.
:wq! [++opt] {file} Write to {file} and close the current window. Quit
Vim if this was the last |edit-window|.
:[range]wq[!] [++opt] [file]
Same as above, but only write the lines in [range].
@ -1135,10 +1142,10 @@ The names can be in upper- or lowercase.
Same as :xit.
*ZZ*
ZZ Write current file, if modified, and quit (same as
":x"). (Note: If there are several windows for the
current file, the file is written if it was modified
and the window is closed).
ZZ Write current file, if modified, and close the current
window (same as ":x").
If there are several windows for the current file,
only the current window is closed.
*ZQ*
ZQ Quit without checking for changes (same as ":q!").

View File

@ -1,4 +1,4 @@
*index.txt* For Vim version 8.2. Last change: 2020 Apr 26
*index.txt* For Vim version 8.2. Last change: 2020 May 10
VIM REFERENCE MANUAL by Bram Moolenaar
@ -364,8 +364,8 @@ tag char note action in Normal mode ~
register x]
|Y| ["x]Y yank N lines [into register x]; synonym for
"yy"
|ZZ| ZZ store current file if modified, and exit
|ZQ| ZQ exit current file always
|ZZ| ZZ write if buffer changed and close window
|ZQ| ZQ close window without writing
|[| [{char} square bracket command (see |[| below)
\ not used
|]| ]{char} square bracket command (see |]| below)
@ -1721,7 +1721,7 @@ tag command action ~
|:wqall| :wqa[ll] write all changed buffers and quit Vim
|:wundo| :wu[ndo] write undo information to a file
|:wviminfo| :wv[iminfo] write to viminfo file
|:xit| :x[it] write if buffer changed and quit window or Vim
|:xit| :x[it] write if buffer changed and close window
|:xall| :xa[ll] same as ":wqall"
|:xmapclear| :xmapc[lear] remove all mappings for Visual mode
|:xmap| :xm[ap] like ":map" but for Visual mode

View File

@ -1,4 +1,4 @@
*popup.txt* For Vim version 8.2. Last change: 2020 Apr 13
*popup.txt* For Vim version 8.2. Last change: 2020 May 12
VIM REFERENCE MANUAL by Bram Moolenaar
@ -150,6 +150,7 @@ different: *E863*
- When the job ends, the popup window closes.
- The popup window can be closed with `popup_close()`, the terminal buffer
then becomes hidden.
- It is not possible to enter Terminal-Normal mode.
- The default Pmenu color is only used for the border and padding. To change
the color of the terminal itself set the Terminal highlight group before
creating the terminal. Setting 'wincolor' later can work but requires the

View File

@ -1,4 +1,4 @@
*recover.txt* For Vim version 8.2. Last change: 2020 Mar 24
*recover.txt* For Vim version 8.2. Last change: 2020 May 09
VIM REFERENCE MANUAL by Bram Moolenaar
@ -125,12 +125,12 @@ If you want to make sure that your changes are in the swap file use this
command:
*:pre* *:preserve* *E313* *E314*
:pre[serve] Write all text for all buffers into swap files. The
original file is no longer needed for recovery.
This sets a flag in the current buffer. When the '&'
flag is present in 'cpoptions' the swap file will not
be deleted for this buffer when Vim exits and the
buffer is still loaded |cpo-&|.
:pre[serve] Write all text for the current buffer into its swap
file. The original file is no longer needed for
recovery. This sets a flag in the current buffer.
When the '&' flag is present in 'cpoptions' the swap
file will not be deleted for this buffer when Vim
exits and the buffer is still loaded |cpo-&|.
A Vim swap file can be recognized by the first six characters: "b0VIM ".
After that comes the version number, e.g., "3.0".

View File

@ -6127,6 +6127,7 @@ edit-files editing.txt /*edit-files*
edit-intro editing.txt /*edit-intro*
edit-no-break usr_25.txt /*edit-no-break*
edit-paragraph-join usr_25.txt /*edit-paragraph-join*
edit-window windows.txt /*edit-window*
editing.txt editing.txt /*editing.txt*
efm-%> quickfix.txt /*efm-%>*
efm-entries quickfix.txt /*efm-entries*

View File

@ -1,4 +1,4 @@
*todo.txt* For Vim version 8.2. Last change: 2020 May 07
*todo.txt* For Vim version 8.2. Last change: 2020 May 11
VIM REFERENCE MANUAL by Bram Moolenaar
@ -38,23 +38,22 @@ browser use: https://github.com/vim/vim/issues/1234
*known-bugs*
-------------------- Known bugs and current work -----------------------
Patch to test TERM signal. (Dominique, #6055)
Include src/po/vim.pot
Vim9 script:
Big changes, may need design:
- Make closures work:
Make closures work:
- call closure from not compiled context
- Create closure in a loop. Need to make a list of them.
- Having constant expr evaluation separate does not scale.
First parse the expression, then simplify, then generate code.
- At the vim9 script level: Allow using a function that is defined later.
Requires compiling functions only when the whole script has been sourced.
Like Javascript "hoisting", but only at the script level:
0. If script was sourced before, clear all script-local functions and
variables. (variables still to be implemented)
1. Discovery phase: Read the file to find all functions, variable
declarations and imports If a variable has a constant expression we get
the type, otherwise it will be "any". Follow imports recursively.
2. Compilation phase: compile :def function bodies, using declared types
3. Execution phase: Execute imports when encountered. (skip over functions)
Forward declarations:
- Cleanup when sourcing a script again: all script-local variables, imports
and functions are deleted.
- make sure only constants in declarations are executed, no function calls.
- Declare a variable at script level without an assignment.
let var: string
Error without a type or assignment
let var # error!
Making everything work:
- Test that a script-local function in Vim9 script cannot be deleted.
- Test that a function defined inside a :def function is local to that
@ -62,7 +61,13 @@ Making everything work:
defined.
- Check that when using a user function name without prefix, it does not find
a global function. Prefixing g: is required.
- Compile let [var, var] = expr
- Compile: let [var, var] = expr
- Compile: for [key, value] in items(map)
- Assignment to dict doesn't work:
let ret: dict<string> = #{}
ret[i] = string(i)
- Appending to dict item doesn't work:
let d[i] ..= value
- Compile replacement of :s command: s/pat/\=expr/
- Compile redir to local variable: var_redir_start().
- Compile builtin functions that access local variables:
@ -79,6 +84,7 @@ Making everything work:
- expandcmd() with `=expr` in filename uses legacy expression.
- eval_expr() in ex_cexpr()
- eval_expr() call in dbg_parsearg() and debuggy_find()
- Make "true" and "false" work in vim9script
New syntax and functionality:
Improve error checking:
- "echo Func()" is an error if Func() does not return anything.
@ -254,14 +260,14 @@ Patch for the Haiku port: #5961
Patch to add Turkish manual. (Emir Sarı, #5641)
Patch to add lua sleep function. (Prabir Shrestha, #6057)
Alternative: use vim.call and vim.fn: #6063
Patch to add getmarklist() (Yegappan, #6032)
Patch to support different color for undercurl in cterm.
(Timur Celik, #6011)
When SIGTSTP is ignored, don't let CTRL-Z suspend Vim? (Kurtis Rader, #5990)
Fixed by patch #6026. Makes tests fail...
Patch to support cindent option to handle pragmas differently.
(Max Rumpf, #5468)
@ -294,6 +300,10 @@ Patch to delete BeOS code. (#5817) Anyone who wants to keep it?
With bash ":make" does not set v:shell_error. Possible solution: set
'shellpipe' to "2>&1| tee %s; exit ${PIPESTATUS[0]}" #5994
When changing the crypt key the buffer should be considered modified.
Like when changing 'fileformat'. Save the old key in save_file_ff().
(Ninu-Ciprian Marginean)
Strange sequence of BufWipeout and BufNew events while doing omni-complete.
(Paul Jolly, #5656)
Get BufDelete without preceding BufNew. (Paul Jolly, #5694)

View File

@ -1,4 +1,4 @@
*vim9.txt* For Vim version 8.2. Last change: 2020 May 06
*vim9.txt* For Vim version 8.2. Last change: 2020 May 09
VIM REFERENCE MANUAL by Bram Moolenaar
@ -134,7 +134,7 @@ Four phases when loading a Vim9 script ~
In legacy script the functions are created when encountered, but parsed only
when used. This allows for defining functions in any order and having them
call each other: >
call each other, so long as the function is defined when it is called: >
func One()
call Two()
endfunc
@ -145,22 +145,25 @@ call each other: >
endfunc
call One()
In Vim9 script the functions are compiled. If using the same functions as the
above example it is not possible to compile function One without knowing that
function Two exists. Or this would require a runtime check, which is slow and
does not allow for compile time type checking.
In Vim9 script the functions are compiled. When using the same functions as
the above example it is not possible to compile function One without knowing
that function Two exists. Or this would require a runtime check, which is slow
and does not allow for compile time type checking.
When sourcing a Vim9 script this happens in four phases:
1. Cleanup: If the script was sourced before all script-local variables,
imports and functions are deleted.
2. Discovery: The script is read and encountered functions, imports and
variables are recognized. The type is parsed. Variable initializers that
are a constant are evaluated, this can give the type of the variable.
2. Discovery: The script is read and declarations of functions, imports and
variables are recognized and the type is parsed. Variable initializers
that are a constant are evaluated, this can also give the type of the
variable.
3. Compilation: Functions are compiled. The script-local functions, imports
and variables from the discovery phase are recognized and types are
checked.
4. Execution: the commands in the script are executed. Functions are skipped
over. Variable initializers are evaluated, unless they are a constant.
and variables from the discovery phase are found and types are checked.
4. Execution: the commands in the script are executed, top to bottom.
Functions are skipped over, they do do not need to be processed again.
Variable initializers are evaluated when encountered. Note that if a
function called earlier has set the value this will be over-written. It is
best to declare variables before where they are used to avoid confusion.
The result is that items defined at the script level can be used anywhere in
the script. This allows for putting the main function at the top: >

View File

@ -1,4 +1,4 @@
*windows.txt* For Vim version 8.2. Last change: 2020 Mar 19
*windows.txt* For Vim version 8.2. Last change: 2020 May 10
VIM REFERENCE MANUAL by Bram Moolenaar
@ -291,9 +291,9 @@ CTRL-W q *CTRL-W_q*
CTRL-W CTRL-Q *CTRL-W_CTRL-Q*
Without {count}: Quit the current window. If {count} is
given quit the {count} window.
When quitting the last window (not counting a help window),
exit Vim.
*edit-window*
When quitting the last edit window (not counting help or
preview windows), exit Vim.
When 'hidden' is set, and there is only one window for the
current buffer, it becomes hidden. When 'hidden' is not set,
@ -312,8 +312,9 @@ CTRL-W CTRL-Q *CTRL-W_CTRL-Q*
:+quit " quit the next window
:+2quit " quit the second next window
<
When closing a help window, Vim will try to restore the
previous window layout |:helpclose|.
When closing a help window, and this is not the only window,
Vim will try to restore the previous window layout, see
|:helpclose|.
:q[uit]!
:{count}q[uit]!
@ -335,9 +336,9 @@ CTRL-W c *CTRL-W_c* *:clo* *:close*
changed and the [!] is used, the buffer becomes hidden (unless
there is another window editing it).
When there is only one window in the current tab page and
there is another tab page, this closes the current tab page.
|tab-page|.
When there is only one |edit-window| in the current tab page
and there is another tab page, this closes the current tab
page. |tab-page|.
This command fails when: *E444*
- There is only one window on the screen.

19
runtime/ftplugin/masm.vim Normal file
View File

@ -0,0 +1,19 @@
" Vim filetype plugin file
" Language: Microsoft Macro Assembler (80x86)
" Maintainer: Wu Yongwei <wuyongwei@gmail.com>
" Last Change: 2020-05-09 23:02:05 +0800
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
let s:cpo_save = &cpo
set cpo&vim
let b:undo_ftplugin = "setl iskeyword<"
setlocal iskeyword=@,48-57,_,36,60,62,63,@-@
let &cpo = s:cpo_save
unlet s:cpo_save

View File

@ -28,6 +28,11 @@ set cpo&vim
let s:maxoff = 50 " maximum number of lines to look backwards for ()
" See if the specified line is already user-dedented from the expected value.
function s:Dedented(lnum, expected)
return indent(a:lnum) <= a:expected - shiftwidth()
endfunction
function GetPythonIndent(lnum)
" If this line is explicitly joined: If the previous line was also joined,
@ -158,12 +163,12 @@ function GetPythonIndent(lnum)
" If the previous line was a stop-execution statement...
if getline(plnum) =~ '^\s*\(break\|continue\|raise\|return\|pass\)\>'
" See if the user has already dedented
if indent(a:lnum) > indent(plnum) - shiftwidth()
" If not, recommend one dedent
return indent(plnum) - shiftwidth()
if s:Dedented(a:lnum, indent(plnum))
" If so, trust the user
return -1
endif
" Otherwise, trust the user
return -1
" If not, recommend one dedent
return indent(plnum) - shiftwidth()
endif
" If the current line begins with a keyword that lines up with "try"
@ -191,7 +196,7 @@ function GetPythonIndent(lnum)
endif
" Or the user has already dedented
if indent(a:lnum) <= plindent - shiftwidth()
if s:Dedented(a:lnum, plindent)
return -1
endif
@ -203,7 +208,12 @@ function GetPythonIndent(lnum)
" + c)
" here
if parlnum > 0
return plindent
" ...unless the user has already dedented
if s:Dedented(a:lnum, plindent)
return -1
else
return plindent
endif
endif
return -1

View File

@ -20,7 +20,7 @@ augroup gzip
"
" Set binary mode before reading the file.
" Use "gzip -d", gunzip isn't always available.
autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.Z,*.lzma,*.xz,*.lz,*.zst,*.br setlocal bin
autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.Z,*.lzma,*.xz,*.lz,*.zst,*.br,*.lzo setlocal bin
autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn")
autocmd BufReadPost,FileReadPost *.bz2 call gzip#read("bzip2 -d")
autocmd BufReadPost,FileReadPost *.Z call gzip#read("uncompress")
@ -29,6 +29,7 @@ augroup gzip
autocmd BufReadPost,FileReadPost *.lz call gzip#read("lzip -d")
autocmd BufReadPost,FileReadPost *.zst call gzip#read("zstd -d --rm")
autocmd BufReadPost,FileReadPost *.br call gzip#read("brotli -d --rm")
autocmd BufReadPost,FileReadPost *.lzo call gzip#read("lzop -d -U")
autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip")
autocmd BufWritePost,FileWritePost *.bz2 call gzip#write("bzip2")
autocmd BufWritePost,FileWritePost *.Z call gzip#write("compress -f")
@ -37,6 +38,7 @@ augroup gzip
autocmd BufWritePost,FileWritePost *.lz call gzip#write("lzip")
autocmd BufWritePost,FileWritePost *.zst call gzip#write("zstd --rm")
autocmd BufWritePost,FileWritePost *.br call gzip#write("brotli --rm")
autocmd BufWritePost,FileWritePost *.lzo call gzip#write("lzop -U")
autocmd FileAppendPre *.gz call gzip#appre("gzip -dn")
autocmd FileAppendPre *.bz2 call gzip#appre("bzip2 -d")
autocmd FileAppendPre *.Z call gzip#appre("uncompress")
@ -45,6 +47,7 @@ augroup gzip
autocmd FileAppendPre *.lz call gzip#appre("lzip -d")
autocmd FileAppendPre *.zst call gzip#appre("zstd -d --rm")
autocmd FileAppendPre *.br call gzip#appre("brotli -d --rm")
autocmd FileAppendPre *.lzo call gzip#appre("lzop -d -U")
autocmd FileAppendPost *.gz call gzip#write("gzip")
autocmd FileAppendPost *.bz2 call gzip#write("bzip2")
autocmd FileAppendPost *.Z call gzip#write("compress -f")
@ -53,4 +56,5 @@ augroup gzip
autocmd FileAppendPost *.lz call gzip#write("lzip")
autocmd FileAppendPost *.zst call gzip#write("zstd --rm")
autocmd FileAppendPost *.br call gzip#write("brotli --rm")
autocmd FileAppendPost *.lzo call gzip#write("lzop -U")
augroup END

View File

@ -3,7 +3,7 @@
" Maintainer: Josh Wainwright <wainwright DOT ja AT gmail DOT com>
" Last Maintainer: Andrew Rasmussen andyras@users.sourceforge.net
" Original Maintainer: John Hoelzel johnh51@users.sourceforge.net
" Last Change: 2015-08-25
" Last Change: 2020 May 12
" Filenames: *.gnu *.plt *.gpi *.gih *.gp *.gnuplot scripts: #!*gnuplot
" URL: http://www.vim.org/scripts/script.php?script_id=4873
" Original URL: http://johnh51.get.to/vim/syntax/gnuplot.vim
@ -479,7 +479,7 @@ syn keyword gnuplotKeyword terminal palette rgb rbg grb gbr brg bgr
" ---- Macros ---- "
syn region gnuplotMacro start="@" end=" "
syn match gnuplotMacro "@[a-zA-Z0-9_]*"
" ---- Todos ---- "

View File

@ -2,7 +2,7 @@
" Language: Microsoft Macro Assembler (80x86)
" Orig Author: Rob Brady <robb@datatone.com>
" Maintainer: Wu Yongwei <wuyongwei@gmail.com>
" Last Change: 2020-05-07 17:04:10 +0800
" Last Change: 2020-05-09 22:55:38 +0800
" Quit when a syntax file was already loaded
if exists("b:current_syntax")
@ -12,7 +12,7 @@ endif
let s:cpo_save = &cpo
set cpo&vim
setlocal iskeyword=@,48-57,_,36,60,62,63,@-@
syn iskeyword @,48-57,_,36,60,62,63,@-@
syn case ignore

28
runtime/syntax/pamenv.vim Normal file
View File

@ -0,0 +1,28 @@
" Vim syntax file
" Language: pam_env.conf(5) configuration file
" Latest Revision: 2020-05-10
if exists("b:current_syntax")
finish
endif
syn keyword pamenvTodo contained TODO FIXME XXX NOTE
syn region pamenvComment start='^#' end='$' display oneline contains=pamenvTodo,@Spells
syn match pamenvVars '^[A-Z_][A-Z_0-9]*' nextgroup=pamenvKeywords skipwhite
syn keyword pamenvKeywords contained DEFAULT OVERRIDE nextgroup=pamenvVarEq
syn match pamenvVarEq contained '=' nextgroup=pamenvValue,pamenvValueWithQuote
syn match pamenvValue contained '[^ \t]*' skipwhite nextgroup=pamenvKeywords
syn region pamenvValueWithQuote contained start='"' end='"' skipwhite nextgroup=pamenvKeywords
hi def link pamenvTodo Todo
hi def link pamenvComment Comment
hi def link pamenvKeywords Keyword
hi def link pamenvVars Identifier
hi def link pamenvValue String
hi def link pamenvValueWithQuote String
let b:current_syntax = "pamenv"

View File

@ -1,9 +1,11 @@
" Vim syntax file
" Language: php PHP 3/4/5/7
" Maintainer: Jason Woofenden <jason@jasonwoof.com>
" Last Change: Oct 19, 2019
" URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD
" Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com>
" Maintainer: Tyson Andre <tysonandre775@hotmail.com>
" Last Change: May 11, 2020
" URL: https://github.com/TysonAndre/vim-syntax
" Former Maintainers:
" Jason Woofenden <jason@jasonwoof.com>
" Peter Hodge <toomuchphp-vim@yahoo.com>
" Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
"
" Note: If you are using a colour terminal with dark background, you will
@ -91,7 +93,7 @@ if exists( "php_htmlInStrings")
syn cluster phpAddStrings add=@htmlTop
endif
" make sure we can use \ at the begining of the line to do a continuation
" make sure we can use \ at the beginning of the line to do a continuation
let s:cpo_save = &cpo
set cpo&vim
@ -314,7 +316,7 @@ syn region phpIdentifierComplexP matchgroup=phpParent start="\[" end="]" contain
" define a cluster to get all interpolation syntaxes for double-quoted strings
syn cluster phpInterpDouble contains=phpInterpSimple,phpInterpSimpleCurly,phpInterpDollarCurly1,phpInterpDollarCurly2,phpInterpBogusDollarCurley,phpInterpComplex
" Methoden
" Methods
syn match phpMethodsVar "->\h\w*" contained contains=phpMethods,phpMemberSelector display
" Include
@ -328,14 +330,14 @@ syn keyword phpBoolean true false contained
" Float
" Refer to: https://www.php.net/manual/en/language.types.float.php
syn match phpFloat "\%(\w\|\.\)\@<!\%(\d\|\.\)*\d\%(\d\|\.\)*\%([eE][+-]\=\%(\d\|\.\)\+\)\=\%(\w\|\.\)\@!" contained contains=phpFloatError display
syn match phpFloatError "[eE.].*\." contained display
syn match phpFloat "\%(\w\|\.\)\@<!\%(\d_\?\|\.\)*\d\%(\d\|_\|\.\)*\%([eE][+-]\=\%(\d\|_\|\.\)\+\)\=\%(\w\|\.\)\@!" contained contains=phpFloatError display
syn match phpFloatError "\%([eE.][0-9._+-]*\.\|__\|_\(\>\|[eE]\)\|\(\>\|[eE]\)_\)" contained display
" Number
syn match phpNumber "\%(\.\)\@<!\<\%([1-9]\d*\|0\|0[xX]\x\+\)\>\%(\.\)\@!" contained display
syn match phpNumber "\%(\.\)\@<!\<\%([1-9]\d*\|0\|0[xX]\(\x_\?\)*\x\)\>\%(\.\)\@!" contained display
syn match phpNumber "\%(\.\)\@<!\<0\d\+\>\%(\.\)\@!" contained contains=phpOctalError display
syn match phpBinaryError "[2-9]" contained display
syn match phpNumber "\%(\.\)\@<!\<0[bB]\d\+\>\%(\.\)\@!" contained contains=phpBinaryError display
syn match phpNumber "\%(\.\)\@<!\<0[bB]\(\d_\?\)*\d\>\%(\.\)\@!" contained contains=phpBinaryError display
" Backslash escapes
syn case match
@ -442,6 +444,7 @@ if exists("php_folding") && php_folding==1
" match one line constructs here and skip them at folding
syn keyword phpSCKeyword abstract final private protected public static contained
syn keyword phpFCKeyword function contained
syn keyword phpDefine fn contained
syn keyword phpStorageClass global contained
syn match phpDefine "\(\s\|^\)\(abstract\s\+\|final\s\+\|private\s\+\|protected\s\+\|public\s\+\|static\s\+\)*function\(\s\+.*[;}]\)\@=" contained contains=phpSCKeyword
syn match phpStructure "\(\s\|^\)\(abstract\s\+\|final\s\+\)*\(trait\|class\)\(\s\+.*}\)\@=" contained
@ -459,7 +462,7 @@ if exists("php_folding") && php_folding==1
syn region phpFoldCatch matchgroup=Exception start="^\z(\s*\)catch\s\+\([^}]*$\)\@=" matchgroup=Delimiter end="^\z1}" contains=@phpClFunction,phpFoldFunction contained transparent fold extend
syn region phpFoldTry matchgroup=Exception start="^\z(\s*\)try\s\+\([^}]*$\)\@=" matchgroup=Delimiter end="^\z1}" contains=@phpClFunction,phpFoldFunction contained transparent fold extend
else
syn keyword phpDefine function contained
syn keyword phpDefine function fn contained
syn keyword phpStructure abstract class trait interface contained
syn keyword phpException catch throw try finally contained
syn keyword phpStorageClass final global private protected public static contained

View File

@ -2,8 +2,8 @@
" Language: shell (sh) Korn shell (ksh) bash (sh)
" Maintainer: Charles E. Campbell <NcampObell@SdrPchip.AorgM-NOSPAM>
" Previous Maintainer: Lennart Schultz <Lennart.Schultz@ecmwf.int>
" Last Change: Oct 16, 2019
" Version: 189
" Last Change: Apr 14, 2020
" Version: 190
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH
" For options and settings, please use: :help ft-sh-syntax
" This file includes many ideas from Eric Brunet (eric.brunet@ens.fr)
@ -357,19 +357,18 @@ elseif !exists("g:sh_no_error")
syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStringSpecial
endif
syn region shSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart,shSpecialSQ
syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
syn region shDoubleQuote matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contained contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
syn region shDoubleQuote matchgroup=shQuote start=+"+ matchgroup=shSpecial skip=+\\"+ end=+"+ contained contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
syn match shStringSpecial "[^[:print:] \t]" contained
syn match shStringSpecial "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" nextgroup=shComment
syn match shStringSpecial "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]"
syn match shSpecialSQ "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,@shNoZSList
syn match shSpecialDQ "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshDblQuote,@shNoZSList
syn match shSpecialStart "\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,shBkslshDblQuote,@shNoZSList
syn match shSpecial "^\%(\\\\\)*\\[\\"'`$()#]"
syn match shSpecialNoZS contained "\%(\\\\\)*\\[\\"'`$()#]"
syn match shSpecialNxt contained "\\[\\"'`$()#]"
syn region shBkslshSnglQuote contained matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart
syn region shBkslshDblQuote contained matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
"syn region shBkslshSnglQuote contained matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart
"syn region shBkslshDblQuote contained matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
" Comments: {{{1
"==========
@ -454,13 +453,13 @@ if !exists("g:sh_no_error")
syn match shDerefWordError "[^}$[~]" contained
endif
syn match shDerefSimple "\$\%(\h\w*\|\d\)" nextgroup=@shNoZSList
syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray
syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray nextgroup=shSpecialStart
syn match shDerefSimple "\$[-#*@!?]" nextgroup=@shNoZSList
syn match shDerefSimple "\$\$" nextgroup=@shNoZSList
syn match shDerefSimple "\${\d}" nextgroup=@shNoZSList
syn match shDerefSimple "\${\d}" nextgroup=@shNoZSList nextgroup=shSpecialStart
if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS
syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS
syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
endif
" ksh: ${!var[*]} array index list syntax: {{{1

View File

@ -2151,7 +2151,7 @@ msgstr "onbekende 'vimOption'"
msgid "keyboard interrupt"
msgstr "sleutelbordonderbreking"
msgid "vim error"
msgid "Vim error"
msgstr "vim fout"
msgid "cannot create buffer/window command: object is being deleted"
@ -2432,8 +2432,8 @@ msgstr "-W <skripuit>\tSkryf alle getikte bevele na l
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tBewerk geënkripteerde lêers"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tKoppel vim aan hierdie X-bediener"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tKoppel Vim aan hierdie X-bediener"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tMoet nie verbinding met X-bediener maak nie"
@ -2498,10 +2498,10 @@ msgstr ""
"\n"
"Parameters deur gvim herken (Athena weergawe):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tVoer vim op <display> uit"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tVoer Vim op <display> uit"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tBegin vim as ikoon"
msgid "-name <name>\t\tUse resource as if vim was <name>"
@ -2568,8 +2568,8 @@ msgstr ""
"\n"
"Parameters wat gvim verstaan (GTK+ weergawe):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <skerm>\tVoer vim op <skerm> uit: (ook --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <skerm>\tVoer Vim op <skerm> uit: (ook --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <rol>\tStel 'n unieke rol om die hoofvenster te identifiseer"

View File

@ -2760,9 +2760,6 @@ msgstr "opci
msgid "keyboard interrupt"
msgstr "interrupció de teclat"
msgid "vim error"
msgstr "error de vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "no es pot crear l'ordre Tcl: l'objecte està sent eliminant"
@ -3080,7 +3077,7 @@ msgstr "-W <script>\t\tEscriu totes les ordres entrades al fitxer <script>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEdita fitxers amb xifrat"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <pantalla>\tConnecta el Vim a un servidor X particular"
msgid "-X\t\t\tDo not connect to X server"
@ -3151,10 +3148,10 @@ msgstr ""
"\n"
"Arguments reconeguts pel gvim (versió Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <pantalla>\tExecuta vim a <pantalla>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <pantalla>\tExecuta Vim a <pantalla>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tComença iconificat"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3200,14 +3197,14 @@ msgstr ""
"\n"
"Arguments reconeguts pel gvim (versió GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <pantalla>\tExecuta vim a <pantalla> (també: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <pantalla>\tExecuta Vim a <pantalla> (també: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <rol>\t\tUsa un únic rol per a identificar la finestra principal"
msgid "--socketid <xid>\tOpen Vim inside another GTK widget"
msgstr "--socketid <xid>\tObre el vim dins d'un altre giny GTK"
msgstr "--socketid <xid>\tObre el Vim dins d'un altre giny GTK"
msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout"
msgstr "--echo-wid\t\tEscriu el Window ID a la sortida estàndard"
@ -6774,8 +6771,8 @@ msgid "list index out of range"
msgstr "índex de llista fora de l'interval"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgstr "error intern: error en obtenir l'element %d de la llista vim"
msgid "internal error: failed to get Vim list item %d"
msgstr "error intern: error en obtenir l'element %d de la llista Vim"
msgid "slice step cannot be zero"
msgstr "l'increment de l'interval no pot ser zero"
@ -6785,8 +6782,8 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "intent d'assignar una seqüència de més de %d elements a un interval estès"
#, c-format
msgid "internal error: no vim list item %d"
msgstr "error intern: no existeix l'element %d a la llista vim"
msgid "internal error: no Vim list item %d"
msgstr "error intern: no existeix l'element %d a la llista Vim"
msgid "internal error: not enough list items"
msgstr "error intern: no hi ha prou elements a la llista"
@ -6894,19 +6891,19 @@ msgstr "error en executar el codi"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval no ha retornat un objecte Python vàlid"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Error en convertir l'objecte Python retornat a un valor Vim"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "error en convertir %s en un diccionari Vim"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "error en convertir %s en una llista Vim"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "error en convertir %s en una estructura Vim"
msgid "internal error: NULL reference passed"

View File

@ -1962,7 +1962,7 @@ msgstr "nezn
msgid "keyboard interrupt"
msgstr "pøerušení z klávesnice"
msgid "vim error"
msgid "Vim error"
msgstr "chyba vim"
msgid "cannot create buffer/window command: object is being deleted"
@ -2247,8 +2247,8 @@ msgstr "-W <skript>\t\tUlo
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEditace zašifrovaných souborù"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tSpustí vim na daný X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tSpustí Vim na daný X-server"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNepøipojí se k X serveru"
@ -2300,11 +2300,11 @@ msgstr ""
"\n"
"Pøepínaèe pro gvim (Athena verzi):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tSpustí vim na <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tSpustí Vim na <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tSpustí vim minimalizované"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tSpustí Vim minimalizované"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <název>\t\tPoužije resource jako by vim mìl <název>"
@ -2368,8 +2368,8 @@ msgstr ""
"\n"
"Pøepínaèe pro gvim (GTK+ verzi):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tSpustí vim na <display> (také --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tSpustí Vim na <display> (také --display)"
msgid "--help\t\tShow Gnome arguments"
msgstr "--help\t\tVypíše Gnome pøepínaèe"

View File

@ -1962,7 +1962,7 @@ msgstr "nezn
msgid "keyboard interrupt"
msgstr "pøeru¹ení z klávesnice"
msgid "vim error"
msgid "Vim error"
msgstr "chyba vim"
msgid "cannot create buffer/window command: object is being deleted"
@ -2247,8 +2247,8 @@ msgstr "-W <skript>\t\tUlo
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEditace za¹ifrovaných souborù"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tSpustí vim na daný X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tSpustí Vim na daný X-server"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNepøipojí se k X serveru"
@ -2300,11 +2300,11 @@ msgstr ""
"\n"
"Pøepínaèe pro gvim (Athena verzi):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tSpustí vim na <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tSpustí Vim na <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tSpustí vim minimalizované"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tSpustí Vim minimalizované"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <název>\t\tPou¾ije resource jako by vim mìl <název>"
@ -2368,8 +2368,8 @@ msgstr ""
"\n"
"Pøepínaèe pro gvim (GTK+ verzi):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tSpustí vim na <display> (také --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tSpustí Vim na <display> (také --display)"
msgid "--help\t\tShow Gnome arguments"
msgstr "--help\t\tVypí¹e Gnome pøepínaèe"

View File

@ -2807,9 +2807,6 @@ msgstr "ukendt vimOption"
msgid "keyboard interrupt"
msgstr "tastaturafbryd"
msgid "vim error"
msgstr "fejl ved vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "kan ikke oprette buffer-/vindue-kommando: objekt slettes"
@ -3136,8 +3133,8 @@ msgstr "-W <scriptud>\tSkriv alle indtastede kommandoer til filen <scriptud>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tRediger krypterede filer"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tForbind vim til denne X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tForbind Vim til denne X-server"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tOpret ikke forbindelse til X-server"
@ -3217,11 +3214,11 @@ msgstr ""
"\n"
"Argumenter som genkendes af gvim (Athena-version):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tKør vim på <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tKør Vim på <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tStart vim som ikon"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tStart Vim som ikon"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <farve>\tBrug <farve> til baggrunden (også: -bg)"
@ -3267,8 +3264,8 @@ msgstr ""
"\n"
"Argumenter genkendt af gvim (GTK+-version):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tKør vim på <display> (også: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tKør Vim på <display> (også: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <rolle>\tSæt en unik rolle til at identificere hovedvinduet"
@ -6891,7 +6888,7 @@ msgid "list index out of range"
msgstr "listeindeks udenfor område"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "intern fejl: kunne ikke hente vim-listepunkt %d"
msgid "slice step cannot be zero"
@ -6902,7 +6899,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "forsøg på at tildele sekvens som er større end %d til udvidet slice"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "intern fejl: intet vim-listepunkt %d"
msgid "internal error: not enough list items"
@ -7013,19 +7010,19 @@ msgstr "kunne ikke køre koden"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval returnerede ikke et gyldigt python-objekt"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Kunne ikke konvertere returnerede python-objekt til vim-værdi"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "kan ikke konvertere %s til vim-ordbog"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "kan ikke konvertere %s til vim-liste"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "kan ikke konvertere %s til vim-struktur"
msgid "internal error: NULL reference passed"

View File

@ -2564,9 +2564,6 @@ msgstr "unbekannte vimOption"
msgid "keyboard interrupt"
msgstr "Tastatur-Interrupt"
msgid "vim error"
msgstr "vim Fehler"
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"Puffer/Fenster-Befehl kann nicht ausgeführt werden: das Objekt wird gelöscht"
@ -3042,8 +3039,8 @@ msgstr ""
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEditiere verschlüsselte Dateien"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tStarte vim <display>"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tStarte Vim <display>"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tStelle keine Verbindung zum X-server her"
@ -3126,11 +3123,11 @@ msgstr ""
"\n"
"Argumente für den gvim (Athena Version):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tStarte vim auf <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tStarte Vim auf <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tStarte vim als Icon"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tStarte Vim als Icon"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr ""
@ -3185,8 +3182,8 @@ msgstr ""
"\n"
"Argumente für gvim GTK+ Version:\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tStarte vim auf <display> (auch mit: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tStarte Vim auf <display> (auch mit: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr ""
@ -7563,7 +7560,7 @@ msgid "list index out of range"
msgstr "Listen Index außerhalb des gültigen Bereichs"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "interner Fehler: Zugriff auf Vim Listobjekt %d fehlgeschlagen"
msgid "slice step cannot be zero"
@ -7575,7 +7572,7 @@ msgstr ""
"Versuch der Zuweisung von Sequenzgröße größer als %d zu erweiterten Slice"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "interner Fehler: Kein Vim Listobjekt %d"
msgid "internal error: not enough list items"
@ -7685,21 +7682,21 @@ msgstr "Ausf
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval hat kein gültiges Pythonobjekt zurückgegeben"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr ""
"E859: Konvertierung von zurückgegebenen Pythonobjekt zu Vim Wert "
"fehlgeschlagen"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "konnte nicht %s zu Vim Dictionary konvertieren"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "konnte %s nicht zu Vim Liste konvertieren"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "konnte %s nicht zu Vim Struktur konvertieren"
msgid "internal error: NULL reference passed"

View File

@ -2539,9 +2539,6 @@ msgstr "nekonata vimOption"
msgid "keyboard interrupt"
msgstr "klavara interrompo"
msgid "vim error"
msgstr "eraro de Vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "ne eblas krei komandon de bufro/fenestro: objekto estas forviŝiĝanta"
@ -3014,7 +3011,7 @@ msgstr ""
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tRedakti ĉifradan dosieron"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <ekrano>\tKonekti Vim al tiu X-servilo"
msgid "-X\t\t\tDo not connect to X server"
@ -3093,11 +3090,11 @@ msgstr ""
"\n"
"Argumentoj agnoskitaj de gvim (versio Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <ekrano>\tLanĉi vim sur <ekrano>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <ekrano>\tLanĉi Vim sur <ekrano>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tLanĉi vim piktograme"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tLanĉi Vim piktograme"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <koloro>\tUzi <koloro>-n por la fona koloro (ankaŭ: -bg)"
@ -3145,7 +3142,7 @@ msgstr ""
"\n"
"Argumentoj agnoskitaj de gvim (versio GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <ekrano>\tLanĉi Vim sur tiu <ekrano> (ankaŭ: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
@ -7459,7 +7456,7 @@ msgid "list index out of range"
msgstr "indekso de listo ekster limoj"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "interna eraro: obteno de vim-a listero %d malsukcesis"
msgid "slice step cannot be zero"
@ -7470,7 +7467,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "provis valorizi sekvencon kun pli ol %d eroj en etendita sekco"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "interna eraro: neniu vim-a listero %d"
msgid "internal error: not enough list items"
@ -7579,19 +7576,19 @@ msgstr "malsukcesis ruli la kodon"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval ne revenis kun valida python-objekto"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Konverto de revena python-objekto al vim-valoro malsukcesis"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "ne povis konverti %s al vim-vortaro"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "ne povis konverti %s al vim-listo"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "ne povis konverti %s al vim-strukturo"
msgid "internal error: NULL reference passed"

File diff suppressed because it is too large Load Diff

View File

@ -2774,9 +2774,6 @@ msgstr "tuntematon vimOption"
msgid "keyboard interrupt"
msgstr "näppäimistökeskeytys"
msgid "vim error"
msgstr "vim-virhe"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "ei voi luoda puskuri- tai ikkunakomentoa, olio on poistumassa"
@ -3093,8 +3090,8 @@ msgstr "-W <skripti>\tKirjoita komennot <skripti>-tiedostoon"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tMuokkaa salattua tiedostoa"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <näyttö>\tYhdistä vim tiettyyn X-palvelimeen"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <näyttö>\tYhdistä Vim tiettyyn X-palvelimeen"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tÄlä yhdistä X-palvelimeen"
@ -3177,10 +3174,10 @@ msgstr ""
"\n"
"Gvimin (Athena-version) tuntemat argumentit:\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <näyttö>\tSuorita vim <näytössä>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <näyttö>\tSuorita Vim <näytössä>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tKäynnistä pienennettynä"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3228,8 +3225,8 @@ msgstr ""
"\n"
"Gvimin (GTK+-version) tuntemat argumentit:\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <näyttö>\tSuorita vim näytöllä <näyttö> (myös: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <näyttö>\tSuorita Vim näytöllä <näyttö> (myös: --display)"
# X-ikkunointijärjestelmässä saman sovelluksen saman luokan ikkunat
# tunnistetaan rooliresursseista
@ -6828,7 +6825,7 @@ msgid "list index out of range"
msgstr "listaindeksi arvoalueen ulkopuolelta"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "sisäinen virhe: ei pystytty hakea vimin listan indeksiä %d"
msgid "slice step cannot be zero"
@ -6839,7 +6836,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "yritettiin sijoittaa sekvenssiä jonka koko on enemmän kuin %d sliceen"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "sisäinen virhe: ei vim-listan indeksiä %d"
msgid "internal error: not enough list items"
@ -6949,19 +6946,19 @@ msgstr "ei voitu suorittaa koodia"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval ei palauttanut python-oliota"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Ei voitu konvertoida python-oliota vim-arvoksi"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "ei voitu konvertoida oliota %s vim-sanakirjaksi"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "ei voitu konvertoida tyypistä %s vim-listaksi"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "ei voi konvertoida oliota %s vim-tietorakenteeksi"
msgid "internal error: NULL reference passed"

View File

@ -2751,9 +2751,6 @@ msgstr "vimOption inconnue"
msgid "keyboard interrupt"
msgstr "interruption clavier"
msgid "vim error"
msgstr "erreur Vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"Impossible de créer commande de tampon/fenêtre : objet en cours d'effacement"
@ -3253,7 +3250,7 @@ msgstr "-W <dest>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tÉditer des fichiers chiffrés"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tConnecter Vim au serveur X spécifié"
msgid "-X\t\t\tDo not connect to X server"
@ -3336,10 +3333,10 @@ msgstr ""
"\n"
"Arguments reconnus par gvim (version Athena) :\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <écran>\tLancer Vim sur ce <display>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tIconifier Vim au démarrage"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3389,7 +3386,7 @@ msgstr ""
"\n"
"Arguments reconnus par gvim (version GTK+) :\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr ""
"-display <display>\tLancer Vim sur ce <display>\t(également : --display)"
@ -7489,7 +7486,7 @@ msgid "list index out of range"
msgstr "index de liste hors limites"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "erreur interne : accès à un élément %d de liste a échoué"
msgid "slice step cannot be zero"
@ -7502,7 +7499,7 @@ msgstr ""
"découpage en tranche étendu "
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "erreur interne : pas d'élément %d de liste vim"
msgid "internal error: not enough list items"
@ -7613,19 +7610,19 @@ msgstr "ex
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval n'a pas retourné un objet python valide"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Conversion d'objet python à une valeur de vim a échoué"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "impossible de convertir %s à un dictionnaire vim"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "impossible de convertir %s à une liste de vim"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "impossible de convertir %s à une structure de vim"
msgid "internal error: NULL reference passed"

View File

@ -2806,9 +2806,6 @@ msgstr "vimOption anaithnid"
msgid "keyboard interrupt"
msgstr "idirbhriseadh méarchláir"
msgid "vim error"
msgstr "earráid vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "ní féidir ordú maoláin/fuinneoige a chruthú: réad á scriosadh"
@ -3135,8 +3132,8 @@ msgstr "-W <aschur>\tScr
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tCuir comhaid chriptithe in eagar"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <freastalaí>\tNasc vim leis an bhfreastalaí-X seo"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <freastalaí>\tNasc Vim leis an bhfreastalaí-X seo"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNá naisc leis an bhfreastalaí X"
@ -3218,11 +3215,11 @@ msgstr ""
"\n"
"Argóintí ar eolas do gvim (leagan Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <scáileán>\tRith vim ar <scáileán>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <scáileán>\tRith Vim ar <scáileán>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tTosaigh vim sa mhód íoslaghdaithe"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tTosaigh Vim sa mhód íoslaghdaithe"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <dath>\tBain úsáid as <dath> don chúlra (-bg fosta)"
@ -3273,8 +3270,8 @@ msgstr ""
"\n"
"Argóintí ar eolas do gvim (leagan GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <scáileán>\tRith vim ar <scáileán> (fosta: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <scáileán>\tRith Vim ar <scáileán> (fosta: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <ról>\tSocraigh ról sainiúil chun an phríomhfhuinneog a aithint"
@ -6955,7 +6952,7 @@ msgstr "inn
#. No more suitable format specifications in python-2.3
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "earráid inmheánach: níl aon fháil ar mhír %d sa liosta vim"
msgid "slice step cannot be zero"
@ -6966,7 +6963,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "iarracht ar sheicheamh níos mó ná %d a shannadh do shlisne fadaithe"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "earráid inmheánach: níl aon mhír %d sa liosta vim"
msgid "internal error: not enough list items"
@ -7075,19 +7072,19 @@ msgstr "n
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Ní bhfuarthas réad bailí python ar ais ó Eval"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Níorbh fhéidir luach vim a dhéanamh as an réad python"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "ní féidir foclóir vim a dhéanamh as %s"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "ní féidir liosta vim a dhéanamh as %s"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "ní féidir struchtúr vim a dhéanamh as %s"
msgid "internal error: NULL reference passed"

View File

@ -2607,9 +2607,6 @@ msgstr "'vimOption' inesistente"
msgid "keyboard interrupt"
msgstr "interruzione dalla tastiera"
msgid "vim error"
msgstr "errore vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"non riesco a creare comando buffer/finestra: oggetto in via di cancellazione"
@ -3018,8 +3015,8 @@ msgstr "-W <scriptout>\tScrivi tutti i comandi immessi in file <scriptout>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tApri un file cifrato"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <schermo>\tEsegui vim a questo particolare server X"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <schermo>\tEsegui Vim a questo particolare server X"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNon connetterti a server X"
@ -3096,11 +3093,11 @@ msgstr ""
"\n"
"Opzioni accettate da gvim (versione Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <schermo>\tEsegui vim su <schermo>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <schermo>\tEsegui Vim su <schermo>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tInizia vim riducendolo ad icona"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tInizia Vim riducendolo ad icona"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <colore>\tUsa <colore> come sfondo (anche: -bg)"
@ -3146,8 +3143,8 @@ msgstr ""
"\n"
"Argomenti accettati da gvim (versione GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <schermo>\tEsegui vim su <schermo> (anche: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <schermo>\tEsegui Vim su <schermo> (anche: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr ""
@ -6530,8 +6527,8 @@ msgstr "il costruttore di lista non accetta parole chiave come argomenti"
msgid "list index out of range"
msgstr "Indice di Lista fuori intervallo"
msgid "internal error: failed to get vim list item %d"
msgstr "errore interno: non ho potuto ottenere l'elemento di vim list %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "errore interno: non ho potuto ottenere l'elemento di Vim list %d"
msgid "slice step cannot be zero"
msgstr "il passo scorrendo un intervallo non può essere zero"
@ -6540,7 +6537,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr ""
"tentativo di assegnare una sequenza maggiore di %d a un intervallo esteso"
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "errore interno: non c'è un elemento di vim list %d"
msgid "internal error: not enough list items"
@ -6642,17 +6639,17 @@ msgstr "esecuzione del codice non riuscita"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval non ha restituito un oggetto python valido"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr ""
"E859: Conversione non riuscita dell'oggetto python risultato a un valore vim"
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "impossibile convertire %s a dizionario vim"
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "impossibile convertire %s a Lista vim"
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "impossibile convertire %s a struttura vim"
msgid "internal error: NULL reference passed"

View File

@ -2590,9 +2590,6 @@ msgstr "̤
msgid "keyboard interrupt"
msgstr "キーボード割込み"
msgid "vim error"
msgstr "vim エラー"
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"バッファ/ウィンドウ作成コマンドを作成できません: オブジェクトが消去されていま"
@ -3055,7 +3052,7 @@ msgstr "-W <scriptout>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t暗号化されたファイルを編集する"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tvimを指定した X サーバーに接続する"
msgid "-X\t\t\tDo not connect to X server"
@ -3130,10 +3127,10 @@ msgstr ""
"\n"
"gvimによって解釈される引数(Athenaバージョン):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t<display> でvimを実行する"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t最小化した状態でvimを起動する"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3180,8 +3177,8 @@ msgstr ""
"\n"
"gvimによって解釈される引数(GTK+バージョン):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\t<display> でvimを実行する(同義: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t<display> ¤ÇVim¤ò¼Â¹Ô¤¹¤ë(ƱµÁ: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tメインウィンドウを識別する一意な役割(role)を設定する"
@ -7135,7 +7132,7 @@ msgid "list index out of range"
msgstr "リスト範囲外のインデックスです"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "内部エラー: vimのリスト要素 %d の取得に失敗しました"
msgid "slice step cannot be zero"
@ -7146,7 +7143,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "長さ %d の拡張スライスに、より長いスライスを割り当てようとしました"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "内部エラー: vimのリスト要素 %d はありません"
msgid "internal error: not enough list items"
@ -7255,19 +7252,19 @@ msgstr "
msgid "E858: Eval did not return a valid python object"
msgstr "E858: 式評価は有効なpythonオブジェクトを返しませんでした"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: 返されたpythonオブジェクトをvimの値に変換できませんでした"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "%s vimの辞書型に変換できません"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s をvimのリストに変換できません"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "%s をvimの構造体に変換できません"
msgid "internal error: NULL reference passed"

View File

@ -2590,9 +2590,6 @@ msgstr "未知の vimOption です"
msgid "keyboard interrupt"
msgstr "キーボード割込み"
msgid "vim error"
msgstr "vim エラー"
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"バッファ/ウィンドウ作成コマンドを作成できません: オブジェクトが消去されていま"
@ -3055,7 +3052,7 @@ msgstr "-W <scriptout>\t入力した全コマンドをファイル <scriptout>
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t暗号化されたファイルを編集する"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tvimを指定した X サーバーに接続する"
msgid "-X\t\t\tDo not connect to X server"
@ -3130,10 +3127,10 @@ msgstr ""
"\n"
"gvimによって解釈される引数(Athenaバージョン):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t<display> でvimを実行する"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t最小化した状態でvimを起動する"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3180,8 +3177,8 @@ msgstr ""
"\n"
"gvimによって解釈される引数(GTK+バージョン):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\t<display> でvimを実行する(同義: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t<display> でVimを実行する(同義: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tメインウィンドウを識別する一意な役割(role)を設定する"
@ -7135,7 +7132,7 @@ msgid "list index out of range"
msgstr "リスト範囲外のインデックスです"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "内部エラー: vimのリスト要素 %d の取得に失敗しました"
msgid "slice step cannot be zero"
@ -7146,7 +7143,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "長さ %d の拡張スライスに、より長いスライスを割り当てようとしました"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "内部エラー: vimのリスト要素 %d はありません"
msgid "internal error: not enough list items"
@ -7255,19 +7252,19 @@ msgstr "コードの実行に失敗しました"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: 式評価は有効なpythonオブジェクトを返しませんでした"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: 返されたpythonオブジェクトをvimの値に変換できませんでした"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "%s vimの辞書型に変換できません"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s をvimのリストに変換できません"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "%s をvimの構造体に変換できません"
msgid "internal error: NULL reference passed"

View File

@ -2590,9 +2590,6 @@ msgstr "
msgid "keyboard interrupt"
msgstr "キーボード割込み"
msgid "vim error"
msgstr "vim ƒGƒ‰<C692>["
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"バッファ/ウィンドウ作成コマンドを作成できません: オブジェクトが消去されていま"
@ -3055,7 +3052,7 @@ msgstr "-W <scriptout>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t暗号化されたファイルを編集する"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tvimを指定した X サーバーに接続する"
msgid "-X\t\t\tDo not connect to X server"
@ -3130,10 +3127,10 @@ msgstr ""
"\n"
"gvimによって解釈される引数(Athenaバージョン):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t<display> でvimを実行する"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t最小化した状態でvimを起動する"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3180,7 +3177,7 @@ msgstr ""
"\n"
"gvimによって解釈される引数(GTK+バージョン):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t<display> でvimを実行する(同義: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
@ -7135,7 +7132,7 @@ msgid "list index out of range"
msgstr "リスト範囲外のインデックスです"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "内部エラー: vimのリスト要素 %d の取得に失敗しました"
msgid "slice step cannot be zero"
@ -7146,7 +7143,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "長さ %d の拡張スライスに、より長いスライスを割り当てようとしました"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "内部エラー: vimのリスト要素 %d はありません"
msgid "internal error: not enough list items"
@ -7255,19 +7252,19 @@ msgstr "
msgid "E858: Eval did not return a valid python object"
msgstr "E858: 式評価は有効なpythonオブジェクトを返しませんでした"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: 返されたpythonオブジェクトをvimの値に変換できませんでした"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "%s vimの辞書型に変換できません"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s をvimのリストに変換できません"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "%s をvimの構\造体に変換できません"
msgid "internal error: NULL reference passed"

View File

@ -2780,9 +2780,6 @@ msgstr "모르는 빔 옵션"
msgid "keyboard interrupt"
msgstr "키보드 인터럽트"
msgid "vim error"
msgstr "빔 에러"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "버퍼/창 명령을 만들 수 없습니다: 객체가 지워집니다"
@ -3096,7 +3093,7 @@ msgstr "-W <scriptout>\t모든 입력된 명령을 <scriptout> 파일에 저장"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t암호화된 파일 고치기"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t빔을 특정 X-서버와 연결"
msgid "-X\t\t\tDo not connect to X server"
@ -3170,10 +3167,10 @@ msgstr ""
"\n"
"gvim이 알고 있는 인자 (아테나 판):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t빔을 <display>에서 실행"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t아이콘 상태로 빔 시작"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3219,7 +3216,7 @@ msgstr ""
"\n"
"gvim이 알고있는 인자 (GTK+ 판):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t빔을 <display>에서 실행 (also: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
@ -6811,7 +6808,7 @@ msgid "list index out of range"
msgstr "list 색인이 범위를 벗어났습니다"
#, c-format
#~ msgid "internal error: failed to get vim list item %d"
#~ msgid "internal error: failed to get Vim list item %d"
#~ msgstr ""
#~ msgid "slice step cannot be zero"
@ -6822,7 +6819,7 @@ msgstr "list 색인이 범위를 벗어났습니다"
#~ msgstr ""
#, c-format
#~ msgid "internal error: no vim list item %d"
#~ msgid "internal error: no Vim list item %d"
#~ msgstr ""
#~ msgid "internal error: not enough list items"
@ -6931,19 +6928,19 @@ msgstr "버퍼 이름을 변경할 수 없습니다"
#~ msgid "E858: Eval did not return a valid python object"
#~ msgstr ""
#~ msgid "E859: Failed to convert returned python object to vim value"
#~ msgid "E859: Failed to convert returned python object to a Vim value"
#~ msgstr ""
#, c-format
#~ msgid "unable to convert %s to vim dictionary"
#~ msgid "unable to convert %s to a Vim dictionary"
#~ msgstr ""
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s을(를) vim list로 변경할 수 없습니다"
#, c-format
#~ msgid "unable to convert %s to vim structure"
#~ msgid "unable to convert %s to a Vim structure"
#~ msgstr ""
#~ msgid "internal error: NULL reference passed"

View File

@ -2780,9 +2780,6 @@ msgstr "
msgid "keyboard interrupt"
msgstr "키보드 인터럽트"
msgid "vim error"
msgstr "ºö ¿¡·¯"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "버퍼/창 명령을 만들 수 없습니다: 객체가 지워집니다"
@ -3096,7 +3093,7 @@ msgstr "-W <scriptout>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t암호화된 파일 고치기"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t빔을 특정 X-서버와 연결"
msgid "-X\t\t\tDo not connect to X server"
@ -3170,10 +3167,10 @@ msgstr ""
"\n"
"gvim이 알고 있는 인자 (아테나 판):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t빔을 <display>에서 실행"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t아이콘 상태로 빔 시작"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3219,7 +3216,7 @@ msgstr ""
"\n"
"gvim이 알고있는 인자 (GTK+ 판):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t빔을 <display>에서 실행 (also: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
@ -6811,7 +6808,7 @@ msgid "list index out of range"
msgstr "list 색인이 범위를 벗어났습니다"
#, c-format
#~ msgid "internal error: failed to get vim list item %d"
#~ msgid "internal error: failed to get Vim list item %d"
#~ msgstr ""
#~ msgid "slice step cannot be zero"
@ -6822,7 +6819,7 @@ msgstr "list
#~ msgstr ""
#, c-format
#~ msgid "internal error: no vim list item %d"
#~ msgid "internal error: no Vim list item %d"
#~ msgstr ""
#~ msgid "internal error: not enough list items"
@ -6931,19 +6928,19 @@ msgstr "
#~ msgid "E858: Eval did not return a valid python object"
#~ msgstr ""
#~ msgid "E859: Failed to convert returned python object to vim value"
#~ msgid "E859: Failed to convert returned python object to a Vim value"
#~ msgstr ""
#, c-format
#~ msgid "unable to convert %s to vim dictionary"
#~ msgid "unable to convert %s to a Vim dictionary"
#~ msgstr ""
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s을(를) vim list로 변경할 수 없습니다"
#, c-format
#~ msgid "unable to convert %s to vim structure"
#~ msgid "unable to convert %s to a Vim structure"
#~ msgstr ""
#~ msgid "internal error: NULL reference passed"

View File

@ -2648,9 +2648,6 @@ msgstr "ukjent vimOption"
msgid "keyboard interrupt"
msgstr "tastaturavbrudd"
msgid "vim error"
msgstr "vim-feil"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "kan ikke opprette buffer/vindukommando: Objektet slettes"
@ -2946,8 +2943,8 @@ msgstr "-W <utskript>\tSkriv alle skrevne kommandoer til filen <utskript>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tRediger krypterte filer"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tKoble vim til denne spesielle X-tjeneren"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tKoble Vim til denne spesielle X-tjeneren"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tUnngå oppkobling til X-tjener"
@ -3016,11 +3013,11 @@ msgstr ""
"\n"
"Parametere gjenkjent av gvim (Athena-versjon):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tKjør vim på <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tKjør Vim på <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tStart vim som ikon"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tStart Vim som ikon"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <navn>\t\tBruk ressurs som om Vim var <navn>"
@ -3089,8 +3086,8 @@ msgstr ""
"\n"
"Parametere gjenkjent av gvim (GTK+-versjon):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tKjør vim på <display> (også: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tKjør Vim på <display> (også: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tSett en unik \"role\" for å identifisere hovedvinduet"

View File

@ -2720,9 +2720,6 @@ msgstr "onbekende vim-optie"
msgid "keyboard interrupt"
msgstr "toetsenbord-interrupt"
msgid "vim error"
msgstr "vim-fout"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "aanmaken buffer-/vensteropdracht is mislukt: object wordt verwijderd"

View File

@ -2648,9 +2648,6 @@ msgstr "ukjent vimOption"
msgid "keyboard interrupt"
msgstr "tastaturavbrudd"
msgid "vim error"
msgstr "vim-feil"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "kan ikke opprette buffer/vindukommando: Objektet slettes"
@ -2946,8 +2943,8 @@ msgstr "-W <utskript>\tSkriv alle skrevne kommandoer til filen <utskript>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tRediger krypterte filer"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tKoble vim til denne spesielle X-tjeneren"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tKoble Vim til denne spesielle X-tjeneren"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tUnngå oppkobling til X-tjener"
@ -3016,11 +3013,11 @@ msgstr ""
"\n"
"Parametere gjenkjent av gvim (Athena-versjon):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tKjør vim på <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tKjør Vim på <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tStart vim som ikon"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tStart Vim som ikon"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <navn>\t\tBruk ressurs som om Vim var <navn>"
@ -3089,8 +3086,8 @@ msgstr ""
"\n"
"Parametere gjenkjent av gvim (GTK+-versjon):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tKjør vim på <display> (også: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tKjør Vim på <display> (også: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tSett en unik \"role\" for å identifisere hovedvinduet"

View File

@ -2767,8 +2767,6 @@ msgstr "nieznane vimOption"
msgid "keyboard interrupt"
msgstr "przerwanie klawiatury"
msgid "vim error"
msgstr "błąd vima"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "nie mogę stworzyć bufora/okna komendy: obiekt jest kasowany"
@ -3078,7 +3076,7 @@ msgstr ""
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEdytuj zakodowane pliki"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tPodłącz vima to danego X-serwera"
msgid "-X\t\t\tDo not connect to X server"
@ -3153,10 +3151,10 @@ msgstr ""
"\n"
"Argumenty rozpoznawane przez gvim (wersja Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tZaładuj vim na <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tZaładuj Vim na <display>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tZacznij Vim jako ikonę"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3206,8 +3204,8 @@ msgstr ""
"\n"
"Argumenty rozpoznawane przez gvim (wersja GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tZastartuj vim na <display> (również: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tZastartuj Vim na <display> (również: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tUstaw unikatową rolę do identyfikacji głównego okna"
@ -6643,14 +6641,14 @@ msgstr "indeks listy poza zakresem"
#. No more suitable format specifications in python-2.3
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "błąd wewnętrzny: nie powiodło się pobranie z listy Vima elementu %d"
msgid "failed to add item to list"
msgstr "nie powiodło się dodanie elementu do listy"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "błąd wewnętrzny: w liście Vima brak elementu %d"
msgid "internal error: failed to add item to list"
@ -6752,7 +6750,7 @@ msgstr "uruchomienie kodu się nie powiodło"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: eval nie zwróciło odpowiedniego obiektu pythona"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Nie powiodła się konwersja obiektu pythona do wartości Vima"
#, c-format

View File

@ -2767,8 +2767,6 @@ msgstr "nieznane vimOption"
msgid "keyboard interrupt"
msgstr "przerwanie klawiatury"
msgid "vim error"
msgstr "b³¹d vima"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "nie mogê stworzyæ bufora/okna komendy: obiekt jest kasowany"
@ -3078,7 +3076,7 @@ msgstr ""
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEdytuj zakodowane pliki"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tPod³¹cz vima to danego X-serwera"
msgid "-X\t\t\tDo not connect to X server"
@ -3153,10 +3151,10 @@ msgstr ""
"\n"
"Argumenty rozpoznawane przez gvim (wersja Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tZa³aduj vim na <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tZa³aduj Vim na <display>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tZacznij Vim jako ikonê"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3206,8 +3204,8 @@ msgstr ""
"\n"
"Argumenty rozpoznawane przez gvim (wersja GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tZastartuj vim na <display> (równie¿: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tZastartuj Vim na <display> (równie¿: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tUstaw unikatow¹ rolê do identyfikacji g³ównego okna"
@ -6643,14 +6641,14 @@ msgstr "indeks listy poza zakresem"
#. No more suitable format specifications in python-2.3
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "b³¹d wewnêtrzny: nie powiod³o siê pobranie z listy Vima elementu %d"
msgid "failed to add item to list"
msgstr "nie powiod³o siê dodanie elementu do listy"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "b³¹d wewnêtrzny: w liœcie Vima brak elementu %d"
msgid "internal error: failed to add item to list"
@ -6752,7 +6750,7 @@ msgstr "uruchomienie kodu si
msgid "E858: Eval did not return a valid python object"
msgstr "E858: eval nie zwróci³o odpowiedniego obiektu pythona"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Nie powiod³a siê konwersja obiektu pythona do wartoœci Vima"
#, c-format

View File

@ -2767,8 +2767,6 @@ msgstr "nieznane vimOption"
msgid "keyboard interrupt"
msgstr "przerwanie klawiatury"
msgid "vim error"
msgstr "b³±d vima"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "nie mogê stworzyæ bufora/okna komendy: obiekt jest kasowany"
@ -3078,7 +3076,7 @@ msgstr ""
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEdytuj zakodowane pliki"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tPod³±cz vima to danego X-serwera"
msgid "-X\t\t\tDo not connect to X server"
@ -3153,10 +3151,10 @@ msgstr ""
"\n"
"Argumenty rozpoznawane przez gvim (wersja Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tZa³aduj vim na <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tZa³aduj Vim na <display>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tZacznij Vim jako ikonê"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3206,8 +3204,8 @@ msgstr ""
"\n"
"Argumenty rozpoznawane przez gvim (wersja GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tZastartuj vim na <display> (równie¿: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tZastartuj Vim na <display> (równie¿: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\tUstaw unikatow± rolê do identyfikacji g³ównego okna"
@ -6643,14 +6641,14 @@ msgstr "indeks listy poza zakresem"
#. No more suitable format specifications in python-2.3
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "b³±d wewnêtrzny: nie powiod³o siê pobranie z listy Vima elementu %d"
msgid "failed to add item to list"
msgstr "nie powiod³o siê dodanie elementu do listy"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "b³±d wewnêtrzny: w li¶cie Vima brak elementu %d"
msgid "internal error: failed to add item to list"
@ -6752,7 +6750,7 @@ msgstr "uruchomienie kodu si
msgid "E858: Eval did not return a valid python object"
msgstr "E858: eval nie zwróci³o odpowiedniego obiektu pythona"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Nie powiod³a siê konwersja obiektu pythona do warto¶ci Vima"
#, c-format

View File

@ -2765,9 +2765,6 @@ msgstr "opção do Vim desconhecida"
msgid "keyboard interrupt"
msgstr "interrompido pelo teclado"
msgid "vim error"
msgstr "erro do vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr ""
"impossível criar comando de buffer/janela: o objeto está sendo excluído"
@ -3096,8 +3093,8 @@ msgstr "-W <script>\t\tGravar todos os comandos digitados no arquivo <script>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tEditar arquivos criptografados"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tConectar o vim a este servidor X específico"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tConectar o Vim a este servidor X específico"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNão conectar ao servidor X"
@ -3175,11 +3172,11 @@ msgstr ""
"\n"
"Argumentos reconhecidos pelo gvim (versão Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tExecutar vim em <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tExecutar Vim em <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tIniciar vim iconizado"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tIniciar Vim iconizado"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <cor>\tUsar <cor> para o fundo (abrev.: -bg)"
@ -3227,8 +3224,8 @@ msgstr ""
"\n"
"Argumentos reconhecidos pelo gvim (versão GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tExecutar vim no <display> (alt.: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tExecutar Vim no <display> (alt.: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr ""
@ -6849,7 +6846,7 @@ msgid "list index out of range"
msgstr "índice de lista fora dos limites"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "erro interno: não consegui obter item %d de lista do Vim"
msgid "slice step cannot be zero"
@ -6861,7 +6858,7 @@ msgstr ""
"tentativa de atribuir sequência de tamanho maior que %d a slice estendida"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "erro interno: não existe o item %d na lista do vim"
msgid "internal error: not enough list items"
@ -6971,20 +6968,20 @@ msgstr "falha ao executar o código"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval não devolveu um objeto python válido"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr ""
"E859: Falha ao converter o objeto devolvido pelo python para um valor do vim"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "impossível converter %s para dicionário do vim"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "impossível converter %s para lista do vim"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "impossível converter %s para estrutura do vim"
msgid "internal error: NULL reference passed"

View File

@ -2642,9 +2642,6 @@ msgstr "
msgid "keyboard interrupt"
msgstr "клавиатурное прерывание"
msgid "vim error"
msgstr "îøèáêà VIM"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "невозможно создать команду буфера или окна: объект в процессе удаления"
@ -3132,7 +3129,7 @@ msgstr "-W <
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tРедактирование зашифрованных файлов"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <экран>\tПодсоединить Vim к указанному X-серверу"
msgid "-X\t\t\tDo not connect to X server"
@ -3210,10 +3207,10 @@ msgstr ""
"\n"
"Параметры для gvim (версия Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <дисплей>\tЗапустить Vim на указанном <дисплее>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tЗапустить Vim в свёрнутом виде"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3260,7 +3257,7 @@ msgstr ""
"\n"
"Параметры для gvim (версия GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr ""
"-display <дисплей>\tЗапустить Vim на указанном <дисплее> (или --display)"
@ -7262,7 +7259,7 @@ msgid "list index out of range"
msgstr "Индекс списка за пределами диапазона"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "Внутренняя ошибка: не удалось получить элемент VIM-списка %d"
msgid "slice step cannot be zero"
@ -7275,7 +7272,7 @@ msgstr ""
"выборке"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "Внутренняя ошибка: нет элемента VIM-списка %d"
msgid "internal error: not enough list items"
@ -7386,20 +7383,20 @@ msgstr "
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval не возвратил допустимого объекта Python"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr ""
"E859: Не удалось преобразовать возвращённый объект Python в значение VIM"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "Невозможно преобразовать %s в словарь VIM"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "Невозможно преобразовать %s в список VIM"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "Невозможно преобразовать %s в структуру VIM"
msgid "internal error: NULL reference passed"

View File

@ -2642,9 +2642,6 @@ msgstr "неизвестная vimOption"
msgid "keyboard interrupt"
msgstr "клавиатурное прерывание"
msgid "vim error"
msgstr "ошибка VIM"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "невозможно создать команду буфера или окна: объект в процессе удаления"
@ -3132,7 +3129,7 @@ msgstr "-W <сценарий>\tЗаписать все введённые ком
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tРедактирование зашифрованных файлов"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <экран>\tПодсоединить Vim к указанному X-серверу"
msgid "-X\t\t\tDo not connect to X server"
@ -3210,10 +3207,10 @@ msgstr ""
"\n"
"Параметры для gvim (версия Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <дисплей>\tЗапустить Vim на указанном <дисплее>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tЗапустить Vim в свёрнутом виде"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3260,7 +3257,7 @@ msgstr ""
"\n"
"Параметры для gvim (версия GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr ""
"-display <дисплей>\tЗапустить Vim на указанном <дисплее> (или --display)"
@ -7262,7 +7259,7 @@ msgid "list index out of range"
msgstr "Индекс списка за пределами диапазона"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "Внутренняя ошибка: не удалось получить элемент VIM-списка %d"
msgid "slice step cannot be zero"
@ -7275,7 +7272,7 @@ msgstr ""
"выборке"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "Внутренняя ошибка: нет элемента VIM-списка %d"
msgid "internal error: not enough list items"
@ -7386,20 +7383,20 @@ msgstr "Невозможно выполнить код"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval не возвратил допустимого объекта Python"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr ""
"E859: Не удалось преобразовать возвращённый объект Python в значение VIM"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "Невозможно преобразовать %s в словарь VIM"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "Невозможно преобразовать %s в список VIM"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "Невозможно преобразовать %s в структуру VIM"
msgid "internal error: NULL reference passed"

View File

@ -2448,9 +2448,6 @@ msgstr "nezn
msgid "keyboard interrupt"
msgstr "prerušenie z klávesnice"
msgid "vim error"
msgstr "chyba Vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "nedá sa vytvori<72> príkaz bufferu/okna: objekt bude vymazaný"
@ -2740,8 +2737,8 @@ msgstr "-W <skript>\t\tUlo
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tÚprava zašifrovaných súborov"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <displej>\tPripojí vim na príslušný X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <displej>\tPripojí Vim na príslušný X-server"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNepripojí sa k X serveru"
@ -2803,11 +2800,11 @@ msgstr ""
"\n"
"Argumenty dostupné pre gvim (Athena verzia):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <displej>\tSpustí vim na <displej>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <displej>\tSpustí Vim na <displej>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tSpustí vim minimalizované"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tSpustí Vim minimalizované"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <názov>\t\tPoužije resource ako by vim mal <názov>"
@ -2872,8 +2869,8 @@ msgstr ""
"\n"
"Argumenty dostupné pre gvim (GTK+ verzia):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <displej>\tSpustí vim na <displej> (tiež --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <displej>\tSpustí Vim na <displej> (tiež --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "-role <rola>\tNastaví unikátnu rolu pre identifikáciu hlavného okna"
@ -2897,8 +2894,8 @@ msgstr "-tip\t\t\tZobraz tip pri
msgid "-notip\t\tDisable the tip dialog"
msgstr "-notip\t\tNezobrazuj tip pri štarte"
msgid "--display <display>\tRun vim on <display>"
msgstr "-display <displej>\tSpustí vim na <displej>"
msgid "--display <display>\tRun Vim on <display>"
msgstr "-display <displej>\tSpustí Vim na <displej>"
msgid "-P <parent title>\tOpen Vim inside parent application"
msgstr "-P <titulok rodièa>\tOtvor Vim vnútri materskej aplikácie"

View File

@ -2448,9 +2448,6 @@ msgstr "nezn
msgid "keyboard interrupt"
msgstr "preru¹enie z klávesnice"
msgid "vim error"
msgstr "chyba Vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "nedá sa vytvori» príkaz bufferu/okna: objekt bude vymazaný"
@ -2740,8 +2737,8 @@ msgstr "-W <skript>\t\tUlo
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tÚprava za¹ifrovaných súborov"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <displej>\tPripojí vim na príslu¹ný X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <displej>\tPripojí Vim na príslu¹ný X-server"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tNepripojí sa k X serveru"
@ -2803,11 +2800,11 @@ msgstr ""
"\n"
"Argumenty dostupné pre gvim (Athena verzia):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <displej>\tSpustí vim na <displej>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <displej>\tSpustí Vim na <displej>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tSpustí vim minimalizované"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tSpustí Vim minimalizované"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <názov>\t\tPou¾ije resource ako by vim mal <názov>"
@ -2872,8 +2869,8 @@ msgstr ""
"\n"
"Argumenty dostupné pre gvim (GTK+ verzia):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <displej>\tSpustí vim na <displej> (tie¾ --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <displej>\tSpustí Vim na <displej> (tie¾ --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "-role <rola>\tNastaví unikátnu rolu pre identifikáciu hlavného okna"
@ -2897,8 +2894,8 @@ msgstr "-tip\t\t\tZobraz tip pri
msgid "-notip\t\tDisable the tip dialog"
msgstr "-notip\t\tNezobrazuj tip pri ¹tarte"
msgid "--display <display>\tRun vim on <display>"
msgstr "-display <displej>\tSpustí vim na <displej>"
msgid "--display <display>\tRun Vim on <display>"
msgstr "-display <displej>\tSpustí Vim na <displej>"
msgid "-P <parent title>\tOpen Vim inside parent application"
msgstr "-P <titulok rodièa>\tOtvor Vim vnútri materskej aplikácie"

View File

@ -2630,9 +2630,6 @@ msgstr "непозната vimОпција"
msgid "keyboard interrupt"
msgstr "прекид тастатуре"
msgid "vim error"
msgstr "vim грешка"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "бафер/прозор команда не може да се креира: објекат се брише"
@ -3100,8 +3097,8 @@ msgstr "-W <скриптизлаз>\tУписуј све откуцане ком
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tУређуј шифроване фајлове"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <дисплеј>\tПовежи vim на овај X-сервер"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <дисплеј>\tПовежи Vim на овај X-сервер"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tНе повезуј се на X сервер"
@ -3178,11 +3175,11 @@ msgstr ""
"\n"
"Аргументи које препознаје gvim (Athena верзија):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <дисплеј>\tПокрени vim на <дисплеј>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <дисплеј>\tПокрени Vim на <дисплеј>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tПокрени vim као икону"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tПокрени Vim као икону"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <боја>\tКористи <боја> за позадину (такође: -bg)"
@ -3230,8 +3227,8 @@ msgstr ""
"\n"
"Аргументи које препознаје gvim (GTK+ верзија):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <дисплеј>\tПокрени vim на <дисплеј> (такође: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <дисплеј>\tПокрени Vim на <дисплеј> (такође: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr ""
@ -7210,7 +7207,7 @@ msgid "list index out of range"
msgstr "индекс листе је ван опсега"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "интерна грешка: ставка %d vim листе није могла да се добије"
msgid "slice step cannot be zero"
@ -7221,7 +7218,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "покушај доделе секвенце величине веће од %d како би се продужио slice"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "интерна грешка: нема ставке %d у vim листи"
msgid "internal error: not enough list items"
@ -7331,19 +7328,19 @@ msgstr "кôд није могао да се покрене"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval није вратио важећи python објекат"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Конверзија враћеног python објекта у vim вредност није успела"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "%s не може да се конвертује у vim речник"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s не може да се конвертује у vim листу"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "%s не може да се конвертује у vim структуру"
msgid "internal error: NULL reference passed"

View File

@ -2621,9 +2621,6 @@ msgstr "ok
msgid "keyboard interrupt"
msgstr "tangentbordsavbrott"
msgid "vim error"
msgstr "vim-fel"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "kan inte skapa buffert/fönster-kommando: objekt håller på att tas bort"
@ -2922,8 +2919,8 @@ msgstr "-W <utskript>\tSkriv alla skrivna kommandon till fil <utskript>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tRedigera krypterade filer"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\tAnslut vim till just denna X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\tAnslut Vim till just denna X-server"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tAnslut inte till X server"
@ -2995,11 +2992,11 @@ msgstr ""
"\n"
"Argument som stöds av gvim (Athena-version):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <display>\tKör vim på <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\tKör Vim på <display>"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tStarta vim som ikon"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tStarta Vim som ikon"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <namn>\t\tAnvänd resurs som om vim var <namn>"
@ -3065,8 +3062,8 @@ msgstr ""
"\n"
"Argument igenkända av gvim (GTK+-version):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\tKör vim på <display> (även: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\tKör Vim på <display> (även: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <roll>\tStäll in en unik roll för att identifiera huvudfönstret"

View File

@ -2529,9 +2529,6 @@ msgstr "geçersiz vimOption"
msgid "keyboard interrupt"
msgstr "klavye araya girdi"
msgid "vim error"
msgstr "vim hatası"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "arabellek/pencere komutu oluşturulamadı: öge şu anda siliniyor"
@ -2991,7 +2988,7 @@ msgstr "-W <betikçık>\tGirilen tüm komutları <betikçık> dosyasına yaz"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tŞifrelenmiş dosyaları düzenle"
msgid "-display <display>\tConnect vim to this particular X-server"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <ekran>\tVim'i bu belirtilen X sunucusuna bağla"
msgid "-X\t\t\tDo not connect to X server"
@ -3069,10 +3066,10 @@ msgstr ""
"\n"
"gvim tarafından tanınan değişkenler (Athena sürümü):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <ekran>\tVim'i <ekran>'da çalıştır"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tVim'i simge durumunda başlat"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3120,7 +3117,7 @@ msgstr ""
"\n"
"gvim tarafından tanınan değişkenler (GTK+ sürümü):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <ekran>\tVim'i <ekran>'da çalıştır (veya: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
@ -7437,7 +7434,7 @@ msgid "list index out of range"
msgstr "liste dizini erimin dışında"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "iç hata: %d vim liste ögesi alınamadı"
msgid "slice step cannot be zero"
@ -7448,7 +7445,7 @@ msgid "attempt to assign sequence of size greater than %d to extended slice"
msgstr "genişletilmiş dilime %d boyuttan büyük bir sıralamayı atama denemesi"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "iç hata: %d vim liste ögesi yok"
msgid "internal error: not enough list items"
@ -7557,19 +7554,19 @@ msgstr "kod çalıştırılamadı"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval geçerli bir python nesnesi döndürmedi"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Döndürülen python nesnesi vim değerine dönüştürülemedi"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "%s vim sözlüğüne dönüştürülemedi"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "%s vim listesine dönüştürülemedi"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "%s vim yapısına dönüştürülemedi"
msgid "internal error: NULL reference passed"

View File

@ -2879,9 +2879,6 @@ msgstr "
msgid "keyboard interrupt"
msgstr "ïåðåðâàíî ç êëàâ³àòóðè"
msgid "vim error"
msgstr "ïîìèëêà Vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "íå âäàëîñÿ ñòâîðèòè êîìàíäó â³êíà/áóôåðà: îá'ºêò çíèùóºòüñÿ"
@ -3201,8 +3198,8 @@ msgstr "-w <
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tÐåäàãóâàòè çàøèôðîâàí³ ôàéëè"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <äèñïëåé>\tϳä'ºäíàòè vim äî çàäàíîãî äèñïëåþ ñåðâåðà X"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <äèñïëåé>\tϳä'ºäíàòè Vim äî çàäàíîãî äèñïëåþ ñåðâåðà X"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tÍå ç'ºäíóâàòèñÿ ç X ñåðâåðîì"
@ -3283,10 +3280,10 @@ msgstr ""
"\n"
"Àðãóìåíòè äëÿ gvim (âåðñ³ÿ Athena)\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <äèñïëåé>\tÂèêîíàòè vim íà çàäàíîìó <äèñïëå¿>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <äèñïëåé>\tÂèêîíàòè Vim íà çàäàíîìó <äèñïëå¿>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tÇàïóñòèòè Vim ³ çãîðíóòè éîãî â³êíî"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3333,8 +3330,8 @@ msgstr ""
"\n"
"Àðãóìåíòè gvim (âåðñ³ÿ GTK+)\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <äèñïëåé>\tÂèêîíàòè vim íà <äèñïëå¿> (òàêîæ: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <äèñïëåé>\tÂèêîíàòè Vim íà <äèñïëå¿> (òàêîæ: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr ""
@ -7123,7 +7120,7 @@ msgid "list index out of range"
msgstr "³íäåêñ ñïèñêó çà ìåæàìè"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "âíóòð³øíÿ ïîìèëêà: íå âäàëîñÿ îòðèìàòè åëåìåíò ñïèñêó vim %d"
msgid "slice step cannot be zero"
@ -7135,7 +7132,7 @@ msgstr ""
"ñïðîáà ïðèçíà÷èòè ïîñë³äîâí³ñòü ðîçì³ðó á³ëüøå, í³æ %d, ó ðîçøèðåíèé çð³ç"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "âíóòð³øíÿ ïîìèëêà: íåìຠåëåìåíòà ñïèñêó vim %d"
msgid "internal error: not enough list items"
@ -7247,19 +7244,19 @@ msgstr "
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval íå ïîâåðíóâ ä³éñíèé îá’ºêò python"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Íå âäàëîñÿ ïåðåòâîðèòè îá’ºêò python ó çíà÷åííÿ vim"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "íå âäàëîñÿ ïåðåòâîðèòè %s ó ñëîâíèê vim"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "íå âäàëîñÿ ïåðåòâîðèòè %s ó ñïèñîê vim"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "íå âäàëîñÿ ïåðåòâîðèòè %s ó ñòðóêòóðó vim"
msgid "internal error: NULL reference passed"

View File

@ -2879,9 +2879,6 @@ msgstr "Невідома vimOption"
msgid "keyboard interrupt"
msgstr "перервано з клавіатури"
msgid "vim error"
msgstr "помилка Vim"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "не вдалося створити команду вікна/буфера: об'єкт знищується"
@ -3201,8 +3198,8 @@ msgstr "-w <скрипт>\t\tЗаписати усі набрані команд
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tРедагувати зашифровані файли"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <дисплей>\tПід'єднати vim до заданого дисплею сервера X"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <дисплей>\tПід'єднати Vim до заданого дисплею сервера X"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tНе з'єднуватися з X сервером"
@ -3283,10 +3280,10 @@ msgstr ""
"\n"
"Аргументи для gvim (версія Athena)\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <дисплей>\tВиконати vim на заданому <дисплеї>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <дисплей>\tВиконати Vim на заданому <дисплеї>"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tЗапустити Vim і згорнути його вікно"
msgid "-background <color>\tUse <color> for the background (also: -bg)"
@ -3333,8 +3330,8 @@ msgstr ""
"\n"
"Аргументи gvim (версія GTK+)\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <дисплей>\tВиконати vim на <дисплеї> (також: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <дисплей>\tВиконати Vim на <дисплеї> (також: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr ""
@ -7123,7 +7120,7 @@ msgid "list index out of range"
msgstr "індекс списку за межами"
#, c-format
msgid "internal error: failed to get vim list item %d"
msgid "internal error: failed to get Vim list item %d"
msgstr "внутрішня помилка: не вдалося отримати елемент списку vim %d"
msgid "slice step cannot be zero"
@ -7135,7 +7132,7 @@ msgstr ""
"спроба призначити послідовність розміру більше, ніж %d, у розширений зріз"
#, c-format
msgid "internal error: no vim list item %d"
msgid "internal error: no Vim list item %d"
msgstr "внутрішня помилка: немає елемента списку vim %d"
msgid "internal error: not enough list items"
@ -7247,19 +7244,19 @@ msgstr "не вдалося виконати код"
msgid "E858: Eval did not return a valid python object"
msgstr "E858: Eval не повернув дійсний об’єкт python"
msgid "E859: Failed to convert returned python object to vim value"
msgid "E859: Failed to convert returned python object to a Vim value"
msgstr "E859: Не вдалося перетворити об’єкт python у значення vim"
#, c-format
msgid "unable to convert %s to vim dictionary"
msgid "unable to convert %s to a Vim dictionary"
msgstr "не вдалося перетворити %s у словник vim"
#, c-format
msgid "unable to convert %s to vim list"
msgid "unable to convert %s to a Vim list"
msgstr "не вдалося перетворити %s у список vim"
#, c-format
msgid "unable to convert %s to vim structure"
msgid "unable to convert %s to a Vim structure"
msgstr "не вдалося перетворити %s у структуру vim"
msgid "internal error: NULL reference passed"

View File

@ -2176,7 +2176,7 @@ msgstr "không rõ tùy chọn vimOption"
msgid "keyboard interrupt"
msgstr "sự gián đoạn của bàn phím"
msgid "vim error"
msgid "Vim error"
msgstr "lỗi của vim"
msgid "cannot create buffer/window command: object is being deleted"
@ -2460,8 +2460,8 @@ msgstr "-W <scriptout>\tGhi nhớ tất cả các lệnh đã gõ vào tập tin
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\tSoạn thảo tập tin đã mã hóa"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <màn hình>\tKết nối vim tới máy chủ X đã chỉ ra"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <màn hình>\tKết nối Vim tới máy chủ X đã chỉ ra"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\tKhông thực hiện việc kết nối tới máy chủ X"
@ -2526,11 +2526,11 @@ msgstr ""
"\n"
"Tham số cho gvim (phiên bản Athena):\n"
msgid "-display <display>\tRun vim on <display>"
msgstr "-display <màn hình>\tChạy vim trong <màn hình> đã chỉ ra"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <màn hình>\tChạy Vim trong <màn hình> đã chỉ ra"
msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tChạy vim ở dạng thu nhỏ"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\tChạy Vim ở dạng thu nhỏ"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <tên>\t\tSử dụng tài nguyên giống như khi vim có <tên>"
@ -2599,9 +2599,9 @@ msgstr ""
"\n"
"Tham số cho gvim (phiên bản GTK+):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr ""
"-display <màn hình>\tChạy vim trên <màn hình> chỉ ra (cũng như: --display)"
"-display <màn hình>\tChạy Vim trên <màn hình> chỉ ra (cũng như: --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <vai trò>\tĐặt <vai trò> duy nhất để nhận diện cửa sổ chính"

View File

@ -2569,9 +2569,6 @@ msgstr "未知的 vim 选项"
msgid "keyboard interrupt"
msgstr "键盘中断"
msgid "vim error"
msgstr "vim 错误"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "无法创建缓冲区/窗口命令: 对象将被删除"
@ -2855,8 +2852,8 @@ msgstr "-W <scriptout>\t将所有输入的命令写入到文件 <scriptout>"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t编辑加密的文件"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\t将 vim 与指定的 X-server 连接"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t将 Vim 与指定的 X-server 连接"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\t不连接到 X Server"
@ -2921,10 +2918,10 @@ msgstr ""
"\n"
"gvim (Athena 版本) 可识别的参数:\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t在 <display> 上运行 vim"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t启动后最小化"
msgid "-name <name>\t\tUse resource as if vim was <name>"
@ -2989,8 +2986,8 @@ msgstr ""
"\n"
"gvim (GTK+ 版本) 可识别的参数:\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 上运行 vim (也可用 --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 上运行 Vim (也可用 --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\t设置用于区分主窗口的窗口角色名"

View File

@ -2569,9 +2569,6 @@ msgstr "δ֪
msgid "keyboard interrupt"
msgstr "键盘中断"
msgid "vim error"
msgstr "vim 错误"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "无法创建缓冲区/窗口命令: 对象将被删除"
@ -2855,8 +2852,8 @@ msgstr "-W <scriptout>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t编辑加密的文件"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\t将 vim 与指定的 X-server 连接"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t将 Vim 与指定的 X-server 连接"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\t不连接到 X Server"
@ -2921,10 +2918,10 @@ msgstr ""
"\n"
"gvim (Athena 版本) 可识别的参数:\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t在 <display> 上运行 vim"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t启动后最小化"
msgid "-name <name>\t\tUse resource as if vim was <name>"
@ -2989,8 +2986,8 @@ msgstr ""
"\n"
"gvim (GTK+ 版本) 可识别的参数:\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 上运行 vim (也可用 --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 上运行 Vim (也可用 --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\t设置用于区分主窗口的窗口角色名"

View File

@ -2570,9 +2570,6 @@ msgstr "δ֪
msgid "keyboard interrupt"
msgstr "键盘中断"
msgid "vim error"
msgstr "vim 错误"
msgid "cannot create buffer/window command: object is being deleted"
msgstr "无法创建缓冲区/窗口命令: 对象将被删除"
@ -2856,8 +2853,8 @@ msgstr "-W <scriptout>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t编辑加密的文件"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\t将 vim 与指定的 X-server 连接"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t将 Vim 与指定的 X-server 连接"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\t不连接到 X Server"
@ -2921,10 +2918,10 @@ msgstr ""
"\n"
"gvim (Athena 版本) 可识别的参数:\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t在 <display> 上运行 vim"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t启动后最小化"
msgid "-name <name>\t\tUse resource as if vim was <name>"
@ -2989,8 +2986,8 @@ msgstr ""
"\n"
"gvim (GTK+ 版本) 可识别的参数:\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 上运行 vim (也可用 --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 上运行 Vim (也可用 --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\t设置用于区分主窗口的窗口角色名"

View File

@ -2190,7 +2190,7 @@ msgstr "不正確的 VIM 選項"
msgid "keyboard interrupt"
msgstr "鍵盤中斷"
msgid "vim error"
msgid "Vim error"
msgstr "vim 錯誤"
msgid "cannot create buffer/window command: object is being deleted"
@ -2463,8 +2463,8 @@ msgstr "-W <scriptout>\t對檔案 <scriptout> 寫入所有輸入的命令"
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t編輯編碼過的檔案"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\t將 vim 與指定的 X-server 連線"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t將 Vim 與指定的 X-server 連線"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\t不要連線到 X Server"
@ -2525,10 +2525,10 @@ msgstr ""
"\n"
"gvim 認得的參數 (Athena 版):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t在視窗 <display> 執行 vim"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t啟動後圖示化(iconified)"
msgid "-name <name>\t\tUse resource as if vim was <name>"
@ -2593,7 +2593,7 @@ msgstr ""
"\n"
"gvim 認得的參數 (GTK+ 版):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 執行 vim (也可用 --display)"
msgid "--role <role>\tSet a unique role to identify the main window"

View File

@ -2183,7 +2183,7 @@ msgstr "
msgid "keyboard interrupt"
msgstr "鍵盤中斷"
msgid "vim error"
msgid "Vim error"
msgstr "vim 錯誤"
msgid "cannot create buffer/window command: object is being deleted"
@ -2456,8 +2456,8 @@ msgstr "-W <scriptout>\t
msgid "-x\t\t\tEdit encrypted files"
msgstr "-x\t\t\t編輯編碼過的檔案"
msgid "-display <display>\tConnect vim to this particular X-server"
msgstr "-display <display>\t將 vim 與指定的 X-server 連線"
msgid "-display <display>\tConnect Vim to this particular X-server"
msgstr "-display <display>\t將 Vim 與指定的 X-server 連線"
msgid "-X\t\t\tDo not connect to X server"
msgstr "-X\t\t\t不要連線到 X Server"
@ -2518,10 +2518,10 @@ msgstr ""
"\n"
"gvim 認得的參數 (Athena 版):\n"
msgid "-display <display>\tRun vim on <display>"
msgid "-display <display>\tRun Vim on <display>"
msgstr "-display <display>\t在視窗 <display> 執行 vim"
msgid "-iconic\t\tStart vim iconified"
msgid "-iconic\t\tStart Vim iconified"
msgstr "-iconic\t\t啟動後圖示化(iconified)"
msgid "-name <name>\t\tUse resource as if vim was <name>"
@ -2586,8 +2586,8 @@ msgstr ""
"\n"
"gvim 認得的參數 (GTK+ 版):\n"
msgid "-display <display>\tRun vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 執行 vim (也可用 --display)"
msgid "-display <display>\tRun Vim on <display> (also: --display)"
msgstr "-display <display>\t在 <display> 執行 Vim (也可用 --display)"
msgid "--role <role>\tSet a unique role to identify the main window"
msgstr "--role <role>\t設定獨特的角色(role)以區分主視窗"